@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Poppins:wght@300;400;500&display=swap');

/* =========================
   BASE STYLES
   ========================= */
body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #2a2a2a;
    line-height: 1.7;
    margin: 0;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
}

/* =========================
   NAVBAR / HEADER
   ========================= */
.navbar {
    background: #111;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 8px 0;
}

.navbar a {
    color: #fff !important;
    margin-right: 15px;
}

.navbar-nav .nav-link {
    margin: 0 12px;
    font-weight: 500;
}

/* Header logo */
.header-logo-wrap {
    background: rgba(255, 255, 255, 0.95);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
    border-radius: 6px;
}

.header-logo {
    max-width: 135px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Spacer BELOW navbar (VERY IMPORTANT) */
.header-spacer {
    height: 90px;
}

/* =========================
   HERO SECTION
   ========================= */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
                url('../images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 3.8rem;
    color: #fff;
}

.hero p {
    color: #eee;
    font-size: 1.2rem;
}

/* =========================
   BUTTONS
   ========================= */
.btn-main {
    background: #b63c3c;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    transition: 0.3s;
}

.btn-main:hover {
    background: #8e2c2c;
}

/* =========================
   PAGE SECTIONS
   ========================= */
.section,
.page-section {
    padding: 40px 0 60px;
}

blockquote {
    color: #444;
    max-width: 800px;
    margin: auto;
}

.section ul {
    padding-left: 18px;
}

.section ul li {
    margin-bottom: 8px;
}

/* =========================
   CARDS / FOOD ITEMS
   ========================= */
.card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.card img {
    height: 240px;
    object-fit: cover;
}

/* =========================
   GALLERY
   ========================= */
.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* =========================
   LIGHTBOX
   ========================= */
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    animation: zoomIn 0.3s ease;
}

#lightbox .close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

/* =========================
   FORMS
   ========================= */
.form-control {
    border-radius: 8px;
}

iframe {
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

/* =========================
   FOOTER
   ========================= */
.footer-main {
    background: #111;
    color: #bbb;
    padding: 60px 0 0;
    font-size: 14px;
}

.footer-logo-wrap {
    background: rgba(255, 255, 255, 0.95);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    border-radius: 6px;
    max-width: 160px;
}

.footer-logo {
    max-width: 140px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-main h5 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    color: #bbb;
}

.footer-social a:hover {
    color: #b63c3c;
}

.footer-bottom {
    background: #000;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
    color: #777;
}

/* =========================
   MOBILE RESPONSIVE
   ========================= */
@media (max-width: 768px) {

    .header-logo {
        max-width: 115px;
    }

    .header-spacer {
        height: 110px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .footer-main {
        text-align: center;
    }

    .footer-logo-wrap {
        max-width: 130px;
        margin: auto;
    }
}