/* =========================================================
   THE GRAND SHAURYA — SHARED SITE STYLESHEET
   Light cream + gold theme, used across every page.
   ========================================================= */

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f7f3e8;
    color: #222;
    min-height: 100vh;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ---------- Header ---------- */

header.site-header {
    background-color: #ffffff;
    border-bottom: 4px solid #D4AF37;
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 18px 20px;
    text-align: center;
}

.site-header .brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
}

.site-header .brand img {
    width: 46px;
    height: auto;
}

.site-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 34px;
    color: #9b7918;
    letter-spacing: 1.5px;
}

.site-header .tagline {
    margin-top: 6px;
    color: #666;
    font-size: 15px;
    letter-spacing: .5px;
}

/* ---------- Nav pills (used on Menu hub) ---------- */

.nav-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.nav-pills a {
    text-decoration: none;
    background: #fff;
    color: #9b7918;
    padding: 9px 18px;
    border: 2px solid #D4AF37;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    transition: .3s;
    white-space: nowrap;
}

.nav-pills a:hover {
    background: #D4AF37;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(212, 175, 55, .35);
}

/* ---------- Section titles ---------- */

.menu-section { padding: 55px 0 65px; }

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 34px;
    color: #9b7918;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 40px;
    font-size: 15px;
}

/* ---------- Food card ---------- */

.food-card {
    background-color: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid #e3d39a;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
    transition: .35s;
    height: 100%;
}

.food-card:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 0 15px 32px rgba(212, 175, 55, 0.30);
}

.image-box {
    width: 100%;
    height: 370px;
    overflow: hidden;
    background: #fff;
}

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


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

.food-body {
    padding: 14px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.food-name {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
}

.food-desc {
    font-size: 13px;
    color: #999;
    margin-top: 3px;
}

.food-price {
    background-color: #D4AF37;
    color: #111;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 30px;
    font-size: 15px;
    white-space: nowrap;
}

/* ---------- Category hub cards (Menu.html) ---------- */

.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.cat-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 2px solid #e3d39a;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .10);
    transition: .35s;
}

.cat-card:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 0 15px 32px rgba(212, 175, 55, .30);
}

.cat-card .image-box { height: 170px; }

.cat-card .cat-body {
    padding: 20px;
    text-align: center;
}

.cat-card h3 {
    font-family: 'Cinzel', serif;
    color: #9b7918;
    font-size: 20px;
    margin-bottom: 6px;
}

.cat-card p {
    color: #777;
    font-size: 14px;
}

/* ---------- Footer ---------- */

footer.site-footer {
    background-color: #ffffff;
    color: #666;
    border-top: 2px solid #D4AF37;
    padding: 28px 20px;
    text-align: center;
    margin-top: 20px;
}

footer.site-footer .social {
    margin-top: 14px;
}

footer.site-footer .social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    margin: 0 6px;
    background: #D4AF37;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    transition: .3s;
}

footer.site-footer .social a:hover {
    background: #9b7918;
    transform: scale(1.1);
}

/* ---------- Hero (home page) ---------- */

.hero {
    min-height: 90vh;
    background:
        linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.72)),
        url("https://thegrandshaurya.com/wp-content/uploads/2025/11/The-Grand-Shaurya-13-of-13_11zon-scaled.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.hero .content { max-width: 700px; }

.hero .logo {
    width: 200px;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 56px;
    color: #D4AF37;
    letter-spacing: 2px;
}

.hero .tag {
    font-size: 20px;
    color: #f2f2f2;
    margin: 15px 0 32px;
}

.hero .btn {
    display: inline-block;
    padding: 15px 42px;
    background: #D4AF37;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: .35s;
    font-size: 17px;
}

.hero .btn:hover {
    background: #fff;
    transform: translateY(-4px);
}

.about {
    padding: 65px 10%;
    background: #fff;
    text-align: center;
}

.about h2 {
    font-family: 'Cinzel', serif;
    font-size: 38px;
    color: #9b7918;
    margin-bottom: 18px;
}

.about p {
    max-width: 900px;
    margin: auto;
    line-height: 1.9;
    font-size: 16px;
    color: #444;
}



/* ---------- Mobile ---------- */

@media (max-width: 768px) {
    .site-header h1 { font-size: 24px; }
    .site-header .brand img { width: 36px; }
    .section-title { font-size: 26px; }
    .image-box { height: 190px; }
    .food-name { font-size: 16px; }
    .food-price { font-size: 13px; padding: 7px 13px; }
    .hero h1 { font-size: 36px; }
    .hero .logo { width: 150px; }
    .hero .tag { font-size: 16px; }
    .about h2 { font-size: 28px; }
}
