@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* Critical CSS - Only navbar and hero */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
    overflow-x: hidden;
    background: #000;
}


/* ========================================
   NAVIGATION BAR - CLEAN & TECHY
   ======================================== */
.dun-fitness-main-navigation-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74, 144, 226, 0.2);
}

.dun-fitness-navigation-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo */
.dun-fitness-logo-wrapper {
    display: flex;
    align-items: center;
}

.dun-fitness-main-logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.dun-fitness-logo-wrapper:hover .dun-fitness-main-logo-image {
    transform: scale(1.05);
}

/* Menu List */
.dun-fitness-navigation-menu-list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
}

.dun-fitness-navigation-menu-item {
    position: relative;
}

.dun-fitness-navigation-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 8px 0;
    transition: color 0.3s ease;
    position: relative;
    display: block;
}

.dun-fitness-navigation-link:hover {
    color: #3e8dff;
}

.dun-fitness-navigation-link-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 1px;
    background: #3e8dff;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.dun-fitness-navigation-menu-item:hover .dun-fitness-navigation-link-underline {
    width: 100%;
}

.dun-fitness-navigation-link-active {
    color: #3e8dff;
}

.dun-fitness-navigation-link-active ~ .dun-fitness-navigation-link-underline {
    width: 100%;
}

/* Join Button */
.dun-fitness-navigation-cta-wrapper {
    display: flex;
}

.dun-fitness-join-now-primary-button {
    padding: 10px 22px;
    background: #3e8dff;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.dun-fitness-join-now-primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

.dun-fitness-join-now-button-text {
    position: relative;
    z-index: 2;
}

/* Hamburger */
.dun-fitness-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.dun-fitness-hamburger-line {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.dun-fitness-mobile-menu-toggle.active .dun-fitness-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.dun-fitness-mobile-menu-toggle.active .dun-fitness-hamburger-line:nth-child(2) {
    opacity: 0;
}

.dun-fitness-mobile-menu-toggle.active .dun-fitness-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -6px);
}

    /* ========================================
       MOBILE MENU - TOP TO BOTTOM REVEAL
       ======================================== */
    @media (max-width: 768px) {
        .dun-fitness-mobile-menu-toggle {
            display: flex;
        }

        .dun-fitness-navigation-menu-list {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(180deg, rgba(0, 20, 40, 0.98) 0%, rgba(10, 10, 15, 0.98) 100%);
            backdrop-filter: blur(20px);
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 50px;
            overflow: hidden;
            z-index: 999;
            transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .dun-fitness-navigation-menu-list.active {
            height: 100vh;
        }

        .dun-fitness-navigation-menu-item {
            opacity: 0;
            transform: translateX(-100px);
        }

        .dun-fitness-navigation-link {
            font-size: 36px;
            font-weight: 600;
            letter-spacing: 2px;
        }

        .dun-fitness-navigation-cta-wrapper {
            display: none;
        }
    }

    .dun-fitness-impact-particles.active {
        opacity: 1;
    }

    /* Glitch Text Layers */
    .dun-fitness-link-text {
        display: block;
        position: relative;
    }

    .dun-fitness-link-glitch {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        color: #3e8dff;
        text-shadow: 2px 0 #ff0000, -2px 0 #00ffff;
        pointer-events: none;
    }

/* ========================================
   FOOTER SECTION
   ======================================== */
.dun-fitness-footer-section {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, #001428 0%, #000b16 100%);
    padding: 80px 50px 0 50px;
}

.dun-fitness-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    font-family: 'Noto Sans';
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Columns */
.dun-fitness-footer-column {
    flex: 1;
}

/* Left Column - Logo and Locations */
.dun-fitness-footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dun-fitness-footer-logo-wrapper {
    display: flex;
}

.dun-fitness-footer-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(74, 144, 226, 0.3));
}

.dun-fitness-footer-locations {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dun-fitness-footer-location-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.dun-fitness-footer-location-link:hover {
    color: #3e8dff;
    transform: translateX(5px);
}

/* Middle Column - Contact Info */
.dun-fitness-footer-middle {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.dun-fitness-footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dun-fitness-footer-contact-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dun-fitness-footer-contact-link {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.dun-fitness-footer-contact-link:hover {
    color: #3e8dff;
}

.dun-fitness-footer-contact-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

/* Map Preview */
.dun-fitness-footer-map-preview {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(74, 144, 226, 0.3);
    margin-top: 10px;
}

.dun-fitness-footer-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.dun-fitness-footer-map-address-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.dun-fitness-footer-map-pin-text {
    color: #001428;
    font-size: 14px;
    font-weight: 600;
}

.dun-fitness-footer-map-view-link {
    color: #3e8dff;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dun-fitness-footer-map-view-link:hover {
    color: #357abd;
}

/* Right Column - Navigation */
.dun-fitness-footer-right {
    display: flex;
    flex-direction: column;
}

.dun-fitness-footer-navigation {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.dun-fitness-footer-nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.dun-fitness-footer-nav-link:hover {
    color: #3e8dff;
    transform: translateX(5px);
}

/* Footer Bottom */
.dun-fitness-footer-bottom {
    padding: 30px 0;
}

.dun-fitness-footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dun-fitness-footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 300;
    margin: 0;
}

/* Social Links */
.dun-fitness-footer-social-links {
    display: flex;
    gap: 15px;
}

.dun-fitness-footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3e8dff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dun-fitness-footer-social-link:hover {
    background: #3e8dff;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .dun-fitness-navigation-menu-list {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    /* Navigation */

    .dun-fitness-navigation-menu-list {
        gap: 25px;
    }

    .dun-fitness-footer-container {
        flex-direction: column;
        gap: 50px;
    }

    .dun-fitness-footer-column {
        width: 100%;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Navigation */
    .dun-fitness-navigation-container {
        padding: 20px 15px;
    }
    
    .dun-fitness-footer-section {
        padding: 50px 20px 0 20px;
    }

    .dun-fitness-footer-contact-link,
    .dun-fitness-footer-contact-text,
    .dun-fitness-footer-location-link,
    .dun-fitness-footer-nav-link {
        font-size: 14px;
    }

    .dun-fitness-footer-map-preview {
        height: 150px;
    }
}