/* Mystic Sanctuary Luxe Color Palette */
:root {
    /* Primary Colors */
    --deep-teal: #1B4D3E;
    --reflective-jade: #2D6B5F;
    --shadow-plum: #1A1A1A;
    --cream-silk: #C8B299;
    --soft-aqua: #7FBFB3;
    --crystal-pool-blue: #4A9B8E;
    --luxe-gold: #D4A574;
    
    /* Additional Colors */
    --rich-dark: #0F0F0F;
    --luxurious-gold: #E6C068;
    --deep-emerald: #1E3A32;
    
    /* Text Colors */
    --text-primary: #C8B299;
    --text-secondary: #7FBFB3;
    --text-accent: #D4A574;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--rich-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--deep-teal);
}

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

.nav-logo h2 {
    font-family: var(--font-heading);
    color: var(--soft-aqua);
    font-size: 1.5rem;
    font-weight: 600;
}

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

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--soft-aqua);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--luxe-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--shadow-plum) 50%, var(--rich-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(75, 155, 142, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--soft-aqua);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--crystal-pool-blue), var(--deep-teal));
    color: white;
    box-shadow: 0 4px 15px rgba(75, 155, 142, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 155, 142, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--luxe-gold);
    border: 2px solid var(--luxe-gold);
}

.btn-secondary:hover {
    background: var(--luxe-gold);
    color: var(--rich-dark);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* What We Offer Section */
.what-we-offer {
    background: var(--shadow-plum);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.offer-item {
    background: linear-gradient(135deg, var(--deep-emerald), var(--deep-teal));
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--reflective-jade);
}

.offer-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--luxe-gold);
    margin-bottom: 1rem;
}

.offer-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Trust Section */
.trust {
    background: var(--rich-dark);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--shadow-plum), var(--deep-emerald));
    border-radius: 12px;
    border: 1px solid var(--reflective-jade);
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--luxe-gold);
    margin-bottom: 1.5rem;
}

.trust-item h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.trust-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Who We Serve Section */
.who-we-serve {
    background: var(--shadow-plum);
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.serve-item {
    background: var(--deep-emerald);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--luxe-gold);
    transition: transform 0.3s ease;
}

.serve-item:hover {
    transform: translateY(-5px);
}

.serve-item h3 {
    font-family: var(--font-heading);
    color: var(--soft-aqua);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.serve-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Waitlist Section */
.waitlist {
    background: linear-gradient(135deg, var(--deep-teal), var(--crystal-pool-blue));
    text-align: center;
}

.waitlist-content {
    max-width: 700px;
    margin: 0 auto;
}

.waitlist-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.waitlist-benefits {
    margin: 2rem 0;
}

.benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.benefit i {
    color: var(--luxe-gold);
    font-size: 1.2rem;
}

.benefit strong {
    color: var(--luxe-gold);
}

/* Disclaimer Section */
.disclaimer {
    background: var(--rich-dark);
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.disclaimer-item {
    background: var(--shadow-plum);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--reflective-jade);
}

.disclaimer-item h3 {
    font-family: var(--font-heading);
    color: var(--luxe-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.disclaimer-item ul {
    list-style: none;
}

.disclaimer-item li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--soft-aqua);
    color: var(--text-secondary);
    line-height: 1.6;
}

.disclaimer-item strong {
    color: var(--text-primary);
}

/* Contact Section */
.contact {
    background: var(--shadow-plum);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    font-family: var(--font-heading);
    color: var(--luxe-gold);
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--deep-emerald);
    border-radius: 8px;
}

.contact-item strong {
    color: var(--soft-aqua);
}

.contact-form {
    background: var(--deep-emerald);
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-form h3 {
    font-family: var(--font-heading);
    color: var(--luxe-gold);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--reflective-jade);
    border-radius: 8px;
    background: var(--shadow-plum);
    color: var(--text-primary);
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--soft-aqua);
    box-shadow: 0 0 0 2px rgba(127, 191, 179, 0.2);
}

/* Footer */
.footer {
    background: var(--rich-dark);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--deep-teal);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info h3 {
    font-family: var(--font-heading);
    color: var(--soft-aqua);
    margin-bottom: 0.5rem;
}

.footer-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--luxe-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu {
        display: none; /* Simplified for mobile */
    }
    
    .offer-grid,
    .disclaimer-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .serve-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}



/* How to Use Section */
.how-to-use {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--deep-emerald) 0%, var(--deep-teal) 100%);
}

.how-to-content {
    max-width: 800px;
    margin: 0 auto;
}

.usage-scope h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--luxe-gold);
    margin-bottom: 1rem;
    text-align: center;
}

.usage-scope > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

.examples {
    background: rgba(27, 77, 62, 0.3);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid var(--crystal-pool-blue);
}

.examples h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--luxe-gold);
    margin-bottom: 1rem;
}

.examples ul {
    list-style: none;
    padding: 0;
}

.examples li {
    background: rgba(123, 191, 179, 0.1);
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--soft-aqua);
    font-style: italic;
    color: var(--text-primary);
}

.limitations {
    background: rgba(212, 165, 116, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--luxe-gold);
}

.limitations h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--luxe-gold);
    margin-bottom: 0.8rem;
}

.limitations p {
    color: var(--text-secondary);
    font-size: 1rem;
}

