/* AFN 2026 - Centralized Stylesheet */

/* Core & Icon Styles */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.font-headline { 
    font-family: 'lemon_milkregular', 'Manrope', sans-serif !important; 
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Shadows & Gradients */
.hero-gradient {
    background: linear-gradient(135deg, #00264d 0%, #173c69 100%);
}

.editorial-shadow {
    box-shadow: 0 20px 40px rgba(23, 28, 31, 0.06);
}

/* Animations */
@keyframes soft-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.2), 0 0 10px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
    }
}

.animate-soft-glow {
    animation: soft-glow 3s ease-in-out infinite;
}

@keyframes liquid-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Utility Classes */
.glass-button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.liquid-bg {
    background: linear-gradient(-45deg, #173C69, #4282c1, #cde5ff, #173C69);
    background-size: 400% 400%;
    animation: liquid-flow 6s ease infinite;
}

/* Contact Page Specific */
.no-border { border: none !important; }
.background-transition { transition: background-color 0.3s ease; }
#map { height: 100%; width: 100%; z-index: 10; }
.leaflet-container { background: #f6fafe; }

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.1s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Swiper Hero Styles */
.hero-swiper {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ken Burns effect for slider images */
.ken-burns {
    animation: kenburns 20s infinite alternate;
}

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    background: linear-gradient(to right, rgba(0, 38, 77, 0.85), rgba(0, 38, 77, 0.4), transparent);
}

.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 24px !important;
    border-radius: 4px !important;
    transition: width 0.3s ease !important;
}
/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 38, 77, 0.98);
    backdrop-filter: blur(15px);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-20px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu-link {
    font-family: 'lemon_milkregular', sans-serif;
    font-size: 2rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    color: #cde5ff;
    transform: scale(1.1);
}

/* Hamburger Icon Animation */
.hamburger {
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 110;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 2.5px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Header Sticky Styles */
header {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 38, 77, 0.1);
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

header.scrolled nav {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

header.scrolled .font-headline.text-white {
    color: #00264d !important; /* primary color */
}

header.scrolled nav a.text-white {
    color: #00264d !important;
}

header.scrolled nav a.text-white:hover {
    color: #246390 !important; /* secondary color */
}

header.scrolled .glass-button {
    border-color: rgba(0, 38, 95, 0.2);
    color: #00264d !important;
    background: rgba(36, 99, 144, 0.05);
}

header.scrolled .glass-button:hover {
    border-color: #00264d;
    background: rgba(36, 99, 144, 0.1);
}

header.scrolled .hamburger span {
    background: #00264d;
}

