/* RESET & FONTS */
:root {
    --gdnhf-bg-primary: #0B132B;
    --gdnhf-bg-secondary: #1C2541;
    --gdnhf-accent-gold: #D4AF37;
    --gdnhf-accent-gold-light: #FBF5B7;
    --gdnhf-accent-gold-dark: #AA771C;
    --gdnhf-text-light: #F8F9FA;
    --gdnhf-text-muted: #A0A5B5;
    
    --gdnhf-font-heading: 'Playfair Display', serif;
    --gdnhf-font-body: 'Lato', sans-serif;
    
    --gdnhf-transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--gdnhf-font-body);
    background-color: var(--gdnhf-bg-primary);
    color: var(--gdnhf-text-light);
    line-height: 1.6;
}

/* HEADER */
.gdnhf-site-header {
    background-color: rgba(11, 19, 43, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
}

.gdnhf-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gdnhf-brand-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.gdnhf-text-logo {
    font-family: var(--gdnhf-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gdnhf-accent-gold);
    background: linear-gradient(135deg, var(--gdnhf-accent-gold), var(--gdnhf-accent-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.gdnhf-brand-name {
    font-family: var(--gdnhf-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.gdnhf-brand-subtitle {
    font-size: 0.85rem;
    color: var(--gdnhf-accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gdnhf-age-badge {
    background: linear-gradient(135deg, var(--gdnhf-accent-gold-dark), var(--gdnhf-accent-gold));
    color: var(--gdnhf-bg-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* HERO SECTION */
.gdnhf-hero-showcase {
    position: relative;
    padding: 8rem 2rem 5rem;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, var(--gdnhf-bg-secondary) 0%, var(--gdnhf-bg-primary) 100%);
    overflow: hidden;
}

.gdnhf-hero-showcase::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        linear-gradient(45deg, rgba(212, 175, 55, 0.03) 25%, transparent 25%, transparent 75%, rgba(212, 175, 55, 0.03) 75%, rgba(212, 175, 55, 0.03)),
        linear-gradient(45deg, rgba(212, 175, 55, 0.03) 25%, transparent 25%, transparent 75%, rgba(212, 175, 55, 0.03) 75%, rgba(212, 175, 55, 0.03));
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.5;
}

.gdnhf-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin-bottom: 4rem;
}

.gdnhf-hero-kicker {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--gdnhf-accent-gold);
    color: var(--gdnhf-accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    border-radius: 30px;
    margin-bottom: 2rem;
}

.gdnhf-hero-title {
    font-family: var(--gdnhf-font-heading);
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--gdnhf-text-light);
}

.gdnhf-hero-description {
    font-size: 1.25rem;
    color: var(--gdnhf-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.gdnhf-hero-info-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
}

.gdnhf-info-card {
    background: rgba(28, 37, 65, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    transition: var(--gdnhf-transition);
}

.gdnhf-info-card:hover {
    border-color: var(--gdnhf-accent-gold);
    transform: translateY(-5px);
}

.gdnhf-info-title {
    font-family: var(--gdnhf-font-heading);
    color: var(--gdnhf-accent-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gdnhf-info-text {
    font-size: 0.95rem;
    color: var(--gdnhf-text-light);
}

/* SECTIONS COMMON */
.gdnhf-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.gdnhf-section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gdnhf-section-title {
    font-family: var(--gdnhf-font-heading);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--gdnhf-text-light);
}

.gdnhf-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gdnhf-accent-gold);
    margin: 1.5rem auto 0;
}

.gdnhf-section-intro {
    font-size: 1.1rem;
    color: var(--gdnhf-text-muted);
}

.gdnhf-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.gdnhf-feature-card {
    background-color: var(--gdnhf-bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 12px;
    transition: var(--gdnhf-transition);
    position: relative;
    overflow: hidden;
}

.gdnhf-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, transparent, var(--gdnhf-accent-gold), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.gdnhf-feature-card:hover {
    background-color: rgba(28, 37, 65, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gdnhf-feature-card:hover::before {
    transform: translateX(100%);
}

.gdnhf-card-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gdnhf-accent-gold);
    display: block;
    margin-bottom: 1rem;
}

.gdnhf-card-title {
    font-family: var(--gdnhf-font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.gdnhf-card-text {
    color: var(--gdnhf-text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    min-height: 50px;
}

.gdnhf-card-list {
    list-style: none;
}

.gdnhf-card-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.gdnhf-card-list li::before {
    content: '♦';
    position: absolute;
    left: 0;
    color: var(--gdnhf-accent-gold);
}

/* SPECIFIC SECTIONS BACKGROUNDS */
.gdnhf-wellbeing-zone {
    background-color: var(--gdnhf-bg-primary);
}

.gdnhf-entertainment-zone {
    background-color: #0d1630;
}

/* FOOTER */
.gdnhf-site-footer {
    background-color: #070c1c;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.gdnhf-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gdnhf-footer-slogan {
    text-align: center;
    margin-bottom: 4rem;
}

.gdnhf-footer-slogan h2 {
    font-family: var(--gdnhf-font-heading);
    color: var(--gdnhf-accent-gold);
    font-size: 2rem;
    font-style: italic;
    font-weight: 400;
}

.gdnhf-footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.gdnhf-footer-heading {
    font-family: var(--gdnhf-font-heading);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--gdnhf-text-light);
}

.gdnhf-footer-text {
    color: var(--gdnhf-text-muted);
    font-size: 0.95rem;
}

.gdnhf-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 3rem;
}

.gdnhf-contact-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gdnhf-contact-item {
    display: flex;
    flex-direction: column;
}

.gdnhf-contact-label {
    font-size: 0.8rem;
    color: var(--gdnhf-accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.gdnhf-contact-value {
    font-size: 1rem;
}

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

.gdnhf-nav-link {
    color: var(--gdnhf-text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--gdnhf-transition);
}

.gdnhf-nav-link:hover {
    color: var(--gdnhf-accent-gold);
}

.gdnhf-copyright {
    text-align: center;
    color: rgba(160, 165, 181, 0.5);
    font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gdnhf-hero-title {
        font-size: 3.5rem;
    }
    .gdnhf-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gdnhf-hero-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gdnhf-brand-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .gdnhf-hero-title {
        font-size: 2.8rem;
    }
    .gdnhf-hero-info-grid {
        grid-template-columns: 1fr;
    }
    .gdnhf-cards-grid {
        grid-template-columns: 1fr;
    }
    .gdnhf-footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .gdnhf-footer-bottom {
        flex-direction: column;
        gap: 3rem;
    }
    .gdnhf-footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}
