* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: Arial, sans-serif;

    background: #fff;

    color: #333;
}

/* HEADER */

.topbar {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: white;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 15px 50px;

    border-bottom: 1px solid #eee;
}

.brand {

    display: flex;

    align-items: center;
}

.logo {

    width: 70px;

    margin-right: 15px;
}

.brand-text h1 {

    color: #c59d5f;

    font-size: 36px;
}

.brand-text p {

    color: #777;

    font-size: 14px;
}

nav a {

    margin-left: 30px;

    text-decoration: none;

    color: #333;

    font-weight: bold;

    transition: 0.3s;
}

nav a:hover {

    color: #c59d5f;
}

/* HERO */

.hero {

    height: 90vh;

    background:
    linear-gradient(
    rgba(0,0,0,0.18),
    rgba(0,0,0,0.18)
    ),

    url('images/hero-food.jpg');

    background-size: cover;

    background-position: center;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    color: white;
}

.hero-overlay h2 {

    font-size: 70px;

    margin-bottom: 20px;
}

.hero-overlay p {

    font-size: 24px;

    margin-bottom: 35px;
}

.hero-btn {

    display: inline-block;

    background: #c59d5f;

    color: white;

    padding: 15px 40px;

    text-decoration: none;

    border-radius: 6px;

    font-weight: bold;

    transition: 0.3s;
}

.hero-btn:hover {

    background: #af8547;
}

/* SECTIONS */

.section {

    padding: 90px 8%;
}

.section-title {

    text-align: center;

    margin-bottom: 60px;
}

.section-title h2 {

    font-size: 46px;

    color: #c59d5f;

    margin-bottom: 15px;
}

.section-title p {

    color: #666;

    font-size: 18px;
}

/* MENU */

.menu-grid {

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(500px, 1fr));

    gap: 25px;
}

.menu-card {

    display: flex;

    gap: 20px;

    background: white;

    border-radius: 15px;

    padding: 15px;

    box-shadow:
    0 5px 20px rgba(0,0,0,0.08);

    cursor: pointer;

    transition: 0.3s;
}

.menu-card:hover {

    transform: translateY(-5px);
}

.menu-card img {

    width: 160px;

    height: 160px;

    object-fit: cover;

    border-radius: 12px;
}

.menu-content {

    flex: 1;
}

.menu-content h3 {

    color: #c59d5f;

    margin-bottom: 12px;

    font-size: 28px;
}

.menu-content p {

    color: #555;

    line-height: 1.7;

    font-size: 17px;
}

/* ABOUT */

.about-section {

    background: #f8f8f8;

    padding: 90px 8%;
}

.about-content {

    max-width: 900px;

    margin: auto;
}

.about-content h2 {

    color: #c59d5f;

    font-size: 46px;

    margin-bottom: 20px;
}

.about-content p {

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 20px;
}

/* CONTACT */

.contact-section {

    padding: 90px 8%;
}

.contact-box {

    background: white;

    max-width: 650px;

    margin: auto;

    text-align: center;

    padding: 50px;

    border-radius: 15px;

    box-shadow:
    0 5px 20px rgba(0,0,0,0.08);
}

.contact-box p {

    margin-top: 20px;

    color: #777;
}

.contact-box a {

    color: #c59d5f;

    text-decoration: none;

    font-size: 28px;

    font-weight: bold;
}

/* FOOTER */

footer {

    background: #111;

    color: #aaa;

    text-align: center;

    padding: 30px;
}

/* MODAL */

.modal {

    display: none;

    position: fixed;

    z-index: 9999;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.75);

    justify-content: center;

    align-items: center;

    padding: 20px;
}

.modal-content {

    background: white;

    max-width: 760px;

    width: 100%;

    border-radius: 18px;

    overflow-y: auto;

    max-height: 92vh;

    position: relative;

    animation: popup 0.25s ease;
}

.modal-content img {

    width: 100%;

    height: 350px;

    object-fit: cover;
}

.modal-content h2 {

    padding: 25px 30px 10px;

    color: #c59d5f;

    font-size: 42px;

    line-height: 1.2;
}

.modal-content p {

    padding: 0 30px 15px;

    line-height: 1.8;

    font-size: 19px;

    color: #444;
}

/* POPUP MENU */

.modal-menu {

    padding: 0 30px 30px;
}

.popup-item {

    background: #f8f8f8;

    padding: 20px;

    border-radius: 12px;

    margin-top: 18px;

    line-height: 1.9;

    color: #444;

    font-size: 18px;
}

.popup-item strong {

    display: block;

    color: #c59d5f;

    font-size: 24px;

    margin-bottom: 8px;
}

/* CLOSE BUTTON */

.close-btn {

    position: absolute;

    top: 20px;
    right: 20px;

    width: 55px;
    height: 55px;

    background: rgba(255,255,255,0.95);

    border: 2px solid #c79b52;

    color: #c79b52;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 36px;

    font-weight: bold;

    cursor: pointer;

    box-shadow: 0 3px 10px rgba(0,0,0,0.25);

    z-index: 100;
}

.close-btn:hover {

    background: #c79b52;

    color: black;
}

/* ANIMATION */

@keyframes popup {

    from {

        transform: scale(0.90);

        opacity: 0;
    }

    to {

        transform: scale(1);

        opacity: 1;
    }
}

/* MOBILE */

@media (max-width: 768px) {

    .topbar {

        flex-direction: column;

        padding: 20px;
    }

    nav {

        margin-top: 15px;
    }

    nav a {

        margin: 10px;
    }

    .hero-overlay h2 {

        font-size: 42px;
    }

    .hero-overlay p {

        font-size: 18px;
    }

    .menu-grid {

        grid-template-columns: 1fr;
    }

    .menu-card {

        flex-direction: column;
    }

    .menu-card img {

        width: 100%;

        height: 250px;
    }

    .modal-content h2 {

        font-size: 32px;
    }

    .popup-item strong {

        font-size: 20px;
    }
}

/* CART */
    margin-bottom: 20px;
}

.cart-item {

    padding: 15px;

    border-bottom: 1px solid #eee;
}

#cart-total {

    margin-top: 20px;

    margin-bottom: 20px;
}

.cart-btn,
.checkout-btn {

    background: #c59d5f;

    color: white;

    border: none;

    padding: 12px 25px;

    border-radius: 6px;

    cursor: pointer;

    margin-top: 15px;

    font-weight: bold;
}

.cart-btn:hover,
.checkout-btn:hover {

    background: #af8547;
}

.cart-box input,
.cart-box textarea {

    width: 100%;

    padding: 14px;

    margin-top: 15px;

    border: 1px solid #ddd;

    border-radius: 6px;
}

.success-box {

    max-width: 700px;

    margin: 120px auto;

    text-align: center;

    background: white;

    padding: 60px;

    border-radius: 15px;

    box-shadow:
    0 5px 20px rgba(0,0,0,0.08);
}
/* FLOATING CART */

#floating-cart-btn {

position: fixed;

bottom: 30px;

right: 30px;

background: #c79b52;

color: white;

border: none;

padding: 16px 24px;

font-size: 18px;

font-weight: bold;

border-radius: 50px;

cursor: pointer;

box-shadow: 0 5px 15px rgba(0,0,0,0.25);

z-index: 9999;

transition: 0.3s;
}

#floating-cart-btn:hover {

background: #a97f3f;

transform: scale(1.05);
}

/* CHECKOUT MODAL */

.checkout-modal {

display: none;

position: fixed;

z-index: 99999;

left: 0;

top: 0;

width: 100%;

height: 100%;

background: rgba(0,0,0,0.7);

justify-content: center;

align-items: center;
}

.checkout-content {

background: white;

width: 90%;

max-width: 600px;

padding: 35px;

border-radius: 20px;

position: relative;

max-height: 85vh;

overflow-y: auto;
}

.close-checkout {

position: absolute;

right: 20px;

top: 15px;

font-size: 35px;

cursor: pointer;

color: #555;
}

.checkout-content h2 {

margin-bottom: 25px;

color: #c79b52;
}

.checkout-item {

display: flex;

justify-content: space-between;

align-items: center;

padding: 12px 0;

border-bottom: 1px solid #ddd;
}

.remove-btn {

background: crimson;

color: white;

border: none;

padding: 6px 12px;

border-radius: 6px;

cursor: pointer;
}

#checkout-total {

margin-top: 25px;

margin-bottom: 25px;

color: #c79b52;
}

.checkout-content input,
.checkout-content textarea {

width: 100%;

padding: 14px;

margin-bottom: 15px;

border: 1px solid #ccc;

border-radius: 8px;

font-size: 16px;
}

.checkout-submit-btn {

width: 100%;

background: #c79b52;

color: white;

padding: 16px;

border: none;

border-radius: 10px;

font-size: 18px;

font-weight: bold;

cursor: pointer;

transition: 0.3s;
}

.checkout-submit-btn:hover {

background: #a97f3f;
}
/* CART NOTIFICATION */

#cart-notification {

position: fixed;

top: 100px;

right: 30px;

background: #c79b52;

color: white;

padding: 18px 28px;

border-radius: 12px;

font-size: 18px;

font-weight: bold;

box-shadow: 0 10px 25px rgba(0,0,0,0.25);

opacity: 0;

transform: translateY(-20px);

transition: 0.4s;

z-index: 999999;
}

.show-notification {

opacity: 1 !important;

transform: translateY(0px) !important;
}
/* PHONE VALIDATION */

#phone-error {

display: none;

color: crimson;

font-size: 14px;

font-weight: bold;

margin-top: -10px;

margin-bottom: 15px;
}

.input-error {

border: 2px solid crimson !important;

background: #fff5f5;
}
/* QUANTITY CONTROLS */

.quantity-controls {

display: flex;

align-items: center;

gap: 10px;
}

.qty-btn {

width: 35px;

height: 35px;

border: none;

background: #c79b52;

color: white;

font-size: 20px;

font-weight: bold;

border-radius: 50%;

cursor: pointer;

transition: 0.3s;
}

.qty-btn:hover {

background: #a97f3f;
}

.qty-number {

font-size: 18px;

font-weight: bold;

min-width: 20px;

text-align: center;
}
/* CLEAR CART BUTTON */

.clear-cart-btn {

width: 100%;

padding: 14px;

margin-top: 15px;

margin-bottom: 20px;

background: #444;

color: white;

border: none;

border-radius: 10px;

font-size: 16px;

font-weight: bold;

cursor: pointer;

transition: 0.3s;
}

.clear-cart-btn:hover {

background: crimson;
}

#checkout-total {

margin-bottom: 15px;
}

/* ABOUT SECTION */

.about-section {

padding: 100px 20px 60px;

background: #f8f8f8;
}

.about-container {

max-width: 1000px;

margin: auto;
}

.about-card {

background: white;

padding: 60px;

border-radius: 25px;

box-shadow: 0 15px 40px rgba(0,0,0,0.08);

text-align: center;
}

.about-card h2 {

font-size: 52px;

color: #c79b52;

margin-bottom: 25px;
}

.about-card p {

font-size: 22px;

line-height: 1.8;

color: #444;

margin-bottom: 20px;
}

/* CONTACT SECTION */

.contact-section {

padding: 20px 20px 100px;

background: #f8f8f8;
}

.contact-card {

max-width: 700px;

margin: auto;

background: white;

padding: 60px;

border-radius: 25px;

text-align: center;

box-shadow: 0 15px 40px rgba(0,0,0,0.08);

transition: 0.3s;
}

.contact-card:hover {

transform: translateY(-5px);
}

.contact-card h2 {

font-size: 42px;

color: #c79b52;

margin-bottom: 30px;
}

.contact-card p {

font-size: 22px;

margin-bottom: 18px;

color: #444;
}

.contact-phone {

font-weight: bold;

font-size: 28px !important;
}

.contact-btn {

display: inline-block;

margin-top: 25px;

padding: 16px 35px;

background: #c79b52;

color: white;

text-decoration: none;

font-size: 18px;

font-weight: bold;

border-radius: 12px;

transition: 0.3s;
}

.contact-btn:hover {

background: #a97f3f;
}