/* ========================================
   Global Styles & Variables
   ======================================== */

:root {
    /* Green & Pink Color Palette - matching Mycelia logo */
    --primary-green: #2D7A5F;
    --secondary-green: #6B9D7F;
    --dark-green: #1B4D3E;
    --cream: #FFF8F0;
    --off-white: #FFFBF7;
    --primary-pink: #E84D8A;
    --secondary-pink: #FF69B4;
    --hot-pink: #F73D7B;
    --sage-green: #8FBC8F;
    --light-green: #A8D5A2;
    --yellow-accent: #FDB813;
    --dark-teal: #1E5945;
    --dark-text: #2C3E38;
    --light-text: #5A6C65;
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(45, 122, 95, 0.1);
    --shadow-md: 0 4px 16px rgba(45, 122, 95, 0.15);
    --shadow-lg: 0 8px 32px rgba(45, 122, 95, 0.2);
    
    /* Spacing */
    --section-padding: 80px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Navigation Bar
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 251, 247, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Ensure nav-brand stays left aligned */
.navbar .nav-brand {
    margin-right: auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 50px;
    width: auto;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-pink);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--forest-green);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--forest-green);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(135deg, rgba(255, 248, 240, 0.75) 0%, rgba(255, 251, 247, 0.75) 50%, rgba(255, 248, 240, 0.75) 100%), 
                      url('assets/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 80px;
    overflow: hidden;
}

@media (min-width: 769px) {
    .hero {
        background-attachment: fixed;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(232, 77, 138, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(253, 184, 19, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(107, 68, 35, 0.05) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-location {
    font-size: 1.2rem;
    color: var(--primary-pink);
    margin-bottom: 30px;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--light-text);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* ========================================
   About & Benefits Section
   ======================================== */

.about {
    padding: var(--section-padding);
    background: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.header-line {
    width: 80px;
    height: 4px;
    background: var(--primary-pink);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

.about-intro {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-bottom: 50px;
    border-left: 5px solid var(--forest-green);
}

.about-intro h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-text);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 3px solid var(--secondary-pink);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary-green);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-card h4 {
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--light-text);
    line-height: 1.6;
}

.why-exotic {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: 50px;
    border-radius: 15px;
    color: white;
    box-shadow: var(--shadow-lg);
}

.why-exotic h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.exotic-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

.exotic-list li {
    padding: 18px 0;
    font-size: 1.2rem;
    line-height: 1.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.exotic-list li:last-child {
    border-bottom: none;
}

.check {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* ========================================
   Recipes Section
   ======================================== */

.recipes {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--off-white) 0%, var(--cream) 100%);
}

.recipe-category {
    margin-bottom: 60px;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 35px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-pink);
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 35px;
}

.recipe-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.recipe-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.1);
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--light-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-img span {
    font-size: 5rem;
    opacity: 0.5;
}

.recipe-content {
    padding: 25px;
}

.recipe-content h4 {
    font-size: 1.4rem;
    color: var(--dark-green);
    margin-bottom: 12px;
    font-weight: 600;
}

.recipe-content p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 15px;
}

.recipe-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: var(--light-text);
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.recipe-link {
    display: inline-block;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.recipe-link:hover {
    color: var(--dark-green);
    transform: translateX(5px);
}

.coming-soon-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--sage-green);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ========================================
   Product Gallery
   ======================================== */

.product-gallery {
    margin: 50px 0;
    text-align: center;
}

.product-gallery h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ========================================
   Contact Section
   ======================================== */

.contact {
    padding: var(--section-padding);
    background: var(--off-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 50px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--light-text);
    margin-bottom: 30px;
    line-height: 1.8;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    margin-top: 20px;
}

.instagram-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.instagram-icon {
    width: 28px;
    height: 28px;
}

.phone-number {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #F0FFF4 0%, #E1FFE4 100%);
    border-radius: 10px;
    text-align: center;
    font-size: 1.3rem;
    border: 2px solid var(--primary-green);
}

.qr-code {
    text-align: center;
}

.qr-code h4 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.qr-row {
    display: flex;           /* This aligns items in a row */
    justify-content: center; /* Centers the columns horizontally */
    align-items: flex-start; /* Aligns them to the top */
    gap: 40px;               /* Adds space between the two columns */
    padding: 20px;
}

.qr-item {
    display: flex;           /* Flexbox for vertical alignment inside the column */
    flex-direction: column;  /* Stacks the Image on top of the Label */
    align-items: center;     /* Centers content horizontally */
    text-align: center;
}

.qr-image {
    width: 150px;            /* Set a fixed or max width for consistency */
    height: auto;
    display: block;          /* Removes bottom spacing artifacts */
}

.qr-label {
    margin-top: 10px;        /* Spacing between image and text */
    font-weight: bold;
}

.qr-container {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: inline-block;
    margin-bottom: 15px;
}

.qr-image {
    width: 200px;
    height: 200px;
    display: block;
}

.qr-instruction {
    color: var(--light-text);
    font-size: 0.95rem;
}

.location-qr {
    text-align: center;
    margin-top: 30px;
}

.location-qr h4 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.business-info {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--light-green) 100%);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.business-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
}

.business-info p {
    color: white;
    font-size: 1.1rem;
    margin: 5px 0;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--dark-teal);
    color: var(--cream);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--cream);
}

.footer-brand p {
    line-height: 1.8;
}

.footer-links h5,
.footer-contact h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--cream);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #E0D5C7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--light-green);
}

.footer-contact p {
    color: #E0D5C7;
    padding: 5px 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #E0D5C7;
}

/* ========================================
   Animations
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet Portrait and Landscape */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 14px 35px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2.3rem;
    }
    
    .recipe-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .recipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Landscape and Portrait */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar .container {
        padding: 12px 15px;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .logo {
        height: 40px;
        border-radius: 2px;
    }
    
    .brand-name {
        font-size: 1.2rem;
        border-radius: 2px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--off-white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transition: right 0.4s ease;
        gap: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin-bottom: 20px;
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #E0D5C7;
    }
    
    .hero {
        min-height: 80vh;
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-location {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
    
    .scroll-indicator {
        bottom: 15px;
    }
    
    .about-intro,
    .why-exotic {
        padding: 25px 20px;
    }
    
    .about-intro h3 {
        font-size: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .recipe-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .contact-content {
        gap: 30px;
    }
    
    .whatsapp-qr img {
        width: 180px;
        height: 180px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .category-title {
        font-size: 1.4rem;
    }
    
    .benefit-card h4 {
        font-size: 1.1rem;
    }
    
    .recipe-card h4 {
        font-size: 1.2rem;
    }
    
    .whatsapp-button {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .instagram-button {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .nav-menu {
        width: 85%;
        padding: 70px 20px 20px;
    }
    
    .logo {
        height: 35px;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Recipe Modal Popup
   ======================================== */

.recipe-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--off-white);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
    position: relative;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: sticky;
    top: 0;
    right: 0;
    float: right;
    font-size: 35px;
    font-weight: bold;
    color: var(--primary-pink);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 15px;
    box-shadow: var(--shadow-md);
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--primary-pink);
    color: white;
    transform: rotate(90deg);
}

.recipe-detail {
    padding: 30px 40px 40px 40px;
}

.recipe-detail-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
}

.recipe-detail h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.recipe-info {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}

.recipe-info span {
    font-size: 1rem;
    color: var(--dark-text);
    font-weight: 500;
}

.recipe-section {
    margin-bottom: 30px;
}

.recipe-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-pink);
    margin-bottom: 15px;
    border-bottom: 3px solid var(--primary-green);
    padding-bottom: 10px;
}

.ingredients-list {
    list-style: none;
    padding: 0;
}

.ingredients-list li {
    padding: 12px 15px;
    background: white;
    margin-bottom: 8px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-pink);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.ingredients-list li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.instructions-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.instructions-list li {
    counter-increment: step-counter;
    padding: 15px 15px 15px 50px;
    background: white;
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    position: relative;
    line-height: 1.6;
}

.instructions-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-green);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .recipe-detail {
        padding: 20px;
    }
    
    .recipe-detail h2 {
        font-size: 2rem;
    }
    
    .recipe-detail-image {
        height: 200px;
    }
    
    .recipe-info {
        gap: 15px;
    }
}

