:root {
    --primary-red: #C11F1F;
    --black: #000000;
    --white: #FFFFFF;
    --text-gray: #555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Prevent body scroll when menu is open on mobile */
body.menu-open {
    overflow: hidden;
}

/* Navbar */
.navbar {
    background-color: var(--primary-red);
    margin: 10px 20px;
    padding: 15px 40px;
    border-radius: 0 0 40px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 1001;
}

.logo-icon {
    width: 30px;
    height: 30px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero */
.hero {
    padding: 60px 5%;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 400px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-red {
    background-color: var(--primary-red);
    color: white;
}

.btn-outline {
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-black {
    background-color: var(--black);
    color: white;
}

.hero-img img {
    width: 550px;
    height: 550px;
    object-fit: cover;
    border-radius: 50%;
}

/* Wholesale */
.wholesale {
    display: flex;
    background-color: var(--primary-red);
    color: white;
    align-items: center;
}

.wholesale-img {
    flex: 1;
}

    .wholesale-img img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

    @media (max-width: 768px) {
        .wholesale-img img {
            height: 300px;
        }
    }

.wholesale-text {
    flex: 1;
    padding: 60px;
}

.wholesale-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.wholesale-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Menu Section */
.menu-section {
    padding: 80px 5%;
    text-align: center;
}

.menu-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
}

.subtitle {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.menu-card {
    background: #fdfdfd;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-img-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.card-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.arrow-down {
    color: #ccc;
    font-size: 0.8rem;
}

/* Testimonials */
.testimonials {
    background-color: var(--primary-red);
    padding: 80px 5%;
    color: white;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 50px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.test-card {
    background: white;
    color: black;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
}

.test-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.test-user img {
    border-radius: 50%;
}

.test-user span {
    font-size: 0.7rem;
    color: gray;
    display: block;
}

.stars {
    color: #f1c40f;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.stars small {
    color: gray;
    margin-left: 10px;
}

/* Footer */
.footer {
    display: flex;
    background-color: var(--black);
    color: white;
}

.footer-img {
    flex: 1;
}

    .footer-img img {
        width: 100%;
        height: 600px;
        object-fit: cover;
    }

    @media (max-width: 768px) {
        .footer-img img {
            height: 300px;
        }
    }

.footer-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-col p {
    color: #999;
    font-size: 0.85rem;
}

.footer-email {
    margin-top: 40px;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    /* Navbar Mobile */
    .navbar {
        margin: 5px 10px;
        padding: 12px 20px;
        border-radius: 0 0 20px 20px;
    }

    .logo {
        font-size: 1rem;
    }

    .logo-icon {
        width: 24px;
        height: 24px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-red);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
    }

    /* Backdrop overlay when menu is open */
    .nav-links.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    /* Hero Mobile */
    .hero {
        padding: 30px 5%;
    }

    .hero-container {
        flex-direction: column;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 14px 28px;
    }

    .hero-img {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-img img {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 1;
    }

    /* Wholesale Mobile */
    .wholesale {
        flex-direction: column;
    }

    .wholesale-text {
        padding: 40px 20px;
    }

    .wholesale-text h2 {
        font-size: 2rem;
    }

    .wholesale-text p {
        font-size: 1rem;
    }

    /* Menu Section Mobile */
    .menu-section {
        padding: 50px 5%;
    }

    .menu-section h2 {
        font-size: 2rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-card {
        padding: 30px 15px;
    }

    .card-img-circle {
        width: 150px;
        height: 150px;
    }

    /* Testimonials Mobile */
    .testimonials {
        padding: 50px 5%;
    }

    .testimonials h2 {
        font-size: 2rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Footer Mobile */
    .footer {
        flex-direction: column;
    }

    .footer-content {
        padding: 40px 20px;
    }

    .footer-img img {
        height: 300px;
    }

    .footer-grid {
        gap: 30px;
    }

    .center-btn {
        margin-top: 20px;
    }

    .center-btn .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .navbar {
        margin: 5px;
        padding: 10px 15px;
    }

    .logo {
        gap: 8px;
    }

    .logo span {
        font-size: 0.85rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 150px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .wholesale-text h2 {
        font-size: 1.75rem;
    }

    .wholesale-text p {
        font-size: 0.95rem;
    }

    .menu-section h2,
    .testimonials h2 {
        font-size: 1.75rem;
    }

    .btn {
        font-size: 0.85rem;
        padding: 12px 24px;
    }
}

@media (max-width: 360px) {
    .logo span {
        font-size: 0.75rem;
        max-width: 120px;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }
}

/* Bistro Specific Styles */
.bistro-hero {
    text-align: center;
    padding: 100px 5% 50px;
    background-color: var(--white);
}

.bistro-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-red);
}

.full-menu {
    padding: 0 10% 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.menu-category h2 {
    font-size: 2rem;
    border-bottom: 4px solid var(--primary-red);
    display: inline-block;
    margin-bottom: 30px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.item-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.item-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
    max-width: 80%;
}

.price {
    font-weight: 700;
    color: var(--primary-red);
}

/* Glovo Delivery Component */
.delivery-banner {
    padding: 80px 10%;
    background-color: #f9f9f9;
}

.glovo-card {
    background-color: #FFC244;
    /* Glovo Yellow */
    border-radius: 40px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.glovo-logo {
    height: 60px;
    margin-bottom: 20px;
}

.glovo-content h2 {
    font-size: 2.5rem;
    color: #00A082;
    /* Glovo Green */
    margin-bottom: 15px;
}

.glovo-content p {
    font-weight: 500;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-glovo {
    background-color: #00A082;
    color: white;
    font-size: 1.1rem;
    padding: 15px 40px;
}

.btn-glovo:hover {
    background-color: #007d65;
}

/* Responsive for Bistro */
@media (max-width: 768px) {
    .bistro-hero {
        padding: 60px 5% 30px;
    }

    .bistro-hero h1 {
        font-size: 2rem;
    }

    .bistro-hero p {
        font-size: 1rem;
    }

    .full-menu {
        grid-template-columns: 1fr;
        padding: 0 5% 50px;
        gap: 40px;
    }

    .menu-category h2 {
        font-size: 1.5rem;
    }

    .delivery-banner {
        padding: 50px 5%;
    }

    .glovo-card {
        padding: 40px 20px;
    }

    .glovo-content h2 {
        font-size: 1.75rem;
    }

    .glovo-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .bistro-hero h1 {
        font-size: 1.75rem;
    }

    .glovo-content h2 {
        font-size: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    text-align: center;
    padding: 80px 5% 40px;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

.contact-container {
    padding: 40px 10% 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Form Styles */
.contact-form {
    background: #fdfdfd;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--primary-red);
    border-color: transparent;
}

/* Info Styles */
.info-block {
    margin-bottom: 40px;
}

.info-block h4 {
    font-size: 0.8rem;
    color: var(--primary-red);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.info-block p {
    font-size: 1.2rem;
    font-weight: 500;
}

.map-section {
    line-height: 0;
}

/* Responsive for Contact */
@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 5% 30px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-container {
        padding: 30px 5% 50px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .info-block {
        margin-bottom: 30px;
    }

    .info-block p {
        font-size: 1rem;
    }

    .map-section {
        padding: 0;
        margin: 0;
    }

    .map-section iframe {
        height: 300px;
        width: 100%;
        display: block;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 1.75rem;
    }

    .contact-form {
        padding: 20px 15px;
    }
}

/* Catering Page Styles */
.catering-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1555244162-803834f70033?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border-radius: 40px;
    margin: 20px;
}

.catering-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.catering-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    max-width: 600px;
}

.packages-section {
    padding: 80px 10%;
    background: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    position: relative;
    border: 2px solid transparent;
    transition: 0.3s;
}

.package-card.featured {
    border-color: var(--primary-red);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.package-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-red);
    margin: 15px 0;
}

.package-card ul {
    list-style: none;
    margin-top: 20px;
}

.package-card li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.package-card li::before {
    content: "✓ ";
    color: var(--primary-red);
    font-weight: bold;
}

/* Catering Form */
.catering-form-section {
    padding: 80px 10%;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--primary-red);
    padding: 60px;
    border-radius: 40px;
    color: white;
}

.steps {
    margin-top: 30px;
}

.step {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.catering-order-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    color: black;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.full-width {
    width: 100%;
    margin-top: 20px;
}

select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-top: 5px;
}

/* Responsive for Catering */
@media (max-width: 768px) {
    .catering-hero {
        margin: 10px;
        height: 300px;
        border-radius: 20px;
    }

    .catering-hero-content h1 {
        font-size: 2rem;
    }

    .catering-hero-content p {
        font-size: 1rem;
    }

    .packages-section {
        padding: 50px 5%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package-card {
        padding: 30px 20px;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .catering-form-section {
        padding: 50px 5%;
    }

    .form-container {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        border-radius: 20px;
    }

    .form-text h2 {
        font-size: 1.75rem;
    }

    .catering-order-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .catering-hero-content h1 {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .form-container {
        padding: 20px 15px;
    }

    .catering-order-form {
        padding: 20px 15px;
    }
}