/* =============================================
   JOSH ARKSEY SPORTS MASSAGE - HOMEPAGE STYLES
   arksey-home-1.css - Global & Hero Section
   
   TYPOGRAPHY CEILING - Hero sets max sizes:
   - Hero h1: 3.2rem (desktop) | 2.6rem (tablet) | 2rem (mobile) | 1.7rem (small)
   - Hero p: 1.15rem (desktop) | 1.1rem (tablet) | 1rem (mobile) | 0.95rem (small)
   - Hero button: 1.1rem (desktop) | 1.05rem (tablet) | 1rem (mobile) | 0.95rem (small)
   
   All other sections use smaller scale:
   - Section h1/h2: 2.4rem | 2rem | 1.7rem | 1.45rem
   - Section p: 1.05rem | 1rem | 0.95rem | 0.9rem
   - Section button: 1rem | 0.95rem | 0.9rem | 0.85rem
   ============================================= */

/* =============================================
   FONT FACE - EUROSTILE EXTENDED TWO
   ============================================= */

@font-face {
    font-family: 'Eurostile Extended Two';
    src: url('/fonts/EurostileExtendedTwo.woff2') format('woff2'),
         url('/fonts/EurostileExtendedTwo.woff') format('woff'),
         url('/fonts/EurostileExtendedTwo.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* =============================================
   GLOBAL RESET & BASE STYLES
   ============================================= */

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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    font-size: 16px;
}

body {
    font-family: 'K2D', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #333333;
    background: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

::selection {
    background: rgba(255, 0, 0, 0.2);
    color: #000000;
}

:focus-visible {
    outline: 2px solid #ff0000;
    outline-offset: 3px;
}


/* =============================================
   HERO SECTION
   ============================================= */

.arksey-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 50px;
    background: url('/img/bg-1.jpg') center center / cover no-repeat;
    overflow: hidden;
}

/* Dark overlay */
.arksey-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}


/* =============================================
   HERO CONTENT CARD
   ============================================= */

.arksey-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    width: 100%;
    padding: 60px 70px;
    text-align: center;
    
    /* Frosted glass effect */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.04) 100%
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Red accent line at top */
.arksey-hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #cc0000);
    border-radius: 0 0 4px 4px;
}


/* =============================================
   HERO TYPOGRAPHY (CEILING - LARGEST ON SITE)
   ============================================= */

.arksey-hero-label {
    display: inline-block;
    font-family: 'K2D', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ff0000;
    margin-bottom: 20px;
}

.arksey-hero-content h1 {
    font-family: 'Eurostile Extended Two', 'K2D', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 28px 0;
    letter-spacing: -0.01em;
}

.arksey-hero-content p {
    font-family: 'K2D', sans-serif;
    font-size: 1.15rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 40px 0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}


/* =============================================
   HERO SERVICE ICONS
   ============================================= */

.arksey-hero-services {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.arksey-hero-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    min-width: 130px;
}

.arksey-hero-service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.arksey-hero-service-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.arksey-hero-service:hover .arksey-hero-service-icon {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
}

.arksey-hero-service-label {
    font-family: 'K2D', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.35;
}


/* =============================================
   HERO CTA BUTTON (CEILING - LARGEST ON SITE)
   ============================================= */

.arksey-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 48px;
    font-family: 'K2D', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #ffffff;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.arksey-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.45);
}

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

.arksey-cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.arksey-cta-button:hover svg {
    transform: translateX(4px);
}


/* =============================================
   SCROLL INDICATOR
   ============================================= */

.arksey-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'K2D', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

.arksey-hero-scroll::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}


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

@media (min-width: 769px) and (max-width: 1024px) {
    .arksey-hero {
        padding: 120px 40px;
        min-height: 90vh;
    }
    
    .arksey-hero-content {
        max-width: 720px;
        padding: 55px 55px;
        border-radius: 24px;
    }
    
    .arksey-hero-content::before {
        width: 100px;
    }
    
    .arksey-hero-label {
        font-size: 0.88rem;
        margin-bottom: 18px;
    }
    
    .arksey-hero-content h1 {
        font-size: 2.6rem;
        margin-bottom: 24px;
    }
    
    .arksey-hero-content p {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .arksey-hero-services {
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .arksey-hero-service {
        min-width: 115px;
        gap: 12px;
    }
    
    .arksey-hero-service-icon {
        width: 72px;
        height: 72px;
    }
    
    .arksey-hero-service-icon i {
        font-size: 1.65rem;
    }
    
    .arksey-hero-service-label {
        font-size: 0.85rem;
    }
    
    .arksey-cta-button {
        padding: 18px 42px;
        font-size: 1.05rem;
    }
    
    .arksey-hero-scroll {
        bottom: 30px;
    }
}


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

@media (max-width: 768px) {
    .arksey-hero {
        padding: 100px 20px 80px;
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .arksey-hero-content {
        max-width: 100%;
        padding: 42px 28px;
        border-radius: 20px;
    }
    
    .arksey-hero-content::before {
        width: 70px;
    }
    
    .arksey-hero-label {
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .arksey-hero-content h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .arksey-hero-content p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }
    
    .arksey-hero-services {
        gap: 25px;
        margin-bottom: 32px;
    }
    
    .arksey-hero-service {
        min-width: 95px;
        gap: 10px;
    }
    
    .arksey-hero-service-icon {
        width: 60px;
        height: 60px;
    }
    
    .arksey-hero-service-icon i {
        font-size: 1.4rem;
    }
    
    .arksey-hero-service-label {
        font-size: 0.78rem;
    }
    
    .arksey-cta-button {
        padding: 16px 36px;
        font-size: 1rem;
    }
    
    .arksey-hero-scroll {
        display: none;
    }
}


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

@media (max-width: 480px) {
    .arksey-hero {
        padding: 90px 15px 70px;
    }
    
    .arksey-hero-content {
        padding: 36px 22px;
        border-radius: 18px;
    }
    
    .arksey-hero-content::before {
        width: 55px;
        height: 3px;
    }
    
    .arksey-hero-label {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
    
    .arksey-hero-content h1 {
        font-size: 1.7rem;
        margin-bottom: 16px;
    }
    
    .arksey-hero-content p {
        font-size: 0.95rem;
        line-height: 1.75;
        margin-bottom: 25px;
    }
    
    .arksey-hero-services {
        gap: 18px;
        margin-bottom: 28px;
    }
    
    .arksey-hero-service {
        min-width: 85px;
        gap: 8px;
    }
    
    .arksey-hero-service-icon {
        width: 52px;
        height: 52px;
    }
    
    .arksey-hero-service-icon i {
        font-size: 1.2rem;
    }
    
    .arksey-hero-service-label {
        font-size: 0.72rem;
    }
    
    .arksey-cta-button {
        padding: 15px 30px;
        font-size: 0.95rem;
        width: 100%;
    }
}


/* =============================================
   LANDSCAPE MOBILE FIX
   ============================================= */

@media (max-height: 550px) and (orientation: landscape) {
    .arksey-hero {
        min-height: auto;
        padding: 60px 40px;
    }
    
    .arksey-hero-content {
        padding: 35px 45px;
    }
    
    .arksey-hero-content h1 {
        font-size: 1.9rem;
        margin-bottom: 15px;
    }
    
    .arksey-hero-content p {
        font-size: 0.95rem;
        margin-bottom: 22px;
    }
    
    .arksey-hero-services {
        gap: 30px;
        margin-bottom: 22px;
    }
    
    .arksey-hero-service-icon {
        width: 50px;
        height: 50px;
    }
    
    .arksey-hero-service-icon i {
        font-size: 1.1rem;
    }
    
    .arksey-hero-service-label {
        font-size: 0.68rem;
    }
    
    .arksey-hero-scroll {
        display: none;
    }
}