/* =============================================
   JOSH ARKSEY SPORTS MASSAGE - PRIVACY POLICY
   arksey-privacy-1.css
   All classes prefixed with 'arksey-' to avoid conflicts
   ============================================= */

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'K2D', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* =============================================
   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;
}


/* =============================================
   PRIVACY POLICY SECTION
   ============================================= */

.arksey-privacy {
    padding: 100px 20px;
    background: #ffffff;
}

.arksey-privacy-container {
    max-width: 800px;
    margin: 0 auto;
}

.arksey-privacy-title {
    font-family: 'Eurostile Extended Two', 'K2D', sans-serif;
    font-size: 2.2em;
    font-weight: 700;
    color: #111111;
    margin: 0 0 40px 0;
    line-height: 1.3;
    text-align: center;
    position: relative;
    padding-bottom: 25px;
}

.arksey-privacy-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #cc0000);
    border-radius: 2px;
}

.arksey-privacy-subtitle {
    font-family: 'Eurostile Extended Two', 'K2D', sans-serif;
    font-size: 1.3em;
    font-weight: 700;
    color: #222222;
    margin: 40px 0 15px 0;
    line-height: 1.3;
}

.arksey-privacy-text {
    font-family: 'K2D', sans-serif;
    font-size: 1.05em;
    line-height: 1.8;
    color: #555555;
    margin: 0 0 20px 0;
}

.arksey-privacy-list {
    list-style: none;
    margin: 0 0 25px 0;
    padding: 0;
}

.arksey-privacy-list li {
    font-family: 'K2D', sans-serif;
    font-size: 1.05em;
    line-height: 1.8;
    color: #555555;
    padding: 8px 0 8px 28px;
    position: relative;
}

.arksey-privacy-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #ff0000;
    font-size: 1.2em;
    font-weight: bold;
}

.arksey-privacy-list li:first-child::before {
    content: none;
}

.arksey-privacy-list li:first-child {
    padding-left: 0;
    font-weight: 600;
    color: #333333;
}

.arksey-privacy-link {
    color: #ff0000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.arksey-privacy-link:hover {
    color: #cc0000;
    border-bottom-color: #cc0000;
}


/* =============================================
   PRIVACY TABLET (max-width: 1024px)
   ============================================= */

@media (max-width: 1024px) {
    .arksey-privacy {
        padding: 80px 20px;
    }
    
    .arksey-privacy-title {
        font-size: 1.9em;
    }
    
    .arksey-privacy-subtitle {
        font-size: 1.2em;
    }
}


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

@media (max-width: 768px) {
    .arksey-privacy {
        padding: 60px 15px;
    }
    
    .arksey-privacy-title {
        font-size: 1.6em;
        margin-bottom: 35px;
        padding-bottom: 20px;
    }
    
    .arksey-privacy-title::after {
        width: 60px;
    }
    
    .arksey-privacy-subtitle {
        font-size: 1.15em;
        margin-top: 35px;
    }
    
    .arksey-privacy-text {
        font-size: 1em;
    }
    
    .arksey-privacy-list li {
        font-size: 1em;
        padding: 6px 0 6px 24px;
    }
}


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

@media (max-width: 480px) {
    .arksey-privacy {
        padding: 50px 12px;
    }
    
    .arksey-privacy-title {
        font-size: 1.4em;
        margin-bottom: 30px;
    }
    
    .arksey-privacy-subtitle {
        font-size: 1.1em;
        margin-top: 30px;
        margin-bottom: 12px;
    }
    
    .arksey-privacy-text {
        font-size: 0.95em;
        line-height: 1.75;
    }
    
    .arksey-privacy-list li {
        font-size: 0.95em;
        padding: 5px 0 5px 22px;
    }
}
