@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500&display=swap');

:root {
    --primary: #F8F3EC;
    --secondary: #FFFDF9;
    --accent: #C9A66B;
    --accent-hover: #b5925a;
    --secondary-accent: #D89A6A;
    --text: #2B2B2B;
    --text-light: #5A5A5A;
    --heading-font: 'Playfair Display', 'Cormorant Garamond', serif;
    --body-font: 'Inter', 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 4rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 166, 107, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: #fff;
}

.section-title {
    font-size: 3rem;
    color: var(--text);
    margin-bottom: 3rem;
    text-align: center;
}

/* Header/Nav */
header {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(20, 20, 20, 0.85), rgba(20, 20, 20, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #fff;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

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

/* The Experience */
.experience {
    padding: 8rem 0;
    background-color: var(--secondary);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.experience-img img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Workshops */
.workshops {
    padding: 8rem 0;
    background-color: var(--primary);
}

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

.workshop-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.workshop-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.workshop-info {
    padding: 2rem;
}

.workshop-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.workshop-info p {
    color: var(--text-light);
}

/* How It Works */
.how-it-works {
    padding: 8rem 0;
    background-color: var(--secondary);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--accent);
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border: 2px solid var(--accent);
    color: var(--accent);
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.timeline-step:hover .step-number {
    background-color: var(--accent);
    color: #fff;
}

.timeline-step h3 {
    font-size: 1.25rem;
}

.timeline-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Pricing */
.pricing {
    padding: 8rem 0;
    background-color: var(--primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.pricing-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: var(--transition);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--accent);
    box-shadow: 0 20px 50px rgba(201, 166, 107, 0.2);
}

.pricing-card.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.pricing-card:hover {
    transform: translateY(-10px);
}
.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.price {
    font-size: 4rem;
    font-family: var(--heading-font);
    color: var(--text);
    margin: 1.5rem 0;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--secondary-accent);
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    padding: 8rem 0;
    background-color: var(--secondary);
}

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

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.1rem;
}

/* FAQ */
.faq {
    padding: 8rem 0;
    background-color: var(--primary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-family: var(--heading-font);
    font-size: 1.25rem;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 500px;
}

.faq-item.active .faq-question {
    color: var(--accent);
}

/* CTA Section */
.cta {
    padding: 10rem 0;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    color: #fff;
}

.cta::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(43, 43, 43, 0.7), rgba(43, 43, 43, 0.5));
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: var(--text);
    color: #fff;
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .experience-grid, .pricing-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .timeline {
        grid-template-columns: 1fr 1fr;
        gap: 4rem 2rem;
    }
    .timeline::before { display: none; }
    .hero h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .timeline { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    header .container { flex-direction: column; gap: 1rem; }
    nav ul { gap: 1rem; }
    .hero-buttons { flex-direction: column; }
}
