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

#contact-form input,
#contact-form textarea {
    caret-color: auto;
}

:root {
    --primary: #CE1126;
    --primary-dark: #000000;
    --accent: #CE1126;
    --text: #000000;
    --light: #FFFFFF;
    --bg-light: #ACACAC;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-tagline {
    color: var(--light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hero */
.hero {
    background: url('../images/hero-bg.png') center center / cover no-repeat;
    color: var(--light);
    text-align: center;
    padding: 8rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 6rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--accent);
    color: var(--light);
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #9B0D1D;
}

/* Menu */
.menu {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.menu-category {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: var(--light);
    border: 1px solid #ACACAC;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    transform: translateY(-4px);
}

.menu-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.8rem;
}

.menu-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.menu-item p {
    color: #ACACAC;
    margin-bottom: 0.8rem;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent);
    margin-top: auto;
}

.order-btn {
    display: block;
    text-align: center;
    margin-top: 0.8rem;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
}

/* About */
.about {
    background: var(--bg-light);
    padding: 4rem 2rem;
    text-align: center;
}

.about h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about p {
    max-width: 700px;
    margin: 0 auto 1rem;
    font-size: 1.1rem;
}

.about p:last-child {
    margin-bottom: 0;
}

/* Contact */
.contact {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact-form input,
#contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ACACAC;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

#contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

#contact-form .btn {
    align-self: flex-start;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--light);
    text-align: center;
    padding: 1.5rem;
}

/* Large screens - lock hero background size */
@media (min-width: 1921px) {
    .hero {
        background-size: 1920px 1080px;
    }
}

/* Hamburger menu button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Tablet */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding-top: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 0.8rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero {
        padding: 5rem 1.5rem;
        min-height: 50vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .menu {
        padding: 2rem 1rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about {
        padding: 2rem 1.5rem;
    }

    .contact {
        padding: 2rem 1.5rem;
    }

    #contact-form .btn {
        align-self: stretch;
    }
}

/* Phone */
@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .menu h2,
    .about h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .menu-category {
        font-size: 1.3rem;
    }
}
