/* Hidden Mansion - Luxury Couples Wellness CSS */

:root {
    /* === Base Palette === */
    --black-deep: #0B0A09;
    --charcoal: #171515;
    --charcoal-soft: #1F1C1A;
    --burgundy-deep: #2A0F12;
    --burgundy: #3C2023;
    --burgundy-soft: #4A2A2E;
    --gold: #CBA135;
    --gold-soft: #E1C16E;
    --gold-muted: #A88A3A;
    --ivory: #F5F1E8;
    --ivory-soft: #EAE4D8;
    /* === Backgrounds === */
    --bg-main: var(--black-deep);
    --bg-section: var(--charcoal);
    --bg-elevated: var(--charcoal-soft);
    --bg-accent: var(--burgundy-deep);
    /* === Text === */
    --text-primary: var(--ivory);
    --text-secondary: var(--ivory-soft);
    --text-muted: #B8B2A6;
    --text-gold: var(--gold);
    /* === Borders / Lines === */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(203, 161, 53, 0.35);
    /* === Buttons === */
    --btn-bg: transparent;
    --btn-border: var(--gold);
    --btn-text: var(--gold);
    --btn-bg-hover: var(--gold);
    --btn-text-hover: #1A1612;
    /* === Overlays === */
    --overlay-dark: rgba(0, 0, 0, 0.55);
    --overlay-burgundy: rgba(42, 15, 18, 0.65);
    /* === Shadows / Glow === */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.4);
    --glow-gold: 0 0 20px rgba(203, 161, 53, 0.25);
    /* === Gradients === */
    --gradient-hero: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(11, 10, 9, 0.85)
    );
    --gradient-burgundy: linear-gradient(
        135deg,
        #2A0F12,
        #3C2023
    );
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'EB Garamond', Georgia, serif;
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
}

/* === Navigation === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 10, 9, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-gold);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-gold);
}

/* === Hero Section === */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(11, 10, 9, 0.7)), 
                url('/images/hm-couple-hero.jpg') center/cover;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding-left: 4rem;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem 0 0;
    z-index: 2;
    margin-bottom: 4rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(1px);
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-style: italic;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(1px);
}

.hero-intro {
    max-width: 600px;
    margin: 0 0 3rem 0;
    z-index: 2;
    background: rgba(11, 10, 9, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-gold);
    text-align: left;
}

.hero-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-gold);
    text-align: left;
}

.hero-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: left;
}

.btn-primary {
    border: 2px solid var(--btn-border);
    color: var(--btn-text);
    background: var(--btn-bg);
    padding: 16px 40px;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    font-family: 'EB Garamond', serif;
    backdrop-filter: blur(5px);
}

.btn-primary:hover {
    background: var(--btn-bg-hover);
    color: var(--btn-text-hover);
    box-shadow: var(--glow-gold);
    transform: translateY(-2px);
}

/* === Section Styles === */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--bg-accent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* === Services Grid === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background: var(--bg-elevated);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-gold);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--text-gold);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.8rem;
}

/* === Newsletter Signup === */
.newsletter {
    background: var(--gradient-burgundy);
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
    gap: 1rem;
}

.newsletter input {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    border-radius: 4px;
}

.newsletter input::placeholder {
    color: var(--text-muted);
}

/* === Footer === */
.footer {
    background: var(--bg-main);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer h4 {
    color: var(--text-gold);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer a {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--text-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* === Responsive === */
@media (max-width: 768px) {
    .hero {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-intro h2 {
        font-size: 1.5rem;
    }
    
    .hero-intro p {
        font-size: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        margin-bottom: 2rem;
        padding-right: 1rem;
    }

    .hero-intro {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .hero-intro {
        margin: 0 0 2rem 0;
        padding: 1rem;
    }
    
    .hero-intro h2 {
        font-size: 1.3rem;
    }
}
