@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:wght@300;400;700&family=Syncopate:wght@700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --primary: #E8353A;
    --secondary: #5562E8;
    --dark: #0a0a0c;
    --glass: rgba(255, 255, 255, 0.05);
}

.border-theme-primary {
    border-color: var(--primary) !important;
}

.border-theme-secondary {
    border-color: var(--secondary) !important;
}

.primary-color {
    color: var(--primary) !important;
}

.secondary-color {
    color: var(--secondary) !important;
}

.background-primary {
    background-color: var(--primary) !important;
}

.background-secondary {
    background-color: var(--secondary) !important;
}

.icon-color {
    color: var(--secondary) !important;
}

.form-control.bg-transparent::placeholder,
.form-select.bg-transparent::placeholder {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

body {
    font-family: 'Fira Sans Condensed', sans-serif;
    background-color: var(--dark);
    color: white;
}

.font-heading { font-family: 'Syncopate', sans-serif; }
.text-orange { color: var(--primary) !important; }
.bg-orange { background-color: var(--primary) !important; }

.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Custom Nav Underline Animation */
.nav-link.custom-underline {
    position: relative;
    padding-bottom: 2px;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.nav-link.custom-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link.custom-underline:hover::after, 
.nav-link.custom-underline.active::after {
    width: 100%;
}

/* Swiper Pagination Customizations */
.swiper-pagination-bullet { 
    background: #6c757d; 
    opacity: 1; 
}
.swiper-pagination-bullet-active { 
    background: #5562E8;
    --secondary: #E8353A; 
}

/* Bootstrap Utility Extensions */
.object-fit-cover { 
    object-fit: cover; 
}
.drop-shadow { 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); 
}
.w-33 { 
    width: 33.333%; 
}
.transition {
    transition: all 0.3s ease;
}