@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #8b5e3c;
  --secondary: #d8c3a5;
  --dark: #1f1a17;
  --light: #f8f5f0;
  --white: #ffffff;
  --muted: #6c757d;
  --accent: #b07d52;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.7;
}

h1, h2, h3, h4, .brand-title {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--dark);
}

.section-subtitle {
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto;
}

.topbar {
  background-color: var(--dark);
  color: var(--white);
  font-size: 0.9rem;
}

.topbar a {
  color: var(--white);
}

.navbar {
  background-color: rgba(31, 26, 23, 0.94);
  backdrop-filter: blur(10px);
}

.navbar-brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}

.navbar-brand span {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  margin-left: 10px;
  transition: 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary) !important;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(20, 16, 13, 0.62), rgba(20, 16, 13, 0.65)),
              url('../images/hero1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
  padding-top: 90px;
}

.hero-content h1 {
  font-size: 3.7rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.05rem;
  max-width: 650px;
  margin-bottom: 1.8rem;
}

.btn-brand {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: var(--shadow);
}

.btn-brand:hover {
  background-color: #734b2f;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-brand {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-outline-brand:hover {
  background-color: var(--white);
  color: var(--dark);
}

.info-card,
.menu-card,
.gallery-card,
.contact-card,
.value-card {
  background-color: var(--white);
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
}

.info-card img,
.contact-image,
.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.card-body h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.badge-soft {
  background-color: #f1e5d8;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.about-banner,
.page-banner,
.contact-banner {
  padding: 140px 0 90px;
  background: linear-gradient(rgba(31, 26, 23, 0.75), rgba(31, 26, 23, 0.75)),
              url('../images/home1.jpg') center/cover no-repeat;
  color: var(--white);
  text-align: center;
}

.page-banner.menu-banner {
  background: linear-gradient(rgba(31, 26, 23, 0.72), rgba(31, 26, 23, 0.72)),
              url('../images/about1.jpg') center/cover no-repeat;
}

.page-banner.gallery-banner {
  background: linear-gradient(rgba(31, 26, 23, 0.72), rgba(31, 26, 23, 0.72)),
              url('../images/gallery1.jpg') center/cover no-repeat;
}

.contact-banner {
  background: linear-gradient(rgba(31, 26, 23, 0.75), rgba(31, 26, 23, 0.75)),
              url('../images/contact1.jpg') center/cover no-repeat;
}

.page-banner h1,
.contact-banner h1,
.about-banner h1 {
  font-size: 3rem;
  font-weight: 800;
}

.highlight-box {
  background: linear-gradient(135deg, #8b5e3c, #5f3d28);
  color: var(--white);
  border-radius: 24px;
  padding: 35px;
  box-shadow: var(--shadow);
}

.icon-circle {
  width: 62px;
  height: 62px;
  background-color: rgba(139, 94, 60, 0.12);
  color: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.form-control {
  border-radius: 12px;
  padding: 12px 15px;
  border: 1px solid #ddd;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary);
}

footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.85);
}

footer a {
  color: rgba(255, 255, 255, 0.85);
}

footer a:hover {
  color: var(--secondary);
}

.footer-logo {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}

.social-links a {
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  transition: 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary);
  color: var(--white);
}

.small-text {
  color: var(--muted);
  font-size: 0.95rem;
}

.menu-section-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.cta-strip {
  background: linear-gradient(135deg, #1f1a17, #3f2a1d);
  color: var(--white);
  border-radius: 24px;
  padding: 40px;
}

.object-fit-cover {
  object-fit: cover;
}

@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .page-banner h1,
  .contact-banner h1,
  .about-banner h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 85vh;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .menu-card img,
  .gallery-card img {
    height: 240px;
  }
}