:root {
    --primary: #FF6B6B;
    --secondary: #4ECDC4;
    --dark: #2D3436;
    --light: #F7F9FC;
    --glass: rgba(255, 255, 255, 0.95);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

/* Header & Hero */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--glass);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

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

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

.hero {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%);
    padding: 4rem 5%;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center vertically inside hero section if desired, or let it flow naturally */
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

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

.hero-content p {
    font-size: 1.25rem;
    color: #636e72;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Special Offer */
.special-offer {
    background: #fff;
    margin-top: -50px; /* Overlap effect */
    position: relative;
    z-index: 10;
    border-radius: 20px 20px 0 0;
}

.offer-card {
    display: flex;
    background: linear-gradient(to right, #2d3436, #000);
    color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    flex-wrap: wrap; /* Responsive */
}

.offer-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #FFD700;
    color: #000;
    padding: 0.5rem 1rem;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.offer-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
}

.offer-details h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.original-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 1.5rem;
}

.new-price {
    color: #4ECDC4;
    font-size: 3rem;
    font-weight: 700;
}

.btn-order {
    align-self: flex-start;
    padding: 0.8rem 2rem;
    background: white;
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

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

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

.food-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

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

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.food-card:hover .card-image img {
    transform: scale(1.1);
}

.card-info {
    padding: 1.5rem;
    position: relative;
}

.card-info h3 {
    margin-bottom: 0.5rem;
}

.card-info p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.card-info .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.btn-add {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--dark);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.btn-add:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

footer {
    text-align: center;
    padding: 2rem;
    background: var(--dark);
    color: #888;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}
