/* Base Styles */
:root {
    --color-sage: #BEE3B0;
    --color-sage-dark: #94C983;
    --color-sage-light: #D6F0CD;
    --color-white: #F9F9F9;
    --color-graphite: #444;
    --color-beige: #FFF8F1;
    --color-text: #333;
    --color-shadow: rgba(0, 0, 0, 0.05);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-graphite);
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--color-sage);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--color-sage-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-graphite);
}

ul {
    list-style: none;
}

section {
    padding: 100px 0;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--color-shadow);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px var(--color-shadow);
}

.btn::after {
    content: "🌱";
    position: absolute;
    font-size: 0;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.btn:hover::after {
    font-size: 1.2rem;
    opacity: 0.9;
    transform: translate(calc(-50% + 50px), -50%);
}

.btn-primary {
    background-color: var(--color-sage);
    color: var(--color-graphite);
}

.btn-primary:hover {
    background-color: var(--color-sage-dark);
    color: var(--color-white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-sage);
    color: var(--color-graphite);
}

.btn-outline:hover {
    background-color: var(--color-sage);
    color: var(--color-graphite);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Header & Navigation */
header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(249, 249, 249, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px var(--color-shadow);
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.desktop-nav li a {
    color: var(--color-graphite);
    font-weight: 500;
    position: relative;
}

.desktop-nav li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-sage);
    transition: var(--transition);
}

.desktop-nav li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle, .mobile-nav {
    display: none;
}

/* Welcome Section */
.welcome-section {
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-white) 100%);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/hero.jpg");
    opacity: 0.5;
}

.welcome-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.welcome-content h1 {
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 2rem;
}

.email-form {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px var(--color-shadow);
    margin-top: 2rem;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.form-group input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0;
}

.welcome-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    max-width: 600px;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Why Vegetarian Section */
.why-veg-section {
    background-color: var(--color-beige);
    text-align: center;
}

.benefit-cards {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    flex: 1;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: 0 10px 30px var(--color-shadow);
    transition: var(--transition);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--color-sage);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--color-shadow);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* First Month Section */
.first-month-section {
    background-color: var(--color-white);
}

.weeks-tabs {
    margin-top: 50px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--color-shadow);
    overflow: hidden;
}

.tabs-navigation {
    display: flex;
    background-color: var(--color-sage-light);
}

.tab-btn {
    flex: 1;
    padding: 15px 10px;
    border: none;
    background-color: transparent;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-graphite);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--color-sage);
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    background-color: rgba(190, 227, 176, 0.3);
}

.tab-btn.active::after {
    width: 80%;
}

.tab-content {
    display: none;
    padding: 40px;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.week-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.daily-tips {
    grid-column: 1 / 3;
}

.daily-tips ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.daily-tips li {
    padding: 10px 15px;
    background-color: var(--color-sage-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.daily-tips li:hover {
    transform: translateX(5px);
    background-color: var(--color-sage);
}

.recipe-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--color-shadow);
    height: 100%;
}

.recipe-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recipe-card h4 {
    padding: 15px 15px 5px;
    font-size: 1.2rem;
}

.recipe-card p {
    padding: 0 15px 15px;
    font-size: 0.9rem;
}

.challenge-box {
    background-color: var(--color-beige);
    border-left: 4px solid var(--color-sage);
    padding: 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Real Stories Section */
.real-stories-section {
    background-color: var(--color-sage-light);
    text-align: center;
}

.testimonials {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    perspective: 1000px;
}

.testimonial {
    flex: 1;
    transition: var(--transition);
}

.polaroid {
    background-color: white;
    padding: 15px 15px 40px;
    box-shadow: 0 10px 20px var(--color-shadow);
    transform: rotate(-2deg);
    transition: var(--transition);
    max-width: 350px;
    margin: 0 auto;
    position: relative;
}

.testimonial:nth-child(2) .polaroid {
    transform: rotate(2deg);
}

.testimonial:nth-child(3) .polaroid {
    transform: rotate(-1deg);
}

.polaroid:hover {
    transform: rotate(0) scale(1.05);
    box-shadow: 0 15px 30px var(--color-shadow);
}

.polaroid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.quote {
    font-family: 'Caveat', cursive, var(--font-body);
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--color-graphite);
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    margin-top: 15px;
    color: var(--color-sage-dark);
}

/* FAQ Section */
.faq-section {
    background-color: var(--color-white);
}

.faq-accordion {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    margin-bottom: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--color-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--color-sage-light);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.accordion-icon {
    transition: var(--transition);
}

.faq-item.active .accordion-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 500px;
}

/* Guide Preview Section */
.guide-preview-section {
    background-color: var(--color-beige);
    text-align: center;
}

.guide-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.guide-cover {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.guide-cover img {
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px var(--color-shadow);
}

.guide-features {
    flex: 1;
    text-align: left;
}

.guide-features ul {
    margin-bottom: 30px;
}

.guide-features li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.guide-cta {
    margin-top: 40px;
}

/* Subscription Section */
.subscription-section {
    background: linear-gradient(135deg, #BEE3B0 0%, #D6F0CD 100%);
    text-align: center;
    padding: 80px 0;
}

.subscription-form {
    max-width: 600px;
    margin: 50px auto 0;
}

/* Footer */
footer {
    background-color: var(--color-graphite);
    color: white;
    padding: 80px 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 40px;
}

.footer-nav ul {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    color: white;
    font-weight: 500;
}

.footer-nav a:hover {
    color: var(--color-sage);
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.location-map h3 {
    color: white;
    margin-bottom: 20px;
}

.map-container {
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.copyright {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.copyright p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .welcome-image {
        width: 45%;
    }
    
    .guide-content {
        flex-direction: column;
    }
    
    .guide-cover {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
    }
    
    .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-white);
        padding: 80px 30px;
        z-index: 1001;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .mobile-nav ul {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .mobile-nav li a {
        font-size: 1.5rem;
        color: var(--color-graphite);
        font-weight: 500;
    }
    
    .mobile-close {
        position: absolute;
        top: 30px;
        right: 30px;
        cursor: pointer;
    }
    
    .welcome-section {
        padding: 150px 0 80px;
    }
    
    .welcome-image {
        display: none;
    }
    
    .welcome-content {
        max-width: 100%;
    }
    
    .benefit-cards {
        flex-direction: column;
    }
    
    .week-content {
        grid-template-columns: 1fr;
    }
    
    .daily-tips {
        grid-column: 1;
    }
    
    .testimonials {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-top, .footer-bottom {
        flex-direction: column;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-nav ul {
        justify-content: center;
    }
    
    .copyright {
        justify-content: center;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group input, .form-group button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .tabs-navigation {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 0 0 50%;
    }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Font import for polaroid captions */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&display=swap');