:root {
    --bg: #f6f1e9;
    --surface: #fffdfa;
    --text: #231f20;
    --muted: #6f645d;
    --brand: #bf6b2c;
    --brand-dark: #8d4a1e;
    --accent: #1d4d4f;
    --radius: 1rem;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top right, #fff8ec 0%, var(--bg) 40%, #f2ece2 100%);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: "Playfair Display", serif;
}

.custom-nav {
    background: rgba(35, 31, 32, 0.95);
    backdrop-filter: blur(6px);
}

.navbar-brand {
    font-size: 1.4rem;
}

.hero-section {
    min-height: 80vh;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(22, 19, 19, 0.86) 0%, rgba(22, 19, 19, 0.55) 45%, rgba(22, 19, 19, 0.15) 100%),
        url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=1700&q=80") center/cover no-repeat;
}

.page-banner {
    background: linear-gradient(110deg, #2e2725 0%, #473a34 35%, #6f645d 100%);
    color: #fff;
}

.section-tag {
    display: inline-block;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand);
    background: rgba(191, 107, 44, 0.1);
    padding: 0.35rem 0.7rem;
    border-radius: 99px;
}

.hero-section .section-tag {
    color: #ffd8b3;
    background: rgba(255, 216, 179, 0.18);
}

.btn-brand {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.btn-brand:hover,
.btn-brand:focus {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
}

.special-card,
.menu-item-card,
.stat-card,
.form-wrap,
.contact-side {
    border: 0;
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 10px 25px rgba(35, 31, 32, 0.07);
}

.special-card .card-img-top {
    height: 220px;
    object-fit: cover;
}

.reservation-cta {
    background: linear-gradient(120deg, rgba(29, 77, 79, 0.95), rgba(19, 47, 48, 0.95));
    color: #fff;
}

.menu-item-card {
    padding: 1.25rem;
    height: 100%;
}

.menu-item-card .price {
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.menu-filter .btn.active {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

.stat-card {
    padding: 1rem;
}

.form-wrap {
    padding: 1.5rem;
}

.form-label {
    font-weight: 600;
}

.contact-side {
    background: linear-gradient(160deg, #fff5ec 0%, #fffdfa 100%);
}

.site-footer {
    background: #1f1a18;
    color: #f6e9de;
}

.site-footer a {
    color: #f6e9de;
}

.footer-title {
    color: #ffd8b3;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    text-decoration: none;
    color: #fff;
    background: #25d366;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
    z-index: 1080;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: 70vh;
        text-align: center;
    }

    .hero-section .d-flex {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .gallery-grid img {
        height: 220px;
    }
}

