body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
}

.hero {
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
}

.section {
    padding: 20px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.menu-item img {
    max-width: 100px;
    margin-right: 20px;
}

.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.custom-navbar {
    background: #222 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.custom-navbar .navbar-brand img {
    height: 60px;
}
.custom-navbar .nav-link {
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: color 0.2s;
}
.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: #c55205 !important;
}
.btn-gold {
    background: #c55205;
    color: #222;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 30px;
    padding: 6px 22px;
    border: none;
    transition: background 0.2s, color 0.2s;
}
.btn-gold:hover {
    background: #fff;
    color: #c55205;
    border: 1px solid #c55205;
}
.text-gold { color: #c55205 !important; }
.bg-gold { background: #c55205 !important; }
.footer-social {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    font-size: 1.2rem;
    margin-right: 6px;
    transition: background 0.2s, color 0.2s;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.bg-facebook { background: #3b5998 !important; }
.bg-instagram { background: #222 !important; }
.footer-social:hover { opacity: 0.8; }

.menu-section-title {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #222;
}
.menu-list {
    margin-bottom: 2rem;
}
.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border: none;
    border-bottom: 1px dotted #b9b9b9;
    padding: 0.5rem 0 0.2rem 0;
    font-size: 1.2rem;
    font-family: 'Georgia', serif;
}
.menu-item-title {
    font-weight: 500;
    color: #222;
    background: #fff;
    padding-right: 10px;
}
.menu-item-price {
    font-weight: 500;
    color: #a05a2c;
    white-space: nowrap;
    background: #fff;
    padding-left: 10px;
}
.menu-item-desc {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
    margin-left: 0.2rem;
    font-family: 'Lato', sans-serif;
}
.border-dotted {
    border-bottom: 1.5px dotted #8b7362 !important;
  }
  
@media (max-width: 600px) {
    .menu-item-row { font-size: 1rem; flex-direction: column; align-items: flex-start; }
    .menu-item-price { padding-left: 0; }
}
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .menu-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

.gallery-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.gallery-img {
    transition: transform 0.4s cubic-bezier(.4,2,.3,1);
    border-radius: 12px;
}
.gallery-img-wrap:hover .gallery-img {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.about-hero {
    min-height: 45vh;
    background-position: center;
    background-size: cover;
    position: relative;
}
.about-hero .container {
    position: relative;
    z-index: 2;
}
.about-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(30,30,30,0.6);
    z-index: 1;
}