
:root {
    --color-plum: #1C0F2A;
    --color-gold: #C8A85B;
    --color-cream: #F8F6F3;
    --color-charcoal: #2B2B2B;
    --color-teal: #4AA6A6;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--color-plum);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(28, 15, 42, 0.8), rgba(28, 15, 42, 0.8)), 
                url('https://huggingface.co/spaces/evolveweightandwellness/brand-logo-wizardry/resolve/main/images/jeremy-bishop-EwKXn5CapA4-unsplash.jpg');
background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}
.subheadline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trust-line {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 2rem;
}
/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-primary {
    background-color: var(--color-teal);
    color: white;
    text-align: center;
    line-height: 1.4;
    padding: 1.2rem 1.5rem;
}

.btn-text {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0.5rem;
    background-color: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}
.btn-primary:hover {
    background-color: var(--color-gold);
}

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

.btn-secondary:hover {
    background-color: var(--color-teal);
    color: white;
}

/* Mission Section */
.mission {
    padding: 4rem 2rem;
    text-align: center;
    background-color: white;
}

.mission p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.divider {
    height: 4px;
    width: 100px;
    background-color: var(--color-gold);
    margin: 2rem auto;
    border-radius: 2px;
}
/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-top: 4px solid var(--color-teal);
}

.step h3 {
    color: var(--color-teal);
    margin-top: 0;
}
/* Benefits Section */
.benefits {
    padding: 5rem 2rem;
    background-color: white;
}

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

.benefit-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}
.benefit-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}
.benefit-card:nth-child(2) .benefit-image {
    background-position: center 20%;
}
.benefit-content {
    padding: 1.5rem;
    background: white;
}

.benefit-content h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: var(--color-plum);
}

.benefit-content p {
    font-size: 0.95rem;
    color: var(--color-charcoal);
    margin-bottom: 0;
}

/* Programs Section */
.programs {
    padding: 4rem 2rem;
    background-color: var(--color-cream);
}

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

.card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}
/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background-color: white;
    text-align: center;
}

.faq-section h2 {
    margin-bottom: 2.5rem;
}

.cta-container {
    margin-top: 3rem;
}
/* Smooth transitions for dark mode toggle */
html {
    transition: background-color 0.3s ease;
}
/* Custom range input styling */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--color-primary-500);
    cursor: pointer;
    border-radius: 50%;
}

input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--color-primary-500);
    cursor: pointer;
    border-radius: 50%;
}
/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    background-color: var(--color-cream);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}