/* =========================
   RESET / BASE
========================= */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #222;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

/* =========================
   HEADER
========================= */
.site-header {
    background: #7a1f1f;
    color: #fff;
    text-align: center;
    padding: 28px 20px 18px 20px;
}

.site-header h1 {
    margin: 0;
    font-size: 42px;
    line-height: 1.2;
}

.site-header p {
    margin: 12px 0 0 0;
    font-size: 18px;
}

/* =========================
   NAVIGATION
========================= */
.nav {
    background: #222;
    padding: 16px 20px;
    text-align: center;
}

.nav a {
    color: #fff;
    margin: 0 18px;
    font-weight: bold;
    font-size: 17px;
}

.nav a:hover {
    color: #f5c26b;
}

/* =========================
   HERO
========================= */
.hero {
    min-height: 430px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url('../images/restaurant-banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
}

.hero-content {
    max-width: 850px;
}

.hero-content h2 {
    font-size: 48px;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    margin: 0;
    line-height: 1.5;
}

/* =========================
   BUTTONS
========================= */
.btn,
button {
    display: inline-block;
    background: #2cab45;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn, button {
    transition: 0.2s ease;
}

.btn:hover, button:hover {
    background: #23943a;
    transform: scale(1.05);
}

/* =========================
   SECTIONS
========================= */
.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 55px 20px;
}

.section h2 {
    font-size: 36px;
    margin: 0 0 20px 0;
    text-align: center;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 35px auto;
    text-align: center;
    font-size: 19px;
    line-height: 1.7;
}

.center {
    text-align: center;
}

/* =========================
   HOME PAGE FEATURE BOXES
========================= */
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 28px;
    flex: 1 1 300px;
    max-width: 340px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.card h3 {
    margin-top: 0;
    font-size: 26px;
    color: #7a1f1f;
}

.card p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* =========================
   INFO STRIP
========================= */
.info-strip {
    background: #fff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 30px 20px;
    text-align: center;
}

.info-strip p {
    margin: 8px 0;
    font-size: 20px;
}

.phone-link {
    color: #7a1f1f;
    font-weight: bold;
}

/* =========================
   MENU PAGE
========================= */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.menu-item {
    background: #fff;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.menu-item h3 {
    margin: 0 0 10px 0;
    color: #7a1f1f;
    font-size: 24px;
}

.menu-item p {
    margin: 0 0 12px 0;
    font-size: 17px;
    line-height: 1.5;
}

.price {
    font-weight: bold;
    font-size: 20px;
}

/* =========================
   ORDER PAGE
========================= */
.form-wrap {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.notice-box {
    background: #fff4d8;
    border: 1px solid #f0d48a;
    color: #6b4d00;
    padding: 15px 18px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.5;
}

label {
    display: block;
    margin: 18px 0 8px 0;
    font-size: 18px;
    font-weight: bold;
}

input,
textarea,
select {
    width: 100%;
    padding: 14px;
    font-size: 17px;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
    background: #fff;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background: #111;
    color: #fff;
    margin-top: 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 45px 20px 20px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 260px;
}

.footer-column h3 {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 24px;
    color: #f5c26b;
}

.footer-column p,
.footer-column a {
    color: #fff;
    font-size: 17px;
    line-height: 1.8;
}

.footer-column a:hover {
    color: #f5c26b;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    padding: 18px 20px 24px 20px;
    font-size: 16px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .site-header h1 {
        font-size: 34px;
    }

    .site-header p {
        font-size: 17px;
    }

    .hero {
        min-height: 340px;
    }

    .hero-content h2 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .nav a {
        display: inline-block;
        margin: 8px 10px;
    }

    .section h2 {
        font-size: 30px;
    }

    .section-intro,
    .card p,
    .menu-item p,
    .info-strip p {
        font-size: 17px;
    }

    .form-wrap {
        padding: 22px;
    }
}

.nav a {
    color: #fff;
    margin: 0 18px;
    font-weight: bold;
    font-size: 17px;
    padding: 6px 10px;
    border-radius: 6px;
    transition: 0.2s;
}

.nav a:hover {
    background: #f5c26b;
    color: #222;
}

.section {
    max-width: 1100px;
    margin: 40px auto; /* <-- THIS IS THE FIX */
    padding: 55px 20px;
}

/* STICKY CALL BUTTON */
.call-now {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background: #28a745;
    color: #fff;
    padding: 14px 18px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.site-credit {
    margin-top: 10px;
    font-size: 14px;
    color: #ccc;
}

.site-credit a {
    color: #28a745;
    text-decoration: none;
    font-weight: bold;
}

.site-credit a:hover {
    text-decoration: underline;
}