:root {
    --primary-color: #fab31d;
    --secondary-color: #f15b6c;
    --text-color: #333;
    --light-bg: #fef9f0;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #666;
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 91, 108, 0.4);
}

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

.btn-secondary:hover {
    background: #d94a5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 91, 108, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 91, 108, 0.4);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

.highlight {
    color: var(--primary-color);
}

header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-color);
    color: var(--text-color) !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--secondary-color) !important;
    color: var(--white);
}

.nav-cta::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

.hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
}

.app-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.app-mockup-inner {
    width: 280px;
    height: 580px;
    background: var(--white);
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.app-mockup-inner .logo {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.app-mockup-inner p {
    font-size: 0.9rem;
    color: var(--gray);
    text-align: center;
}

.why-us {
    background: var(--white);
}

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

.feature-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--gray);
}

.how-it-works {
    background: var(--light-bg);
}

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

.step-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-card h3 {
    margin-bottom: 10px;
}

.step-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.featured-chefs {
    background: var(--white);
}

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

.chef-card {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.chef-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.chef-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(145deg, #ddd, #eee);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.chef-info {
    padding: 20px;
    text-align: center;
}

.chef-info h3 {
    margin-bottom: 5px;
}

.chef-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.testimonials {
    background: var(--light-bg);
}

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-info h4 {
    font-size: 1rem;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--gray);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

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

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--text-color);
}

.cta-section .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--text-color);
}

footer {
    background: var(--text-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    margin: 15px 0 20px;
    opacity: 0.8;
    font-size: 0.95rem;
}

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

.app-btn {
    background: var(--white);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-btn:hover {
    background: var(--primary-color);
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

.page-header {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 140px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.about-story {
    background: var(--white);
}

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

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 15px;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(145deg, var(--light-bg), #ddd);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    font-size: 3rem;
}

.mission-vision {
    background: var(--light-bg);
}

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

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
}

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

.mv-card p {
    color: var(--gray);
}

.values-section {
    background: var(--white);
}

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

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

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.value-card h3 {
    margin-bottom: 10px;
}

.value-card p {
    color: var(--gray);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(145deg, var(--light-bg), #ddd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.gallery-item:hover img,
.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.review-stars {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-text {
    margin-bottom: 20px;
    color: var(--gray);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feedback-section {
    background: var(--light-bg);
}

.feedback-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

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

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

.download-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.download-info p {
    color: var(--gray);
    margin-bottom: 30px;
}

.download-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--text-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 10px;
    transition: var(--transition);
}

.store-btn:hover {
    background: #444;
    transform: translateY(-2px);
}

.store-btn.disabled {
    background: #999;
    cursor: not-allowed;
}

.store-btn .store-icon {
    font-size: 1.5rem;
}

.store-btn .store-text {
    text-align: left;
}

.store-btn .store-text small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}

.store-btn .store-text span {
    font-weight: 600;
}

.app-features {
    list-style: none;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--gray);
}

.app-features li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.download-mockup {
    text-align: center;
}

.become-chef-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.chef-benefits h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.chef-benefits p {
    color: var(--gray);
    margin-bottom: 30px;
}

.benefits-list {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-text h3 {
    margin-bottom: 5px;
}

.benefit-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

.requirements-section {
    background: var(--light-bg);
}

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

.requirement-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.requirement-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-bg);
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--gray);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--gray);
}

.contact-text a {
    color: var(--primary-color);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.legal-content {
    background: var(--white);
    padding: 60px 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--text-color);
}

.legal-text h3 {
    font-size: 1.2rem;
    margin: 25px 0 10px;
}

.legal-text p {
    color: var(--gray);
    margin-bottom: 15px;
}

.legal-text ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-text ul li {
    color: var(--gray);
    margin-bottom: 10px;
    list-style: disc;
}

.legal-text a {
    color: var(--primary-color);
}

.last-updated {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .features-grid,
    .steps-grid,
    .chefs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: var(--transition);
    }

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

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content,
    .about-content,
    .download-content,
    .become-chef-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-image {
        order: -1;
    }

    .features-grid,
    .steps-grid,
    .testimonials-grid,
    .mv-grid,
    .values-grid,
    .reviews-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .chefs-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-buttons {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .app-mockup {
        width: 250px;
        height: 500px;
    }

    .app-mockup-inner {
        width: 230px;
        height: 480px;
    }
}

@media (max-width: 480px) {
    .chefs-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .cta-buttons,
    .download-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        text-align: center;
    }

    .store-btn {
        justify-content: center;
    }
}



.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
    object-fit: contain;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-food-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 350px;
    margin: 0 auto;
}

.food-item {
    width: 150px;
    height: 150px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: var(--shadow);
    animation: float 3s ease-in-out infinite;
    overflow: hidden;
}

.food-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.timeline-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.mv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
}

.value-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
}

.serve-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.serve-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.timeline-visual {
    max-width: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.gallery-item .gallery-img {
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.event-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.past-event-image {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.blog-img-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-image-large {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    min-height: 250px;
}

.blog-image {
    overflow: hidden;
    border-radius: var(--border-radius);
    min-height: 180px;
}

.blog-hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.content-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.related-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.related-thumb {
    width: 80px;
    height: 60px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.post-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-thumb {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.food-item.food-1 { animation-delay: 0s; }
.food-item.food-2 { animation-delay: 0.5s; }
.food-item.food-3 { animation-delay: 1s; }
.food-item.food-4 { animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.story-preview {
    background: var(--light-bg);
    padding: 60px 0;
}

.story-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.story-scene {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 200px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.story-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.story-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.story-scene p {
    font-size: 0.85rem;
    color: var(--gray);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 60px;
}

.story-arrow {
    font-size: 2rem;
    color: var(--primary-color);
}

.story-cta {
    text-align: center;
}

.testimonials-slider-section {
    background: var(--light-bg);
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
}

.slider-container {
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .testimonial-slide {
        min-width: 50%;
    }
}

@media (min-width: 1024px) {
    .testimonial-slide {
        min-width: 33.333%;
    }
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
}

.stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary-color);
}

.blog-section {
    background: var(--white);
}

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

.blog-card {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.blog-image {
    height: 180px;
    overflow: hidden;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-content {
    padding: 20px;
}

.blog-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-content h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--gray);
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

.events-section {
    background: var(--light-bg);
}

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

.event-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.event-date {
    background: var(--primary-color);
    padding: 15px;
    border-radius: var(--border-radius);
    text-align: center;
    min-width: 70px;
}

.event-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.event-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.event-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--gray);
}

.founder-story {
    background: var(--white);
    padding: 80px 0;
}

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

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
    align-items: center;
}

.timeline-item.reverse {
    grid-template-columns: 1fr 1fr 80px;
}

.timeline-item.reverse .timeline-icon {
    order: 3;
}

.timeline-item.reverse .timeline-content {
    order: 2;
    text-align: right;
}

.timeline-item.reverse .timeline-visual {
    order: 1;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.8;
}

.timeline-visual {
    display: flex;
    justify-content: center;
}

.visual-scene {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.scene-element {
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.story-logo {
    height: 60px;
    width: auto;
}

.mv-card {
    text-align: center;
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.who-we-serve {
    background: var(--light-bg);
}

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

.serve-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.serve-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.serve-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.serve-card h3 {
    margin-bottom: 10px;
}

.serve-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

.gallery-section {
    padding: 40px 0 80px;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    background: transparent;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--text-color);
}

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

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item .gallery-placeholder.large {
    height: 100%;
    min-height: 520px;
}

.gallery-item .gallery-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.gallery-item .gallery-overlay p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.events-page-section {
    padding: 40px 0 80px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.event-detail-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.event-detail-card.reverse {
    grid-template-columns: 1fr 400px;
}

.event-detail-card.reverse .event-image {
    order: 2;
}

.event-image {
    position: relative;
    min-height: 300px;
}

.event-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.event-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.event-date-badge .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--secondary-color);
}

.event-date-badge .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-date-badge .year {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
}

.event-info {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-detail-card.reverse .event-info {
    padding: 40px 0 40px 40px;
}

.event-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    width: fit-content;
}

.event-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.event-info > p {
    color: var(--gray);
    margin-bottom: 20px;
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.9rem;
}

.detail-item .icon {
    font-size: 1.1rem;
}

.past-events {
    background: var(--light-bg);
}

.past-events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.past-event-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.past-event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.past-event-image {
    height: 150px;
}

.past-event-image .event-placeholder {
    min-height: 150px;
    font-size: 3rem;
}

.past-event-content {
    padding: 20px;
}

.past-event-date {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.past-event-content h4 {
    margin: 8px 0;
    font-size: 1rem;
}

.past-event-content p {
    color: var(--gray);
    font-size: 0.85rem;
}

.blog-page-section {
    padding: 40px 0 80px;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.blog-card-full {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-image-large {
    height: 350px;
    position: relative;
}

.blog-placeholder-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.blog-content-full {
    padding: 30px;
}

.blog-content-full h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.blog-content-full h2 a:hover {
    color: var(--primary-color);
}

.blog-content-full > p {
    color: var(--gray);
    margin-bottom: 20px;
}

.blog-meta-full {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--gray);
}

.blog-grid-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    padding: 10px 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.page-link.active,
.page-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
}

.sidebar-widget h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    color: var(--gray);
}

.category-list li a:hover {
    color: var(--primary-color);
}

.category-list li a span {
    color: var(--primary-color);
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post {
    display: flex;
    gap: 15px;
    align-items: center;
}

.post-thumb {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.post-info h5 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    line-height: 1.3;
}

.post-info span {
    font-size: 0.8rem;
    color: var(--gray);
}

.cta-widget {
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.cta-widget h4 {
    color: var(--white);
}

.cta-widget p {
    opacity: 0.9;
    margin-bottom: 15px;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.blog-single {
    padding-top: 80px;
}

.blog-hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 60px 0;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 2.5rem;
    margin: 15px 0 20px;
}

.blog-meta-hero {
    display: flex;
    justify-content: center;
    gap: 25px;
    color: var(--gray);
}

.blog-single-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 40px 0;
}

.featured-image {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.blog-placeholder-hero {
    width: 100%;
    height: 400px;
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
}

.article-content {
    max-width: 100%;
}

.article-content .intro {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 1.6rem;
    margin: 35px 0 15px;
    color: var(--text-color);
}

.article-content h3 {
    font-size: 1.3rem;
    margin: 25px 0 10px;
    color: var(--primary-color);
}

.article-content p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.article-list {
    margin: 20px 0;
    padding-left: 25px;
}

.article-list li {
    color: var(--gray);
    margin-bottom: 10px;
    list-style: disc;
    line-height: 1.6;
}

.article-list.numbered li {
    list-style: decimal;
}

.content-image {
    margin: 30px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.blog-placeholder-content {
    width: 100%;
    height: 250px;
    background: linear-gradient(145deg, var(--light-bg), #ddd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
    margin-top: 10px;
}

blockquote {
    background: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-color);
}

blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--gray);
    font-style: normal;
}

.article-cta {
    display: flex;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.article-tags span {
    font-weight: 600;
}

.article-tags a {
    background: var(--light-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gray);
}

.article-tags a:hover {
    background: var(--primary-color);
    color: var(--text-color);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

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

.share-btn {
    padding: 8px 20px;
    background: var(--light-bg);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.share-btn:hover {
    background: var(--primary-color);
}

.author-box {
    display: flex;
    gap: 20px;
    align-items: center;
    background: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.author-avatar-large {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info-box h4 {
    margin-bottom: 8px;
}

.author-info-box p {
    color: var(--gray);
    font-size: 0.9rem;
}

.related-posts {
    margin-top: 40px;
}

.related-posts h3 {
    margin-bottom: 25px;
}

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

.related-post {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.related-thumb {
    height: 120px;
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.related-post h4 {
    padding: 15px;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .timeline-item,
    .timeline-item.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .timeline-item .timeline-icon,
    .timeline-item.reverse .timeline-icon {
        margin: 0 auto 20px;
        order: 1;
    }
    
    .timeline-item .timeline-content,
    .timeline-item.reverse .timeline-content {
        order: 2;
        text-align: center;
    }
    
    .timeline-item .timeline-visual,
    .timeline-item.reverse .timeline-visual {
        order: 3;
    }
    
    .blog-grid,
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .serve-grid,
    .past-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .event-detail-card,
    .event-detail-card.reverse {
        grid-template-columns: 1fr;
    }
    
    .event-detail-card .event-info,
    .event-detail-card.reverse .event-info {
        padding: 30px;
    }
    
    .blog-layout,
    .blog-single-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .story-animation {
        flex-direction: column;
    }
    
    .story-arrow {
        transform: rotate(90deg);
    }
    
    .blog-grid,
    .events-grid,
    .blog-grid-page {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-row: span 1;
    }
    
    .gallery-item .gallery-placeholder.large {
        min-height: 250px;
    }
    
    .hero-food-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 280px;
    }
    
    .food-item {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }
    
    .blog-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .serve-grid,
    .past-events-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

.chef-registration-form h3 {
    text-align: center;
    color: var(--secondary-color);
    font-style: italic;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 8px;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input,
.radio-label input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--secondary-color);
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.file-input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    background: var(--white);
    width: 100%;
}

.file-input::file-selector-button {
    background: var(--gray-light);
    border: 1px solid #ccc;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.file-input::file-selector-button:hover {
    background: #e0e0e0;
}

.logo-large {
    height: 100px;
    width: auto;
}

.header-tall {
    padding: 10px 0;
}

.header-tall .nav-container {
    padding: 10px 20px;
}

.hero-phone-hanging {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    max-height: 400px;
    width: auto;
    opacity: 0.9;
    animation: phoneFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}
