:root {
    --primary-color: #e63946;
    --secondary-color: #f1faee;
    --accent-color: #ffb703;
    --dark-color: #1d3557;
    --slate-color: #457b9d;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--light-bg);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scroll Smoothing */
html {
    scroll-behavior: smooth;
}

/* Header & Nav */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
}

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

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
}

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Menu Section */
.menu-section {
    padding: 100px 5%;
    background-color: var(--white);
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.section-title span {
    display: block;
    font-size: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.menu-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.menu-card:hover {
    transform: translateY(-10px);
}

.menu-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.menu-info {
    padding: 1.5rem;
    text-align: center;
}

.menu-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.order-btn {
    display: block;
    background: var(--dark-color);
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 10px;
    font-weight: 500;
    transition: background 0.3s;
}

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

.etc-text {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: #777;
}

/* Order Section */
.order-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--dark-color), #2b2d42);
    color: var(--white);
}

.order-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.order-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.order-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
}

.icon {
    font-size: 1.5rem;
}

.qr-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    color: var(--dark-color);
    width: 250px;
}

.qr-code {
    width: 100%;
    margin-bottom: 1rem;
}

.qr-container p {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    background: #111;
    color: #777;
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding-top: 120px;
        padding-bottom: 50px;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-image {
        justify-content: center;
    }

    .order-container {
        flex-direction: column;
        text-align: center;
    }

    .info-item {
        justify-content: center;
    }
}