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

:root {
    --tomato-red: #DC143C;
    --herbal-green: #228B22;
    --creamy-beige: #F5E6CA;
    --spice-orange: #FF8C00;
    --charcoal: #36454F;
    --white: #ffffff;
    --light-gray: #f8f8f8;
    --font-elegant: 'Cormorant', serif;
    --font-readable: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-readable);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--creamy-beige);
    background-image: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpattern id="wood" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"%3E%3Crect fill="%23F5E6CA" width="100" height="100"/%3E%3Cpath d="M0 0 L100 100 M100 0 L0 100" stroke="%23E8D4B0" stroke-width="0.5" opacity="0.1"/%3E%3C/pattern%3E%3Crect fill="url(%23wood)" width="100" height="100"/%3E%3C/svg%3E');
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-elegant);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-family: var(--font-readable);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--tomato-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #B8102F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.btn-secondary {
    background-color: var(--herbal-green);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #1A6B1A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 139, 34, 0.3);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--charcoal);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.5s ease;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo a {
    font-family: var(--font-elegant);
    font-size: 2rem;
    font-weight: 700;
    color: var(--tomato-red);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: var(--charcoal);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--tomato-red);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--tomato-red);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--charcoal);
}

.dropdown-menu a:hover {
    background-color: var(--creamy-beige);
    color: var(--tomato-red);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--charcoal);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1543353071-10c8ba85a904?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.8), rgba(34, 139, 34, 0.7));
}

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

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 4rem;
}

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 15px;
    color: var(--tomato-red);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--charcoal);
    opacity: 0.8;
}

/* Featured Recipes Section */
.featured-recipes {
    padding: 60px 0;
    background-color: var(--white);
}

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

.recipe-card {
    background-color: var(--creamy-beige);
    background-image: url('data:image/svg+xml,%3Csvg width="200" height="200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /%3E%3CfeColorMatrix type="saturate" values="0"/%3E%3C/filter%3E%3Crect width="200" height="200" filter="url(%23noise)" opacity="0.05"/%3E%3C/svg%3E');
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.recipe-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.recipe-card:hover .recipe-image img {
    transform: scale(1.1);
}

.recipe-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--spice-orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.recipe-content {
    padding: 25px;
}

.recipe-content h3 {
    margin-bottom: 15px;
    color: var(--charcoal);
}

.recipe-content p {
    margin-bottom: 20px;
    color: var(--charcoal);
    opacity: 0.8;
}

.recipe-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(54, 69, 79, 0.2);
}

.recipe-meta .time {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--charcoal);
    font-size: 0.9rem;
}

.icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.difficulty {
    background-color: var(--herbal-green);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Categories Section */
.categories-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: var(--tomato-red);
    color: var(--white);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--tomato-red);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    color: var(--white);
    transform: scale(1.1);
}

.category-card h3 {
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.category-card:hover h3,
.category-card:hover p {
    color: var(--white);
}

/* Why Choose Us */
.why-choose-us {
    padding: 60px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--spice-orange);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--tomato-red);
}

/* Recipe Tips */
.recipe-tips {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.tips-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tips-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tips-text h2 {
    margin-bottom: 30px;
    color: var(--tomato-red);
}

.tip-item {
    margin-bottom: 25px;
}

.tip-item h4 {
    color: var(--herbal-green);
    margin-bottom: 10px;
}

/* Seasonal Highlights */
.seasonal-highlights {
    padding: 60px 0;
    background-color: var(--white);
}

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

.seasonal-card {
    position: relative;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.seasonal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.seasonal-card:hover img {
    transform: scale(1.1);
}

.seasonal-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 30px;
    transition: all 0.3s ease;
}

.seasonal-card:hover .seasonal-overlay {
    background: linear-gradient(to top, var(--tomato-red), transparent);
}

.seasonal-overlay h3 {
    color: var(--white);
    margin-bottom: 10px;
}

/* Interactive Tools */
.interactive-tools {
    padding: 60px 0;
    background-color: var(--light-gray);
}

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

.tool-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tool-card h3 {
    margin-bottom: 20px;
    color: var(--tomato-red);
    text-align: center;
}

.timer-controls,
.portion-calculator,
.converter {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timer-controls input,
.portion-calculator input,
.converter input,
.converter select {
    padding: 10px;
    border: 2px solid var(--creamy-beige);
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-readable);
}

.timer-display {
    font-family: var(--font-elegant);
    font-size: 3rem;
    text-align: center;
    color: var(--tomato-red);
    margin-top: 20px;
    font-weight: 700;
}

.result {
    background-color: var(--creamy-beige);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    color: var(--charcoal);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background-color: var(--white);
}

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

.testimonial-card {
    background-color: var(--creamy-beige);
    background-image: url('data:image/svg+xml,%3Csvg width="200" height="200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /%3E%3CfeColorMatrix type="saturate" values="0"/%3E%3C/filter%3E%3Crect width="200" height="200" filter="url(%23noise)" opacity="0.05"/%3E%3C/svg%3E');
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-rating {
    color: var(--spice-orange);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--tomato-red);
    font-size: 1.1rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--tomato-red), var(--spice-orange));
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-readable);
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

.newsletter-note a {
    color: var(--white);
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    color: var(--tomato-red);
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--tomato-red);
    margin-bottom: 10px;
}

.contact-form {
    background-color: var(--creamy-beige);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--white);
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-readable);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--tomato-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Latest Articles */
.latest-articles {
    padding: 60px 0;
    background-color: var(--light-gray);
}

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

.article-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

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

.article-content {
    padding: 25px;
}

.article-tag {
    display: inline-block;
    background-color: var(--spice-orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.article-content h3 {
    margin-bottom: 15px;
    color: var(--charcoal);
}

/* Footer */
.footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-address {
    margin-top: 15px;
}

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

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

.footer-section a {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--tomato-red);
    padding-left: 5px;
}

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

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.fade-in[data-delay="100"] {
    animation-delay: 0.1s;
}

.fade-in[data-delay="200"] {
    animation-delay: 0.2s;
}

.fade-in[data-delay="300"] {
    animation-delay: 0.3s;
}

.fade-in[data-delay="400"] {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero {
        height: 500px;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .main-nav.active {
        max-height: 500px;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .main-nav ul li {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid var(--creamy-beige);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }
    
    .recipe-grid,
    .categories-grid,
    .features-grid,
    .tools-grid,
    .testimonials-grid,
    .seasonal-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 360px) and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .recipe-card,
    .category-card,
    .feature-card,
    .tool-card {
        padding: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .recipe-grid,
    .categories-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Recipe Page Styles */
.recipe-hero {
    padding: 60px 0;
    background-color: var(--white);
}

.recipe-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.recipe-breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--charcoal);
    opacity: 0.7;
}

.recipe-breadcrumb a {
    color: var(--tomato-red);
}

.recipe-hero h1 {
    margin-bottom: 20px;
    font-size: 3rem;
}

.recipe-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--charcoal);
}

.recipe-meta-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.meta-item {
    display: flex;
    gap: 15px;
    align-items: center;
    background-color: var(--creamy-beige);
    padding: 15px;
    border-radius: 8px;
}

.meta-item .icon {
    width: 30px;
    height: 30px;
    color: var(--tomato-red);
    flex-shrink: 0;
}

.meta-item div {
    display: flex;
    flex-direction: column;
}

.meta-item strong {
    font-size: 0.9rem;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.meta-item span {
    font-size: 1rem;
    color: var(--charcoal);
}

.servings-adjuster {
    display: flex;
    align-items: center;
    gap: 10px;
}

.servings-adjuster button {
    width: 30px;
    height: 30px;
    border: none;
    background-color: var(--tomato-red);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.servings-adjuster button:hover {
    background-color: var(--herbal-green);
    transform: scale(1.1);
}

.recipe-hero-image {
    position: relative;
}

.recipe-hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.recipe-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--spice-orange);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.recipe-quick-info {
    padding: 40px 0;
    background-color: var(--light-gray);
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.quick-info-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.quick-info-card h4 {
    color: var(--tomato-red);
    margin-bottom: 10px;
    font-size: 1rem;
}

.quick-info-card p {
    font-weight: 600;
    color: var(--charcoal);
}

.recipe-ingredients,
.instructions-section {
    padding: 60px 0;
}

.recipe-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.ingredients-section h2,
.instructions-section h2 {
    color: var(--tomato-red);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--spice-orange);
}

.ingredients-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ingredient-item {
    background-color: var(--creamy-beige);
    background-image: url('data:image/svg+xml,%3Csvg width="200" height="200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /%3E%3CfeColorMatrix type="saturate" values="0"/%3E%3C/filter%3E%3Crect width="200" height="200" filter="url(%23noise)" opacity="0.05"/%3E%3C/svg%3E');
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--herbal-green);
    transition: all 0.3s ease;
}

.ingredient-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.ingredient-item input[type="checkbox"] {
    margin-right: 15px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.ingredient-item label {
    cursor: pointer;
    font-size: 1.05rem;
    line-height: 1.6;
}

.ingredient-amount {
    font-weight: 700;
    color: var(--tomato-red);
}

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.instruction-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--tomato-red), var(--spice-orange));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: var(--charcoal);
    margin-bottom: 10px;
}

.step-content p {
    line-height: 1.8;
    color: var(--charcoal);
}

.chefs-tips {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.tips-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tips-box h3 {
    color: var(--tomato-red);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tip {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.tip-icon {
    width: 40px;
    height: 40px;
    color: var(--herbal-green);
    flex-shrink: 0;
}

.tip p {
    line-height: 1.8;
}

.nutrition-info {
    padding: 60px 0;
    background-color: var(--white);
}

.nutrition-box {
    background-color: var(--creamy-beige);
    padding: 40px;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.nutrition-box h3 {
    color: var(--tomato-red);
    text-align: center;
    margin-bottom: 10px;
    font-size: 2rem;
}

.nutrition-note {
    text-align: center;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--charcoal);
    opacity: 0.8;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.nutrition-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nutrition-item strong {
    font-size: 0.9rem;
    color: var(--charcoal);
}

.nutrition-item span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--tomato-red);
}

.recipe-variations {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.variations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.variation-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.variation-card:hover {
    transform: translateY(-5px);
}

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

.variation-card h4 {
    color: var(--tomato-red);
    padding: 20px 20px 10px;
}

.variation-card p {
    padding: 0 20px 20px;
    line-height: 1.6;
}

.recipe-notes-section {
    padding: 60px 0;
    background-color: var(--white);
}

.notes-box {
    background-color: var(--creamy-beige);
    padding: 40px;
    border-radius: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.notes-box h3 {
    color: var(--tomato-red);
    margin-bottom: 15px;
}

.notes-box p {
    margin-bottom: 20px;
    color: var(--charcoal);
    opacity: 0.8;
}

.notes-box textarea {
    width: 100%;
    min-height: 150px;
    padding: 20px;
    border: 2px solid var(--white);
    border-radius: 8px;
    font-family: var(--font-readable);
    font-size: 1rem;
    resize: vertical;
}

.notes-box textarea:focus {
    outline: none;
    border-color: var(--tomato-red);
}

.storage-tips {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.storage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.storage-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.storage-card h4 {
    color: var(--herbal-green);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.storage-card p {
    line-height: 1.8;
}

.pairing-suggestions {
    padding: 60px 0;
    background-color: var(--white);
}

.pairing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pairing-card {
    background-color: var(--creamy-beige);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.pairing-card:hover {
    transform: translateY(-5px);
}

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

.pairing-card h4 {
    color: var(--tomato-red);
    padding: 20px 20px 10px;
}

.pairing-card p {
    padding: 0 20px 20px;
    font-style: italic;
}

.related-recipes {
    padding: 60px 0;
    background-color: var(--light-gray);
}

/* Recipe Page Responsive */
@media (max-width: 768px) {
    .recipe-hero-content {
        grid-template-columns: 1fr;
    }
    
    .recipe-meta-info {
        grid-template-columns: 1fr;
    }
    
    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .recipe-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .nutrition-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .variations-grid,
    .storage-grid,
    .pairing-grid {
        grid-template-columns: 1fr;
    }
}

/* About and Legal Pages Styles */
.page-hero {
    background: linear-gradient(135deg, var(--tomato-red), var(--spice-orange));
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.page-hero-content h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 3.5rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.content-section {
    padding: 80px 0;
    background-color: var(--white);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    color: var(--tomato-red);
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.content-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.content-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.mission-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.mission-content h2 {
    text-align: center;
    color: var(--tomato-red);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.mission-lead {
    text-align: center;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
    color: var(--charcoal);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mission-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.mission-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    color: var(--spice-orange);
}

.mission-icon svg {
    width: 100%;
    height: 100%;
}

.mission-card h3 {
    color: var(--tomato-red);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.mission-card p {
    line-height: 1.8;
}

.values-section {
    padding: 80px 0;
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-card {
    background-color: var(--creamy-beige);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--herbal-green);
}

.value-card h3 {
    color: var(--tomato-red);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.value-card p {
    line-height: 1.8;
}

.offers-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.offer-card h4 {
    color: var(--tomato-red);
    padding: 25px 25px 15px;
    font-size: 1.3rem;
}

.offer-card p {
    padding: 0 25px 25px;
    line-height: 1.8;
}

.commitment-section {
    padding: 80px 0;
    background-color: var(--white);
}

.commitment-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--creamy-beige);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.commitment-box h2 {
    color: var(--tomato-red);
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.commitment-box > p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.commitment-list {
    list-style: none;
    padding: 0;
}

.commitment-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    line-height: 1.8;
    font-size: 1.05rem;
}

.commitment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--herbal-green);
    font-weight: bold;
    font-size: 1.5rem;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--herbal-green), var(--tomato-red));
}

.cta-box {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-box > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.cta-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
}

.cta-item strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.cta-item p {
    margin: 0;
}

/* Legal Pages Styles */
.legal-content {
    padding: 60px 0;
    background-color: var(--white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h2 {
    color: var(--tomato-red);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2rem;
}

.legal-container h3 {
    color: var(--herbal-green);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.legal-container p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 20px;
    padding-left: 30px;
    line-height: 1.8;
}

.legal-container li {
    margin-bottom: 10px;
}

.legal-container strong {
    color: var(--charcoal);
    font-weight: 600;
}

.legal-update {
    background-color: var(--creamy-beige);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 4px solid var(--spice-orange);
}

.legal-update p {
    margin: 0;
    font-style: italic;
}

/* Responsive for About and Legal Pages */
@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-info {
        grid-template-columns: 1fr;
    }
    
    .commitment-box {
        padding: 30px 20px;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .newsletter-section,
    .footer {
        display: none;
    }
}

