/* ========================================
   CAVERN OF ZARTHOS - Main Stylesheet
   Professional Hockey Training Website
   ======================================== */

/* ===== FONT FACE ===== */
@font-face {
    font-family: 'Teachers';
    src: url('../font/Teachers-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Teachers', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e8e8e8;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #00d4ff, #090979);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: #cccccc;
    font-size: 1.1rem;
}

strong {
    color: #00d4ff;
    font-weight: 700;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(0, 212, 255, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.4));
}

.logo h2 {
    font-size: 1.6rem;
    margin: 0;
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    font-weight: 600;
    letter-spacing: 0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    color: #e8e8e8;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.75rem 0;
    letter-spacing: 0.5px;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover::before {
    width: 100%;
}

nav a:hover {
    color: #00d4ff;
    transform: translateY(-1px);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e8e8e8;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

nav.mobile-hidden {
    display: none;
}

nav.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

nav.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

nav.mobile-menu ul {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

nav.mobile-menu a {
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    text-align: center;
}

nav.mobile-menu a:last-child {
    border-bottom: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.hero-text h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    color: #00d4ff;
    font-weight: 300;
    opacity: 0.9;
}

.hero-accent {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.accent-line {
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.6), transparent);
    position: relative;
}

.accent-line::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -2px;
    width: 5px;
    height: 5px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

/* ===== INTRODUCTION SECTION ===== */
.intro-section {
    padding: 8rem 3rem 6rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 46, 0.95) 100%);
    position: relative;
}

.intro-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #cccccc;
    font-weight: 300;
    margin: 0;
}

/* ===== SKATING FOUNDATION ===== */
.skating-section {
    height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.skating-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.skating-background .background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
}

.skating-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 46, 0.5) 50%, rgba(22, 33, 62, 0.8) 100%);
}

.skating-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.content-wrapper {
    max-width: 600px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
}

.content-wrapper h3 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.content-wrapper p {
    color: #e8e8e8;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ===== PUCK SKILLS SECTION ===== */
.puck-section {
    padding: 8rem 3rem;
    background: rgba(10, 10, 10, 0.98);
}

.puck-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 6rem;
    align-items: center;
}

.puck-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.puck-content h3 {
    color: #00d4ff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.puck-content p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ===== HOCKEY IQ SECTION ===== */
.iq-section {
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.iq-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background-layer-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 46, 0.8) 100%);
}

.background-layer-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('../img/3.webp') center/cover no-repeat;
    opacity: 0.3;
    filter: blur(1px);
}

.iq-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    height: 100%;
    display: flex;
    align-items: center;
}

.iq-image {
    flex: 1;
    margin-right: 4rem;
}

.iq-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.iq-content {
    flex: 1.2;
}

.iq-content h3 {
    color: #00d4ff;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.iq-content p {
    color: #e8e8e8;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ===== STRENGTH & CONDITIONING ===== */
.strength-section {
    padding: 8rem 3rem;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.98) 0%, rgba(30, 30, 50, 0.95) 100%);
}

.strength-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6rem;
}

.strength-content {
    flex: 1.5;
}

.strength-content h3 {
    color: #00d4ff;
    font-size: 3rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.strength-content p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

.strength-visual {
    flex: 1;
    position: relative;
}

.strength-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.1);
    filter: brightness(0.9) contrast(1.1);
}

/* ===== TRAINING PHILOSOPHY ===== */
.philosophy-section {
    padding: 8rem 3rem;
    background: rgba(10, 10, 10, 0.98);
}

.philosophy-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 6rem;
}

.philosophy-content {
    flex: 1.8;
}

.philosophy-content h3 {
    color: #00d4ff;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.philosophy-content p {
    color: #e8e8e8;
    font-size: 1.3rem;
    line-height: 1.7;
    font-weight: 300;
}

.philosophy-image {
    flex: 1;
    position: relative;
}

.philosophy-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: rotate(-2deg);
}

/* ===== TRAINING CULTURE ===== */
.culture-section {
    height: 85vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.culture-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.culture-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.3);
}

.culture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, transparent 100%);
}

.culture-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 3rem 4rem;
    text-align: center;
}

.culture-content h3 {
    color: #00d4ff;
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.culture-content p {
    color: #e8e8e8;
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

/* ===== CONCLUSION SECTION ===== */
.conclusion-section {
    padding: 8rem 3rem 6rem;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.98) 0%, rgba(20, 20, 40, 0.95) 100%);
}

.conclusion-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6rem;
}

.conclusion-visual {
    flex: 1.2;
}

.conclusion-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    filter: brightness(0.8) contrast(1.1);
}

.conclusion-content {
    flex: 1;
    text-align: center;
}

.conclusion-content h3 {
    color: #00d4ff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.conclusion-content p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ===== FOOTER ===== */
footer {
    background: rgba(10, 10, 10, 0.98);
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    padding: 2rem 3rem;
    margin-top: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.footer-section h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    font-weight: 300;
}

.footer-links a:hover {
    color: #00d4ff;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    color: #888;
    font-size: 0.85rem;
    font-weight: 300;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== MOBILE SCROLLING FIXES ===== */
@media (max-width: 768px) {
    /* Prevent horizontal scrolling */
    * {
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
    }

    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        position: relative;
    }

    /* Ensure all containers don't overflow */
    .nav-container,
    .hero-container,
    .intro-container,
    .services-container,
    .packages-grid,
    .contact-container,
    .terms-container,
    .privacy-container {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Fix images and media */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Prevent fixed elements from causing overflow */
    header {
        width: 100%;
        max-width: 100%;
    }

    /* Mobile menu overlay fixes */
    nav.mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        max-width: 100vw;
        z-index: 9999;
    }

    .hamburger {
        display: flex;
    }

    nav {
        display: none;
    }

    nav.mobile-menu {
        display: flex;
    }

    .nav-container {
        padding: 1rem 2rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

    /* Hero section mobile fixes */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 2.8rem;
        line-height: 1.1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .hero-text h2 {
        font-size: 1.2rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Section containers */
    .intro-container,
    .services-container,
    .contact-container,
    .terms-container,
    .privacy-container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }

    /* Grid layouts */
    .services-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }

    /* Content blocks */
    .service-card {
        width: 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }

    .package-card {
        width: 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }

    /* Image containers */
    .contact-image,
    .facility-image,
    .background-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    /* Text content */
    .overview-text,
    .contact-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    /* Terms and privacy sections */
    .terms-section h2,
    .privacy-section h2 {
        font-size: 1.6rem;
    }

    .terms-section p,
    .privacy-section p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Prevent any element from extending beyond viewport */
    .content-wrapper,
    .puck-content,
    .iq-content,
    .strength-content,
    .philosophy-content,
    .culture-content,
    .conclusion-content {
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    /* Ensure no horizontal overflow on any section */
    section {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Text overflow prevention */
    h1, h2, h3, h4, h5, h6, p, span, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Specific fixes for long text */
    .overview-text,
    .contact-description,
    .terms-text p,
    .privacy-intro p,
    .terms-section p,
    .privacy-section p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Body scroll prevention when mobile menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    /* Hero responsive */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-text h2 {
        font-size: 1.4rem;
    }

    .hero-accent {
        display: none;
    }

    /* Intro responsive */
    .intro-section {
        padding: 6rem 2rem 4rem;
    }

    .intro-text {
        font-size: 1.2rem;
    }

    /* Section responsive */
    .skating-section {
        height: auto;
        padding: 4rem 0;
    }

    .skating-content {
        padding: 0 2rem;
    }

    .content-wrapper {
        padding: 2rem;
    }

    .content-wrapper h3 {
        font-size: 1.8rem;
    }

    .puck-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .iq-container {
        flex-direction: column;
        gap: 3rem;
        padding: 0 2rem;
        height: auto;
    }

    .iq-image {
        margin-right: 0;
    }

    .strength-container {
        flex-direction: column;
        gap: 3rem;
    }

    .philosophy-container {
        flex-direction: column;
        gap: 3rem;
    }

    .culture-section {
        height: auto;
        padding: 4rem 0;
    }

    .culture-content {
        padding: 0 2rem 3rem;
    }

    .culture-content h3 {
        font-size: 2.5rem;
    }

    .conclusion-container {
        flex-direction: column;
        gap: 3rem;
    }

    /* Services page responsive */
    .services-hero {
        padding: 6rem 2rem 4rem;
    }

    .services-hero-content h1 {
        font-size: 3rem;
    }

    .services-hero-content h2 {
        font-size: 1.4rem;
    }

    .services-overview {
        padding: 4rem 2rem;
    }

    .overview-text {
        font-size: 1.1rem;
    }

    .services-grid {
        padding: 4rem 2rem;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .service-header h3 {
        font-size: 1.2rem;
    }

    .service-price {
        align-self: flex-end;
        font-size: 1rem;
    }

    .service-card.goalie {
        grid-column: span 1;
    }

    .packages-section {
        padding: 4rem 2rem;
    }

    .packages-header h2 {
        font-size: 2.5rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .package-card {
        padding: 2rem;
    }

    .services-cta {
        padding: 4rem 2rem;
    }

    .cta-content h3 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    /* Contacts page responsive */
    .contacts-hero {
        padding: 6rem 2rem 4rem;
    }

    .contacts-hero-content h1 {
        font-size: 3rem;
    }

    .contacts-hero-content h2 {
        font-size: 1.4rem;
    }

    .contact-main {
        padding: 4rem 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        padding: 0;
        text-align: center;
    }

    .contact-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .contact-details {
        gap: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .contact-icon {
        font-size: 1.5rem;
        min-width: auto;
        margin-top: 0;
    }

    /* Terms page responsive */
    .terms-hero {
        padding: 6rem 2rem 3rem;
    }

    .terms-hero-content h1 {
        font-size: 2.5rem;
    }

    .terms-subtitle {
        font-size: 1rem;
    }

    .terms-content {
        padding: 3rem 2rem;
    }

    .terms-section {
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }

    .terms-section h2 {
        font-size: 1.4rem;
    }

    .terms-section ul {
        padding-left: 1.5rem;
    }

    /* Privacy page responsive */
    .privacy-hero {
        padding: 6rem 2rem 3rem;
    }

    .privacy-hero-content h1 {
        font-size: 3rem;
    }

    .privacy-subtitle {
        font-size: 1rem;
    }

    .privacy-content {
        padding: 3rem 2rem;
    }

    .privacy-section {
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }

    .privacy-section h2 {
        font-size: 1.4rem;
    }

    .privacy-section h3 {
        font-size: 1.1rem;
    }

    .privacy-section ul {
        padding-left: 1.5rem;
    }

    /* Footer responsive */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    nav a {
        text-align: center;
        padding: 0.8rem;
        width: 100%;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-content {
        padding: 1rem;
    }
}

/* ===== CONTENT WITH IMAGES ===== */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-with-image .text-content {
    order: 1;
}

.content-with-image .image-content {
    order: 2;
}

.content-with-image:nth-child(even) .text-content {
    order: 2;
}

.content-with-image:nth-child(even) .image-content {
    order: 1;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.image-content img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.image-content.full-width img {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
    display: block;
}

/* ===== SERVICES PAGE STYLES ===== */
.services-hero {
    padding: 8rem 3rem 6rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 46, 0.95) 100%);
}

.services-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 4rem;
    color: #00d4ff;
    margin-bottom: 2rem;
    font-weight: 600;
}

.services-hero-content h2 {
    font-size: 1.6rem;
    color: #e8e8e8;
    line-height: 1.6;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
}

.services-overview {
    padding: 6rem 3rem;
    background: rgba(15, 15, 15, 0.98);
}

.overview-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.overview-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 2rem;
    font-weight: 300;
}

.services-grid {
    padding: 6rem 3rem;
    background: rgba(10, 10, 10, 0.98);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.service-header h3 {
    color: #00d4ff;
    font-size: 1.4rem;
    font-weight: 600;
    flex: 1;
    margin: 0;
}

.service-price {
    color: #00d4ff;
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
    background: rgba(0, 212, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.service-content p {
    color: #cccccc;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/* Service card variations */
.service-card.premium {
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, rgba(0, 212, 255, 0.02) 100%);
}

.service-card.premium .service-price {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    color: #ffd700;
}

.service-card.group {
    border-color: rgba(0, 212, 255, 0.2);
}

.service-card.clinic {
    border-color: rgba(0, 255, 128, 0.2);
}

.service-card.clinic .service-price {
    background: rgba(0, 255, 128, 0.1);
    border-color: rgba(0, 255, 128, 0.3);
    color: #00ff80;
}

.service-card.workshop {
    border-color: rgba(255, 128, 0, 0.2);
}

.service-card.workshop .service-price {
    background: rgba(255, 128, 0, 0.1);
    border-color: rgba(255, 128, 0, 0.3);
    color: #ff8000;
}

.service-card.goalie {
    grid-column: span 2;
    border-color: rgba(255, 0, 128, 0.2);
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.02) 0%, rgba(0, 212, 255, 0.02) 100%);
}

.service-card.goalie .service-price {
    background: rgba(255, 0, 128, 0.1);
    border-color: rgba(255, 0, 128, 0.3);
    color: #ff0080;
}

.service-card.conditioning {
    border-color: rgba(128, 0, 255, 0.2);
}

.service-card.conditioning .service-price {
    background: rgba(128, 0, 255, 0.1);
    border-color: rgba(128, 0, 255, 0.3);
    color: #8000ff;
}

.service-card.evaluation {
    border-color: rgba(255, 128, 255, 0.2);
}

.service-card.evaluation .service-price {
    background: rgba(255, 128, 255, 0.1);
    border-color: rgba(255, 128, 255, 0.3);
    color: #ff80ff;
}

/* Packages section */
.packages-section {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(40, 40, 60, 0.95) 100%);
}

.packages-header {
    text-align: center;
    margin-bottom: 4rem;
}

.packages-header h2 {
    color: #00d4ff;
    font-size: 3rem;
    font-weight: 600;
    margin: 0;
}

.packages-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.package-content h3 {
    color: #00d4ff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.package-detail {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.package-price {
    color: #00d4ff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.package-card p {
    color: #cccccc;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/* CTA Section */
.services-cta {
    padding: 6rem 3rem;
    background: rgba(10, 10, 10, 0.98);
    text-align: center;
}

.cta-content h3 {
    color: #00d4ff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-content p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CONTACTS PAGE STYLES ===== */
.contacts-hero {
    padding: 8rem 3rem 6rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 46, 0.95) 100%);
}

.contacts-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contacts-hero-content h1 {
    font-size: 4rem;
    color: #00d4ff;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contacts-hero-content h2 {
    font-size: 1.6rem;
    color: #e8e8e8;
    line-height: 1.6;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

.contact-main {
    padding: 6rem 3rem;
    background: rgba(15, 15, 15, 0.98);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-image {
    position: relative;
}

.facility-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    filter: brightness(0.9) contrast(1.1);
}

.contact-info {
    padding: 2rem 0;
}

.contact-description {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.contact-icon {
    font-size: 2rem;
    min-width: 2rem;
    margin-top: 0.2rem;
}

.contact-text {
    color: #e8e8e8;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-text strong {
    color: #00d4ff;
    font-weight: 600;
}

.contact-text a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ===== TERMS PAGE STYLES ===== */
.terms-hero {
    padding: 8rem 3rem 4rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 46, 0.95) 100%);
}

.terms-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.terms-hero-content h1 {
    font-size: 3.5rem;
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.terms-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 300;
    font-style: italic;
}

.terms-content {
    padding: 4rem 3rem;
    background: rgba(15, 15, 15, 0.98);
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
}

.terms-text {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.terms-text p {
    color: #cccccc;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.terms-section {
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.terms-section h2 {
    color: #00d4ff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.5rem;
}

.terms-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, transparent);
}

.terms-section p {
    color: #cccccc;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.terms-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.terms-section li {
    color: #cccccc;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.terms-section li:last-child {
    margin-bottom: 0;
}

/* ===== PRIVACY PAGE STYLES ===== */
.privacy-hero {
    padding: 8rem 3rem 4rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 46, 0.95) 100%);
}

.privacy-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.privacy-hero-content h1 {
    font-size: 3.5rem;
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.privacy-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 300;
    font-style: italic;
}

.privacy-content {
    padding: 4rem 3rem;
    background: rgba(15, 15, 15, 0.98);
}

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

.privacy-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.privacy-intro p {
    color: #cccccc;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.privacy-section {
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h2 {
    color: #00d4ff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.5rem;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, transparent);
}

.privacy-section h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    font-weight: 500;
}

.privacy-section h4 {
    color: #cccccc;
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 400;
    font-style: italic;
}

.privacy-section p {
    color: #cccccc;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.privacy-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.privacy-section li {
    color: #cccccc;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.privacy-section li:last-child {
    margin-bottom: 0;
}

.privacy-section a {
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-section a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
    }

    a, a:visited {
        text-decoration: underline;
    }

    nav, footer {
        display: none;
    }
}