/* Elevated Wellness Retreat Design */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

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

:root {
    /* Tofu Spread Inspired Palette */
    --tofu-cream: #F5F1E8;
    --soft-beige: #E8E3D6;
    --warm-soy: #D4C5A9;
    --rich-brown: #8B7355;
    --ivory: #FFFEF9;
    --soft-white: #FEFDFB;
    --muted-tan: #C9B99A;
    --text-charcoal: #3A3A3A;
    --text-soft: #6B6B6B;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.8;
    color: var(--text-charcoal);
    background: var(--ivory);
    overflow-x: hidden;
    font-weight: 300;
}

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

/* Minimal Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    padding: 16px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--rich-brown);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-charcoal);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--warm-soy);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--warm-soy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Bold Hero Section */
.hero {
    position: relative;
    height: 85vh;
    margin-top: 64px;
    background: var(--tofu-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/hero-toast-spread.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

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

.hero h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 92px;
    font-weight: 300;
    color: var(--rich-brown);
    margin-bottom: 32px;
    letter-spacing: 4px;
    line-height: 1.2;
    text-transform: lowercase;
}

.hero p {
    font-size: 18px;
    color: var(--text-soft);
    margin-bottom: 56px;
    font-weight: 300;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
    line-height: 2;
}

.btn-hero {
    display: inline-block;
    padding: 18px 52px;
    background: var(--warm-soy);
    color: var(--soft-white);
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    border-radius: 2px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-hero:hover {
    background: var(--rich-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Feature Strip */
.feature-strip {
    background: var(--rich-brown);
    padding: 32px 0;
}

.feature-strip .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.feature-item {
    text-align: center;
}

.feature-text {
    font-size: 11px;
    font-weight: 400;
    color: var(--soft-beige);
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

/* Products Section */
.products {
    padding: 140px 0;
    background: var(--soft-white);
}

.products h2 {
    font-family: 'Quicksand', sans-serif;
    text-align: center;
    font-size: 56px;
    font-weight: 300;
    color: var(--rich-brown);
    margin-bottom: 88px;
    letter-spacing: 3px;
    text-transform: lowercase;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.product-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--soft-beige);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    border-color: var(--warm-soy);
}

.product-image {
    width: 100%;
    height: 340px;
    overflow: hidden;
    background: white;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--rich-brown);
    margin: 32px 32px 12px;
    letter-spacing: 1px;
}

.product-price {
    font-size: 20px;
    font-weight: 400;
    color: var(--warm-terracotta);
    margin: 0 32px 16px;
    letter-spacing: 0.5px;
}

.product-desc {
    font-size: 14px;
    color: var(--text-soft);
    margin: 0 32px 32px;
    line-height: 1.9;
    font-weight: 300;
}

.btn-product {
    display: block;
    margin: 0 32px 32px;
    padding: 14px;
    background: transparent;
    color: var(--rich-brown);
    text-align: center;
    text-decoration: none;
    font-weight: 400;
    border-radius: 0;
    border: 1px solid var(--warm-soy);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
}

.btn-product:hover {
    background: var(--warm-soy);
    color: var(--soft-white);
}

/* About Section */
.about-section {
    background: var(--tofu-cream);
    padding: 140px 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 0;
}

.about-text h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 52px;
    font-weight: 300;
    color: var(--rich-brown);
    margin-bottom: 40px;
    letter-spacing: 2px;
    line-height: 1.3;
}

.about-text p {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 2;
    margin-bottom: 28px;
    font-weight: 300;
}

/* Lifestyle Section */
.lifestyle-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.lifestyle-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.lifestyle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lifestyle-text {
    position: relative;
    z-index: 2;
    max-width: 560px;
    margin-left: auto;
    margin-right: 80px;
    background: rgba(255, 255, 255, 0.95);
    padding: 72px;
    border-radius: 0;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.lifestyle-text h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 44px;
    font-weight: 400;
    color: var(--rich-brown);
    margin-bottom: 28px;
    letter-spacing: 1px;
    line-height: 1.3;
}

.lifestyle-text p {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 2;
    font-weight: 300;
}

/* Recipes Section */
.recipes {
    padding: 140px 0;
    background: var(--soft-white);
}

.recipes h2 {
    font-family: 'Quicksand', sans-serif;
    text-align: center;
    font-size: 56px;
    font-weight: 300;
    color: var(--rich-brown);
    margin-bottom: 88px;
    letter-spacing: 3px;
    text-transform: lowercase;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.recipe-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--soft-beige);
}

.recipe-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    border-color: var(--warm-soy);
}

.recipe-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.recipe-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--rich-brown);
    margin: 28px 28px 16px;
    letter-spacing: 1px;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.recipe-card p {
    font-size: 14px;
    color: var(--text-soft);
    margin: 0 28px 32px;
    line-height: 1.9;
    font-weight: 300;
    min-height: 140px;
}

/* CTA Section */
.cta-section {
    background: var(--warm-soy);
    padding: 140px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 56px;
    font-weight: 300;
    color: var(--soft-white);
    margin-bottom: 24px;
    letter-spacing: 3px;
    text-transform: lowercase;
}

.cta-section p {
    font-size: 16px;
    color: var(--soft-white);
    margin-bottom: 56px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.btn-cta {
    display: inline-block;
    padding: 18px 52px;
    background: transparent;
    color: var(--soft-white);
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    border-radius: 0;
    border: 1px solid var(--soft-white);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-cta:hover {
    background: var(--soft-white);
    color: var(--warm-soy);
    transform: translateY(-2px);
}

/* Order Section */
.order-section {
    padding: 140px 0;
    background: var(--tofu-cream);
}

.order-section h2 {
    font-family: 'Quicksand', sans-serif;
    text-align: center;
    font-size: 56px;
    font-weight: 300;
    color: var(--rich-brown);
    margin-bottom: 88px;
    letter-spacing: 3px;
    text-transform: lowercase;
}

.order-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.order-card {
    background: white;
    padding: 64px 48px;
    border-radius: 0;
    text-align: center;
    border: 1px solid var(--soft-beige);
    transition: all 0.4s ease;
    position: relative;
    box-shadow: none;
}

.order-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    border-color: var(--warm-soy);
}

.order-card.featured {
    background: var(--warm-soy);
    border: 1px solid var(--warm-soy);
}

.order-card.featured h3,
.order-card.featured p {
    color: white;
}

.order-card.featured .order-price {
    color: white;
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--warm-terracotta);
    color: var(--soft-white);
    padding: 8px 24px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.order-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--rich-brown);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.order-price {
    font-size: 38px;
    font-weight: 300;
    color: var(--warm-terracotta);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.order-card p {
    font-size: 14px;
    color: var(--text-soft);
    margin-bottom: 36px;
    font-weight: 300;
    line-height: 1.8;
}

.btn-order {
    display: inline-block;
    padding: 14px 48px;
    background: transparent;
    color: var(--rich-brown);
    text-decoration: none;
    font-weight: 400;
    border-radius: 0;
    border: 1px solid var(--warm-soy);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
}

.btn-order:hover {
    background: var(--warm-soy);
    color: var(--soft-white);
}

.order-card.featured .btn-order {
    background: transparent;
    color: var(--soft-white);
    border-color: var(--soft-white);
}

.order-card.featured .btn-order:hover {
    background: var(--soft-white);
    color: var(--warm-soy);
}

/* Footer */
.footer {
    background: var(--rich-brown);
    color: var(--soft-beige);
    padding: 100px 0 48px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--soft-beige);
    text-transform: lowercase;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 14px;
    color: rgba(232, 220, 196, 0.7);
    line-height: 2;
    font-weight: 300;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(232, 220, 196, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--warm-soy);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(232, 220, 196, 0.5);
    font-weight: 300;
    letter-spacing: 1px;
}

/* About Page Specific Styles */
.about-hero::before {
    background-image: url('images/about-bg.jpg');
    opacity: 0.1;
}

/* Philosophy Section */
.philosophy-section {
    padding: 140px 0;
    background: var(--soft-white);
}

.philosophy-content h2 {
    font-family: 'Quicksand', sans-serif;
    text-align: center;
    font-size: 56px;
    font-weight: 300;
    color: var(--rich-brown);
    margin-bottom: 88px;
    letter-spacing: 3px;
    text-transform: lowercase;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
}

.philosophy-card {
    text-align: center;
    padding: 48px 32px;
}

.philosophy-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--rich-brown);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.philosophy-card p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 2;
    font-weight: 300;
}

/* Process Section */
.process-section {
    padding: 140px 0;
    background: var(--tofu-cream);
}

.process-section .about-content {
    grid-template-columns: 1fr 1fr;
}

/* Values Section */
.values-section {
    padding: 140px 0;
    background: var(--soft-white);
}

.values-section h2 {
    font-family: 'Quicksand', sans-serif;
    text-align: center;
    font-size: 56px;
    font-weight: 300;
    color: var(--rich-brown);
    margin-bottom: 88px;
    letter-spacing: 3px;
    text-transform: lowercase;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 48px;
}

.value-item {
    text-align: center;
    padding: 32px;
}

.value-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 72px;
    font-weight: 300;
    color: var(--warm-soy);
    opacity: 0.3;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.value-item h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--rich-brown);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.value-item p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 2;
    font-weight: 300;
}

/* Behind the Scenes */
.behind-scenes {
    background: var(--tofu-cream);
}

/* Timeline Section */
.timeline-section {
    padding: 140px 0;
    background: var(--tofu-cream);
}

.timeline-section h2 {
    font-family: 'Quicksand', sans-serif;
    text-align: center;
    font-size: 56px;
    font-weight: 300;
    color: var(--rich-brown);
    margin-bottom: 88px;
    letter-spacing: 3px;
    text-transform: lowercase;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--warm-soy);
    opacity: 0.3;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 48px;
    margin-bottom: 64px;
    position: relative;
}

.timeline-year {
    font-family: 'Quicksand', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--warm-soy);
    text-align: right;
    padding-right: 20px;
    letter-spacing: 1px;
}

.timeline-content {
    padding-left: 48px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--warm-soy);
    border: 3px solid var(--ivory);
    box-shadow: 0 0 0 3px var(--sage-green);
}

.timeline-content h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--rich-brown);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 2;
    font-weight: 300;
}

/* Team Section */
.team-section {
    padding: 140px 0;
    background: var(--soft-white);
}

.team-section h2 {
    font-family: 'Quicksand', sans-serif;
    text-align: center;
    font-size: 56px;
    font-weight: 300;
    color: var(--rich-brown);
    margin-bottom: 88px;
    letter-spacing: 3px;
    text-transform: lowercase;
}

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

.team-card {
    text-align: center;
    background: white;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--soft-beige);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    border-color: var(--warm-soy);
}

.team-image {
    width: 100%;
    height: 360px;
    overflow: hidden;
    background: var(--ivory);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--rich-brown);
    margin: 32px 32px 8px;
    letter-spacing: 1px;
}

.team-role {
    font-size: 13px;
    color: var(--warm-soy);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    margin: 0 32px 24px;
}

.team-card p:not(.team-role) {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.9;
    margin: 0 32px 32px;
    font-weight: 300;
}

/* Commitment Section */
.commitment-section {
    padding: 140px 0;
    background: var(--warm-soy);
    text-align: center;
}

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

.commitment-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 56px;
    font-weight: 300;
    color: var(--soft-white);
    margin-bottom: 40px;
    letter-spacing: 3px;
    text-transform: lowercase;
}

.commitment-section p {
    font-size: 16px;
    color: var(--soft-white);
    line-height: 2;
    margin-bottom: 28px;
    font-weight: 300;
    opacity: 0.95;
}

.commitment-section .btn-hero {
    margin-top: 32px;
    background: var(--soft-white);
    color: var(--warm-soy);
}

.commitment-section .btn-hero:hover {
    background: var(--deep-earth);
    color: var(--soft-white);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 68px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 40px 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 56px;
    }

    .hero p {
        font-size: 16px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .lifestyle-text {
        margin: 24px;
        padding: 40px;
    }

    .lifestyle-text h2 {
        font-size: 36px;
    }

    .products h2,
    .recipes h2,
    .order-section h2,
    .cta-section h2,
    .philosophy-content h2,
    .values-section h2,
    .timeline-section h2,
    .team-section h2,
    .commitment-section h2 {
        font-size: 42px;
    }

    .timeline::before {
        left: 80px;
    }

    .timeline-item {
        grid-template-columns: 70px 1fr;
        gap: 32px;
    }

    .timeline-year {
        font-size: 24px;
    }

    .timeline-content {
        padding-left: 32px;
    }

    .timeline-content::before {
        left: -22px;
    }

    .process-section .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero {
        height: 70vh;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 15px;
    }

    .feature-strip .container {
        flex-direction: column;
    }

    .product-grid,
    .recipe-grid,
    .order-options {
        grid-template-columns: 1fr;
    }

    .lifestyle-text {
        margin: 16px;
        padding: 32px;
    }

    .about-text h2,
    .lifestyle-text h2 {
        font-size: 30px;
    }

    .products h2,
    .recipes h2,
    .order-section h2,
    .cta-section h2,
    .philosophy-content h2,
    .values-section h2,
    .timeline-section h2,
    .team-section h2,
    .commitment-section h2 {
        font-size: 34px;
    }

    .timeline::before {
        left: 50px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .timeline-year {
        font-size: 20px;
        text-align: left;
        padding-right: 0;
        padding-left: 24px;
    }

    .timeline-content {
        padding-left: 24px;
    }

    .timeline-content::before {
        left: -18px;
        width: 10px;
        height: 10px;
    }

    .philosophy-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .commitment-section {
        padding: 100px 0;
    }
}
