/* =============================================
   JOSH ARKSEY SPORTS MASSAGE - NAVIGATION
   arksey-nav-1.css - Desktop, Tablet & Mobile
   Modern 2025/26 Design
   ============================================= */

/* =============================================
   BASIC RESET
   ============================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}


/* =============================================
   DESKTOP & TABLET - TOP BAR / HEADER
   ============================================= */

.arksey-header {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.arksey-top-bar {
    padding: 0;
}

.arksey-top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.arksey-contact-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 30px;
}

.arksey-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'K2D', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.arksey-contact-link:hover {
    opacity: 0.85;
    transform: translateX(2px);
}

.arksey-contact-link i {
    font-size: 13px;
    opacity: 0.9;
}

.arksey-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.arksey-social-link {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.arksey-social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.05);
}


/* =============================================
   BOOK ONLINE BUTTON - TOP BAR
   ============================================= */

.arksey-book-online-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    margin-left: 15px;
    background: #333333;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Eurostile Extended Two', 'K2D', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.arksey-book-online-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.arksey-book-online-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.arksey-book-online-btn:hover::before {
    left: 100%;
}


/* =============================================
   DESKTOP & TABLET - MAIN NAVIGATION
   ============================================= */

.arksey-nav {
    background: #ffffff;
    padding: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.arksey-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arksey-logo {
    display: block;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.arksey-logo:hover {
    transform: scale(1.02);
}

.arksey-logo img {
    height: 95px;
    width: auto;
    display: block;
}

.arksey-nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.arksey-nav-menu li {
    margin: 0;
}

.arksey-nav-link {
    display: block;
    padding: 12px 20px;
    color: #333333;
    text-decoration: none;
    font-family: 'Eurostile Extended Two', 'K2D', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.arksey-nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, #ff0000, #cc0000);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.arksey-nav-link:hover::after {
    transform: scaleX(1);
}

.arksey-nav-link:hover {
    color: #ff0000;
}

.arksey-nav-cta {
    display: block;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    margin-left: 15px;
    text-decoration: none;
    font-family: 'Eurostile Extended Two', 'K2D', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.arksey-nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.arksey-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.arksey-nav-cta:hover::before {
    left: 100%;
}


/* =============================================
   MOBILE - HIDE BY DEFAULT
   ============================================= */

.arksey-mobile-nav {
    display: none;
}


/* =============================================
   TABLET BREAKPOINT (769px - 1024px)
   ============================================= */

@media (max-width: 1024px) {
    .arksey-top-bar-inner {
        padding: 10px 25px;
    }
    
    .arksey-contact-link {
        font-size: 13px;
    }
    
    .arksey-nav-container {
        padding: 18px 25px;
    }
    
    .arksey-logo img {
        height: 85px;
    }
    
    .arksey-nav-link {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .arksey-nav-cta {
        padding: 12px 22px;
        font-size: 12px;
    }
    
    .arksey-book-online-btn {
        padding: 8px 18px;
        font-size: 11px;
        margin-left: 12px;
    }
}


/* =============================================
   MOBILE BREAKPOINT (max-width: 768px)
   ============================================= */

@media (max-width: 768px) {
    
    /* Hide desktop nav completely */
    .arksey-header,
    .arksey-nav {
        display: none;
    }
    
    
    /* =============================================
       MOBILE NAVIGATION BAR
       ============================================= */
    
    .arksey-mobile-nav {
        display: block;
        background: #ffffff;
        padding: 0;
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .arksey-mobile-nav-container {
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .arksey-mobile-logo {
        display: block;
        flex-shrink: 0;
    }
    
    .arksey-mobile-logo img {
        height: 70px;
        width: auto;
        display: block;
    }
    
    
    /* =============================================
       HAMBURGER BUTTON
       ============================================= */
    
    .arksey-mobile-hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        padding: 10px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1002;
        border-radius: 12px;
        transition: background 0.3s ease;
    }
    
    .arksey-mobile-hamburger:hover {
        background: rgba(255, 0, 0, 0.05);
    }
    
    .arksey-mobile-hamburger span {
        display: block;
        width: 26px;
        height: 3px;
        background: #333333;
        border-radius: 3px;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        margin: 3px 0;
    }
    
    /* Hamburger hidden when menu is open */
    .arksey-mobile-hamburger.arksey-active {
        opacity: 0;
        pointer-events: none;
    }
    
    
    /* =============================================
       MOBILE FULL-SCREEN MENU
       ============================================= */
    
    .arksey-mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(145deg, #1a1a1a 0%, #111111 100%);
        display: flex;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 1001;
    }
    
    .arksey-mobile-menu.arksey-show {
        opacity: 1;
        visibility: visible;
    }
    
    
    /* =============================================
       MOBILE MENU HEADER
       ============================================= */
    
    .arksey-mobile-menu-header {
        padding: 25px 25px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .arksey-mobile-menu-title {
        font-family: 'Eurostile Extended Two', 'K2D', sans-serif;
        font-size: 1.1em;
        font-weight: 700;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .arksey-mobile-menu-close {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        cursor: pointer;
        transition: opacity 0.3s ease;
    }
    
    .arksey-mobile-menu-close:hover {
        opacity: 0.7;
    }
    
    .arksey-mobile-menu-close span {
        font-size: 32px;
        font-weight: 300;
        color: #ffffff;
        line-height: 1;
    }
    
    
    /* =============================================
       MOBILE MENU NAVIGATION LINKS
       ============================================= */
    
    .arksey-mobile-menu-nav {
        list-style: none;
        margin: 0;
        padding: 30px 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .arksey-mobile-menu-nav li {
        margin: 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }
    
    .arksey-mobile-menu.arksey-show .arksey-mobile-menu-nav li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .arksey-mobile-menu.arksey-show .arksey-mobile-menu-nav li:nth-child(1) { transition-delay: 0.1s; }
    .arksey-mobile-menu.arksey-show .arksey-mobile-menu-nav li:nth-child(2) { transition-delay: 0.15s; }
    .arksey-mobile-menu.arksey-show .arksey-mobile-menu-nav li:nth-child(3) { transition-delay: 0.2s; }
    .arksey-mobile-menu.arksey-show .arksey-mobile-menu-nav li:nth-child(4) { transition-delay: 0.25s; }
    .arksey-mobile-menu.arksey-show .arksey-mobile-menu-nav li:nth-child(5) { transition-delay: 0.3s; }
    
    .arksey-mobile-menu-link {
        display: block;
        padding: 18px 30px;
        color: #ffffff;
        text-decoration: none;
        font-family: 'Eurostile Extended Two', 'K2D', sans-serif;
        font-size: 1.4em;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .arksey-mobile-menu-link::after {
        content: '';
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: #ff0000;
        transition: width 0.3s ease;
    }
    
    .arksey-mobile-menu-link:hover {
        color: #ff0000;
    }
    
    .arksey-mobile-menu-link:hover::after {
        width: 60px;
    }
    
    
    /* =============================================
       BOOK ONLINE BUTTON - MOBILE MENU
       ============================================= */
    
    .arksey-mobile-menu-book {
        padding: 10px 30px 25px;
        text-align: center;
    }
    
    .arksey-mobile-book-btn {
        display: inline-block;
        padding: 18px 50px;
        background: #333333;
        color: #ffffff;
        text-decoration: none;
        font-family: 'Eurostile Extended Two', 'K2D', sans-serif;
        font-size: 1.1em;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        border-radius: 50px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .arksey-mobile-book-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .arksey-mobile-book-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
    }
    
    .arksey-mobile-book-btn:hover::before {
        left: 100%;
    }
    
    
    /* =============================================
       MOBILE MENU CONTACT SECTION
       ============================================= */
    
    .arksey-mobile-menu-contact {
        background: rgba(255, 255, 255, 0.03);
        padding: 30px 25px;
        text-align: center;
    }
    
    .arksey-mobile-menu-contact-title {
        font-family: 'K2D', sans-serif;
        font-size: 0.75em;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }
    
    .arksey-mobile-menu-contact-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 12px 0;
        color: #ffffff;
        text-decoration: none;
        font-family: 'K2D', sans-serif;
        font-size: 1em;
        line-height: 1.5;
        transition: all 0.3s ease;
    }
    
    .arksey-mobile-menu-contact-link:hover {
        transform: scale(1.02);
    }
    
    .arksey-mobile-menu-contact-link i {
        font-size: 18px;
        opacity: 0.8;
    }
    
    
    /* =============================================
       MOBILE MENU SOCIAL ICONS
       ============================================= */
    
    .arksey-mobile-menu-social {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 25px;
        background: rgba(0, 0, 0, 0.2);
    }
    
    .arksey-mobile-menu-social-link {
        width: 54px;
        height: 54px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: #ffffff;
        font-size: 22px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .arksey-mobile-menu-social-link:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
    
    
    /* =============================================
       MOBILE MENU OVERLAY (hidden - fullscreen menu)
       ============================================= */
    
    .arksey-mobile-overlay {
        display: none;
    }
    
    
    /* =============================================
       BODY STATE WHEN MOBILE NAV OPEN
       ============================================= */
    
    body.arksey-mobile-nav-open {
        overflow: hidden;
    }
}


/* =============================================
   SMALL MOBILE (max-width: 480px)
   ============================================= */

@media (max-width: 480px) {
    .arksey-mobile-nav-container {
        padding: 12px 15px;
    }
    
    .arksey-mobile-logo img {
        height: 60px;
    }
    
    .arksey-mobile-hamburger {
        width: 46px;
        height: 46px;
    }
    
    .arksey-mobile-hamburger span {
        width: 24px;
        height: 2px;
    }
    
    .arksey-mobile-menu-header {
        padding: 20px 20px 18px;
    }
    
    .arksey-mobile-menu-title {
        font-size: 1em;
    }
    
    .arksey-mobile-menu-close {
        width: 40px;
        height: 40px;
    }
    
    .arksey-mobile-menu-close span {
        font-size: 24px;
    }
    
    .arksey-mobile-menu-link {
        padding: 15px 25px;
        font-size: 1.2em;
    }
    
    .arksey-mobile-menu-book {
        padding: 8px 25px 20px;
    }
    
    .arksey-mobile-book-btn {
        padding: 16px 40px;
        font-size: 1em;
    }
    
    .arksey-mobile-menu-contact {
        padding: 25px 20px;
    }
    
    .arksey-mobile-menu-contact-link {
        font-size: 0.95em;
    }
    
    .arksey-mobile-menu-social {
        gap: 15px;
        padding: 20px;
    }
    
    .arksey-mobile-menu-social-link {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}