:root {
    --color-primary: #c8a84b;
    --color-primary-light: #dfc16f;
    --color-primary-dark: #a68636;
    --color-accent: #5a5a5a;
    --ui-loader-bg-start: #1a1a1a;
    --ui-loader-bg-end: #2e2e2e;
    --ui-loader-glow: rgba(200, 168, 75, 0.45);
    --ui-contact-bg-start: #1f1f1f;
    --ui-contact-bg-end: #2a2a2a;
    --ui-contact-border: rgba(200, 168, 75, 0.25);
    --ui-submit-shadow: rgba(200, 168, 75, 0.4);
    --ui-mascot-shadow: rgba(200, 168, 75, 0.4);
    --ui-nav-bg-start: #3a3a3a;
    --ui-nav-bg-end: #c8a84b;
    --ui-btn-primary-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    --ui-btn-primary-hover-start: #dfc16f;
    --ui-btn-primary-hover-mid: #b39636;
    --ui-btn-primary-hover-end: #8f7530;
    --ui-btn-primary-hover-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    --ui-btn-outline-hover-bg: rgba(200, 168, 75, 0.22);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3 {
    letter-spacing: -0.3px;
}

body {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #111;
    overflow-x: hidden;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= VIDEO BACKGROUND ================= */

.image-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: url('../images/golf.png') center center / cover no-repeat;
}

.video-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
    z-index: -1;
}

.hero-gradient {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.72) 100%);
    z-index: -1;
}

/* ================= HERO ================= */

.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    max-width: 1100px;
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.hero p {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    max-width: 900px;
    margin-bottom: 48px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    line-height: 1.55;
}

/* ================= SERVICES SECTION ================= */

.services {
    min-height: calc(100vh - 80px);
    padding: 90px 60px;
    background: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 60px;
    max-width: 900px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    width: 100%;
}

.service-card {
    background: linear-gradient(to bottom, var(--color-primary-dark), var(--color-primary));
    border-radius: 18px;
    padding: 48px 28px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.service-icon {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-icon i {
    font-size: 2rem;
    line-height: 1;
    color: #ffffff;
}

.service-card h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.97rem;
    }

    .services {
        padding: 65px 20px;
    }

    .services h2 {
        font-size: 1.7rem;
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

}

@media (max-width: 540px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: auto;
        padding: 48px 16px 56px;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 0.94rem;
        margin-bottom: 32px;
    }

    .services {
        padding: 52px 14px;
        min-height: auto;
    }

    .services h2 {
        font-size: 1.45rem;
        margin-bottom: 28px;
    }

    .service-card {
        padding: 28px 18px 24px;
        border-radius: 14px;
    }
}

@media (max-width: 412px) {
    .hero {
        padding: 40px 12px 48px;
    }

    .hero h1 {
        font-size: 1.48rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .services {
        padding: 44px 12px;
    }

    .services h2 {
        font-size: 1.34rem;
        margin-bottom: 22px;
    }

    .service-card {
        padding: 22px 14px 20px;
    }

    .service-card h3 {
        font-size: 0.9rem;
    }
}

