/* Cooking & Food Website - Split Screen Layout with Vibrant Colors */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --food-red: #E74C3C;
    --food-dark-red: #C0392B;
    --food-orange: #F39C12;
    --food-dark-orange: #E67E22;
    --food-yellow: #F1C40F;
    --food-cream: #FFF5E6;
    --food-light: #FFF9F0;
    --text-dark: #2C1810;
    --text-medium: #5C4033;
    --text-light: #8B7355;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(231, 76, 60, 0.1);
    --shadow-md: 0 4px 16px rgba(231, 76, 60, 0.15);
    --shadow-lg: 0 8px 32px rgba(231, 76, 60, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--food-light);
    overflow-x: hidden;
}

.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Split Header */
.split-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: linear-gradient(135deg, var(--food-red) 0%, var(--food-orange) 100%);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left-panel {
    background: var(--food-dark-red);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.brand-name {
    font-family: 'Roboto Slab', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
}

.header-right-panel {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-nav {
    position: relative;
}

.nav-items {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    padding: 0.6rem 1.2rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 70%;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.nav-burger {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-burger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* Split Hero Section */
.split-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    background: var(--white);
}

.hero-left-panel {
    display: flex;
    align-items: center;
    padding: 4rem;
    background: linear-gradient(135deg, var(--food-cream) 0%, var(--food-light) 100%);
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--food-orange);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-heading {
    font-family: 'Roboto Slab', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--food-dark-red);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: var(--food-red);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.cta-button.primary:hover {
    background: var(--food-dark-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background: transparent;
    color: var(--food-red);
    border-color: var(--food-red);
}

.cta-button.secondary:hover {
    background: var(--food-red);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-right-panel {
    position: relative;
    overflow: hidden;
    background: var(--food-dark-red);
}

.hero-image-box {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.image-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: var(--food-orange);
    border-radius: 50%;
    transform: translate(50%, -50%);
    opacity: 0.3;
}

/* Main Wrapper */
.main-wrapper {
    flex: 1;
}

/* Section Styles */
.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading {
    font-family: 'Roboto Slab', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--food-dark-red);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Dishes Section */
.dishes-section {
    padding: 6rem 0;
    background: var(--white);
}

.dishes-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 400px;
    gap: 1.5rem;
}

.dish-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.dish-card.featured {
    grid-column: span 2;
    grid-row: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.dish-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.dish-card.featured .dish-photo {
    height: 100%;
}

.dish-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dish-card:hover .dish-photo img {
    transform: scale(1.1);
}

.dish-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--food-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.dish-details {
    padding: 2rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dish-details h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--food-dark-red);
    margin-bottom: 1rem;
}

.dish-details p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.dish-link {
    color: var(--food-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.dish-link:hover {
    color: var(--food-dark-red);
    transform: translateX(5px);
}

/* Techniques Split Section */
.techniques-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    background: var(--food-light);
}

.techniques-left {
    overflow: hidden;
}

.techniques-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.techniques-right {
    display: flex;
    align-items: center;
    padding: 4rem;
    background: linear-gradient(135deg, var(--food-cream) 0%, var(--food-light) 100%);
}

.techniques-content h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--food-dark-red);
    margin-bottom: 3rem;
}

.technique-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.technique-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.tech-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.tech-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--food-dark-red);
    margin-bottom: 0.75rem;
}

.tech-info p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* Ingredients Section */
.ingredients-section {
    padding: 6rem 0;
    background: var(--white);
}

.ingredients-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.ingredient-item {
    text-align: center;
    background: var(--food-cream);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.ingredient-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.ingredient-image {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.ingredient-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.ingredient-item:hover .ingredient-image img {
    transform: scale(1.1);
}

.ingredient-item h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--food-dark-red);
    margin-bottom: 0.75rem;
}

.ingredient-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Split Footer */
.split-footer {
    background: linear-gradient(135deg, var(--food-dark-red) 0%, var(--food-red) 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-left h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--food-yellow);
}

.footer-left p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--food-yellow);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--food-yellow);
    padding-left: 0.5rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-email {
    color: var(--food-yellow);
    font-weight: 600;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-heading {
        font-size: 3rem;
    }
    
    .dishes-masonry {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .dish-card.featured {
        grid-column: span 3;
        grid-row: span 1;
        display: flex;
        flex-direction: column;
    }
    
    .techniques-split-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .split-header {
        grid-template-columns: 1fr;
    }
    
    .header-left-panel {
        padding: 1rem;
    }
    
    .header-right-panel {
        padding: 1rem;
        justify-content: space-between;
    }
    
    .nav-items {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--food-dark-red);
        border-radius: 15px;
        padding: 1rem;
        margin-top: 1rem;
        flex-direction: column;
        min-width: 200px;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-items.active {
        display: flex;
    }
    
    .nav-burger {
        display: flex;
    }
    
    .split-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-left-panel {
        padding: 3rem 2rem;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .section-heading {
        font-size: 2.5rem;
    }
    
    .dishes-masonry {
        grid-template-columns: 1fr;
    }
    
    .ingredients-carousel {
        grid-template-columns: 1fr;
    }
    
    .footer-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
}

/* Page Hero Split */
.page-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 50vh;
    margin-top: 80px;
}

.page-hero-left {
    overflow: hidden;
}

.page-hero-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: linear-gradient(135deg, var(--food-red) 0%, var(--food-orange) 100%);
    color: var(--white);
}

.page-title {
    font-family: 'Roboto Slab', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Content Section */
.content-section {
    padding: 5rem 0;
    background: var(--white);
}

/* Dish Detail Cards */
.dishes-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.dish-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--food-cream);
    padding: 2rem;
    border-radius: 20px;
}

.dish-detail-card.reverse {
    direction: rtl;
}

.dish-detail-card.reverse > * {
    direction: ltr;
}

.dish-detail-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.dish-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.dish-detail-content h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--food-dark-red);
    margin-bottom: 1rem;
}

.dish-detail-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.dish-info {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.info-tag {
    padding: 0.5rem 1rem;
    background: var(--food-orange);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Recipe Layout */
.recipe-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.recipe-image-side img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.recipe-content-side h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--food-dark-red);
    margin-bottom: 1.5rem;
}

.recipe-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.recipe-meta span {
    padding: 0.5rem 1rem;
    background: var(--food-cream);
    border-radius: 50px;
    color: var(--text-medium);
    font-weight: 600;
}

.ingredients-list,
.steps-list {
    margin-bottom: 2rem;
}

.ingredients-list h3,
.steps-list h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--food-dark-red);
    margin-bottom: 1rem;
}

.ingredients-list ul {
    list-style: none;
    padding-left: 0;
}

.ingredients-list li {
    padding: 0.75rem;
    background: var(--food-cream);
    border-radius: 10px;
    margin-bottom: 0.5rem;
    color: var(--text-medium);
    border-left: 4px solid var(--food-orange);
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--food-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-item p {
    color: var(--text-medium);
    line-height: 1.8;
    flex: 1;
}

/* Techniques Grid Detailed */
.techniques-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.technique-detail-card {
    background: var(--food-cream);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.technique-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.tech-detail-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.technique-detail-card h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--food-dark-red);
    margin-bottom: 1rem;
}

.technique-detail-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.technique-detail-card img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

/* Ingredients Detailed */
.ingredients-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.ingredient-category h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--food-dark-red);
    margin-bottom: 2rem;
}

.ingredient-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.ingredient-box {
    background: var(--food-cream);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.ingredient-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.ingredient-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.ingredient-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--food-dark-red);
    margin-bottom: 0.75rem;
}

.ingredient-box p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Cuisine Content */
.cuisine-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cuisine-text h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--food-dark-red);
    margin-bottom: 1.5rem;
}

.cuisine-text p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cuisine-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--food-cream);
    border-radius: 15px;
}

.feature-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--food-dark-red);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.cuisine-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cuisine-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: var(--food-cream);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.tip-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--food-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.tip-card h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--food-dark-red);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.tip-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* About Split */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text-panel h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--food-dark-red);
    margin-bottom: 1.5rem;
}

.about-text-panel p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--food-cream);
    border-radius: 15px;
}

.value-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.value-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--food-dark-red);
    margin-bottom: 0.5rem;
}

.value-box p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.about-image-panel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-panel img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Split */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-panel h2,
.contact-form-panel h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--food-dark-red);
    margin-bottom: 2rem;
}

.contact-box {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--food-cream);
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-box h3 {
    font-size: 1.25rem;
    color: var(--food-dark-red);
    margin-bottom: 0.5rem;
}

.contact-box p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-form-panel {
    background: var(--food-cream);
    padding: 2.5rem;
    border-radius: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--food-dark-red);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(231, 76, 60, 0.2);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--food-red);
}

.form-group textarea {
    resize: vertical;
}

@media (max-width: 768px) {
    .page-hero-split,
    .dish-detail-card,
    .recipe-layout,
    .cuisine-content,
    .about-split,
    .contact-split {
        grid-template-columns: 1fr;
    }
    
    .dish-detail-card.reverse {
        direction: ltr;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-hero-split {
        margin-top: 100px;
    }
    
    .cuisine-features,
    .mission-values {
        grid-template-columns: 1fr;
    }
}

