:root {
  --gold: #c8a45a;
  --gold-light: #e8c876;
  --gold-dark: #a8843a;
  --brown-dark: #2a1a0a;
  --brown: #3d2b1f;
  --brown-light: #5c3d2e;
  --cream: #fff8f0;
  --cream-dark: #f5e6d3;
  --red: #c0392b;
  --green-dark: #1a5c2a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

html,
body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  background-color: var(--cream);
  color: var(--brown-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

a {
  text-decoration: none;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brown-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#preloader .loader-logo {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 30px;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(200, 164, 90, 0.2);
  border-radius: 3px;
  overflow: hidden;
}

.loader-bar-inner {
  width: 0%;
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
  animation: loadBar 2s ease-in-out forwards;
}

@keyframes loadBar {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Top Bar */
.top-bar {
  background: var(--brown-dark);
  color: var(--cream);
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(200, 164, 90, 0.2);
}

.top-bar a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.3s;
}

.top-bar a:hover {
  color: var(--gold);
}

.top-bar .separator {
  margin: 0 15px;
  color: rgba(200, 164, 90, 0.4);
}

/* Navbar */
.navbar-main {
  background: var(--brown);
  padding: 0;
  transition: all 0.4s ease;
  z-index: 1000;
}

.navbar-nav {
  align-items: center;
}

.navbar-main.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  padding: 0;
}

.navbar-brand-custom {
  padding: 15px 0;
}

.navbar-brand-custom .brand-text {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold);
  text-decoration: none;
  line-height: 1.1;
}

.navbar-brand-custom .brand-sub {
  font-size: 0.65rem;
  color: var(--cream);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
}

.nav-link-custom {
  color: var(--cream) !important;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 25px 20px !important;
  position: relative;
  transition: color 0.3s;
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 20px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: calc(100% - 40px);
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--gold) !important;
}

.navbar-toggler-custom {
  border: 2px solid var(--gold);
  padding: 8px 12px;
}

.navbar-toggler-custom .fa-bars {
  color: var(--gold);
  font-size: 1.2rem;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 8s ease;
}

.hero-slide.active .slide-bg {
  transform: scale(1);
}

.hero-slide .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(42, 26, 10, 0.85) 0%,
    rgba(61, 43, 31, 0.7) 50%,
    rgba(42, 26, 10, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
}

.hero-content .hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 8px 25px;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 25px;
}

.hero-content h1 {
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.2rem;
  width: 80%;
  margin: 0 auto 40px;
  color: var(--cream-dark);
  line-height: 1.8;
}

.btn-gold {
  background: var(--gold);
  color: var(--brown-dark);
  border: 2px solid var(--gold);
  padding: 10px 30px;
  font-size: 0.85rem;
  border-radius: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-gold:hover {
  background: #00000017;
  color: var(--gold);
}

.btn-outline-gold {
  background: #00000017;
  height: fit-content;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 10px 30px;
  font-size: 0.85rem;
  border-radius: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--brown-dark);
}

.hero-slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  pointer-events: none;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s;
  background: rgba(42, 26, 10, 0.5);
}

.slider-arrow:hover {
  background: var(--gold);
  color: var(--brown-dark);
}

/* Section Styles */
.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .subtitle {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-title h2 {
  font-size: 3rem;
  color: var(--brown-dark);
  margin-bottom: 20px;
}

.section-title .divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
  position: relative;
}

.section-title .divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 0.6rem;
  background: var(--cream);
  padding: 0 10px;
}

.section-dark {
  background:
    linear-gradient(rgba(42, 26, 10, 0.8), rgba(42, 26, 10, 0.8)),
    url("../img/bg-texture.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-dark .section-title h2 {
  color: var(--cream);
}

.section-dark .section-title .divider::before {
  background: var(--brown-dark);
}

/* Welcome Section */
.welcome-section {
  background: var(--cream);
}

.welcome-img-wrapper {
  position: relative;
  overflow: hidden;
}

.welcome-img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.welcome-img-wrapper .img-border {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--gold);
  pointer-events: none;
}

.welcome-content {
  padding-left: 50px;
}

.welcome-content .subtitle {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.welcome-content h2 {
  font-size: 2.8rem;
  color: var(--brown-dark);
  margin-bottom: 25px;
}

.welcome-content p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
}

.welcome-signature {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 30px;
}

/* Features */
.feature-card {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 164, 90, 0.15);
  transition: all 0.4s ease;
  height: 100%;
}

.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
  background: rgba(200, 164, 90, 0.05);
}

.feature-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.feature-card .icon i {
  font-size: 1.5rem;
  color: var(--gold);
}

.feature-card h4 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: rgba(255, 248, 240, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Menu Section */
.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 50px;
}

.menu-tab {
  padding: 12px 30px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Lato", sans-serif;
}

.menu-tab.active,
.menu-tab:hover {
  background: var(--gold);
  color: var(--brown-dark);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 25px 0;
  border-bottom: 1px dashed rgba(200, 164, 90, 0.2);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 5px;
}

.menu-item-desc {
  color: rgba(255, 248, 240, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.menu-item-price {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--gold);
  white-space: nowrap;
  margin-left: 30px;
}

.menu-item-badge {
  display: inline-block;
  padding: 2px 10px;
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 10px;
  vertical-align: middle;
}

.badge-popular {
  background: var(--red);
  color: white;
}

.badge-new {
  background: var(--green-dark);
  color: white;
}

.badge-veg {
  background: #27ae60;
  color: white;
}

/* Specials Banner */
.specials-banner {
  background: var(--brown);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.specials-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><path d="M40 0L50 30L80 40L50 50L40 80L30 50L0 40L30 30Z" fill="none" stroke="rgba(200,164,90,0.05)" stroke-width="1"/></svg>')
    repeat;
  background-size: 80px 80px;
}

.special-text {
  text-align: center;
  position: relative;
  z-index: 1;
}

.special-text h2 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.special-text p {
  color: var(--cream-dark);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* About Page */
.about-hero {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background:
    linear-gradient(rgba(42, 26, 10, 0.85), rgba(42, 26, 10, 0.85)),
    url("https://image.qwenlm.ai/public_source/2fcb5881-c886-4ee2-b9ce-748e8bf39192/199d064ad-c651-41b4-842e-2443db4bcd85.png")
      center/cover;
}

.about-hero h1 {
  font-size: 4rem;
  color: var(--gold);
}

.about-hero p {
  color: var(--cream-dark);
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-story {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-story-img {
  flex: 1;
  position: relative;
}

.about-story-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.about-story-img .year-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--brown-dark);
}

.year-badge .year-number {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.year-badge .year-text {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-story-content {
  flex: 1;
}

.about-story-content .subtitle {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-story-content h2 {
  font-size: 2.5rem;
  color: var(--brown-dark);
  margin-bottom: 25px;
}

.about-story-content p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.about-stat {
  text-align: center;
}

.about-stat .stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
}

.about-stat .stat-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
}

/* Team */
.team-card {
  text-align: center;
  margin-bottom: 30px;
}

.team-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  margin-bottom: 20px;
  filter: grayscale(20%);
  transition: filter 0.4s;
}

.team-card:hover img {
  filter: grayscale(0%);
}

.team-card h4 {
  color: var(--brown-dark);
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-card .role {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Menu Page */
.menu-hero {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background:
    linear-gradient(rgba(42, 26, 10, 0.85), rgba(42, 26, 10, 0.85)),
    url("https://image.qwenlm.ai/public_source/2fcb5881-c886-4ee2-b9ce-748e8bf39192/19beaf47c-cf28-4b34-a8e6-d8f69b1a2b17.png")
      center/cover;
}

.menu-category-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold);
  text-align: center;
  margin: 60px 0 30px;
  position: relative;
}

.menu-category-title::after {
  content: "";
  width: 60px;
  height: 2px;
  background: var(--gold);
  display: block;
  margin: 15px auto 0;
}

.menu-page-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.menu-page-item-name {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--brown-dark);
}

.menu-page-item-desc {
  color: #888;
  font-size: 0.85rem;
  margin-top: 5px;
}

.menu-page-item-price {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--gold);
  white-space: nowrap;
  margin-left: 20px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 26, 10, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--gold);
  font-size: 2rem;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.tall img {
  height: 100%;
}

/* Contact Page */
.contact-hero {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background:
    linear-gradient(rgba(42, 26, 10, 0.85), rgba(42, 26, 10, 0.85)),
    url("https://image.qwenlm.ai/public_source/2fcb5881-c886-4ee2-b9ce-748e8bf39192/1be35fcf0-2e81-4348-a62c-1e138b2c21ea.png")
      center/cover;
}

.contact-info-card {
  text-align: center;
  padding: 40px 30px;
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-10px);
}

.contact-info-card .icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card .icon-circle i {
  font-size: 1.5rem;
  color: var(--brown-dark);
}

.contact-info-card h4 {
  color: var(--brown-dark);
  margin-bottom: 15px;
}

.contact-info-card p {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.8;
}

.contact-info-card a {
  color: var(--gold-dark);
  text-decoration: none;
}

.contact-form {
  background: white;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group-custom {
  margin-bottom: 25px;
}

.form-group-custom label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown-dark);
  margin-bottom: 8px;
  display: block;
}

.form-group-custom input,
.form-group-custom textarea,
.form-group-custom select {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #ddd;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  background: var(--cream);
}

.form-group-custom input:focus,
.form-group-custom textarea:focus,
.form-group-custom select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group-custom textarea {
  height: 120px;
  resize: none;
}

/* Reservation */
.reservation-section {
  background: var(--brown-dark);
  padding: 100px 0;
  position: relative;
}

.reservation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(200,164,90,0.03)" stroke-width="0.5"/></svg>')
    repeat;
  background-size: 100px 100px;
}

.reservation-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 164, 90, 0.2);
  padding: 50px;
  position: relative;
  z-index: 1;
}

.reservation-form .form-group-custom label {
  color: var(--cream);
}

.reservation-form .form-group-custom input,
.reservation-form .form-group-custom select {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(200, 164, 90, 0.3);
  color: var(--cream);
}

.reservation-form .form-group-custom input:focus,
.reservation-form .form-group-custom select:focus {
  border-color: var(--gold);
}

.reservation-info {
  color: var(--cream);
  padding: 50px;
}

.reservation-info h3 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 20px;
}

.reservation-info p {
  color: rgba(255, 248, 240, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

.hours-list {
  list-style: none;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(200, 164, 90, 0.15);
  color: rgba(255, 248, 240, 0.7);
}

.hours-list li span {
  color: var(--gold);
}

/* Testimonials */
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 164, 90, 0.15);
  padding: 40px;
  text-align: center;
  transition: all 0.4s;
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.testimonial-card .stars {
  color: var(--gold);
  margin-bottom: 20px;
}

.testimonial-card .quote {
  color: var(--cream-dark);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.testimonial-card .author {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
}

.testimonial-card .author-role {
  color: rgba(255, 248, 240, 0.5);
  font-size: 0.8rem;
}

/* Footer */
.footer {
  background: var(--brown-dark);
  border-top: 1px solid rgba(200, 164, 90, 0.15);
}

.footer-main {
  padding: 80px 0 50px;
}

.footer-brand .brand-name {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 5px;
}

.footer-brand .brand-sub {
  font-size: 0.7rem;
  color: var(--cream-dark);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255, 248, 240, 0.6);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer h5 {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
  color: rgba(255, 248, 240, 0.6);
}

.footer-links a {
  color: rgba(255, 248, 240, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  color: rgba(255, 248, 240, 0.6);
  font-size: 0.9rem;
}

.footer-contact li i {
  color: var(--gold);
  margin-top: 3px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200, 164, 90, 0.3);
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--brown-dark);
  border-color: var(--gold);
}

.fas:hover,
.fas:hover,
.fas:focus,
.fas:focus,
.fab:hover,
.fab:focus {
  animation: icon-circle 1.5s ease-in-out;
}

a:hover .fab,
a:focus .fab {
  animation: icon-circle 1s ease-in-out;
}

a:hover .fas,
a:focus .fas {
  animation: icon-circle 1s ease-in-out;
}

.feature-card:hover .fas,
.feature-card:focus .fas {
  animation: icon-circle 1s ease-in-out;
}

.testimonial-card:hover .fas,
.testimonial-card:focus .fas {
  animation: icon-circle 1s ease-in-out;
}

@keyframes icon-circle {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(1080deg);
  }
}

.footer-bottom {
  border-top: 1px solid rgba(200, 164, 90, 0.15);
  padding: 25px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 248, 240, 0.4);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}
/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--brown-dark);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  font-size: 1.2rem;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--brown-dark);
  color: var(--gold);
}

/* Map */
.map-container {
  width: 100%;
  height: 400px;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) contrast(1.1);
}

/* Newsletter */
.newsletter-section {
  background: var(--gold);
  padding: 60px 0;
}

.newsletter-section h3 {
  color: var(--brown-dark);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.newsletter-section p {
  color: var(--brown);
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--brown-dark);
  background: transparent;
  color: var(--brown-dark);
  font-family: "Lato", sans-serif;
}

.newsletter-form input::placeholder {
  color: rgba(42, 26, 10, 0.5);
}

.newsletter-form button {
  padding: 14px 30px;
  background: var(--brown-dark);
  color: var(--gold);
  border: 2px solid var(--brown-dark);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Lato", sans-serif;
}

.newsletter-form button:hover {
  background: var(--brown);
}

/* Responsive */
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .welcome-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .about-story {
    flex-direction: column;
  }

  .about-story-img img {
    height: 400px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reservation-form {
    padding: 30px;
  }

  .reservation-info {
    padding: 30px;
  }

  .contact-form {
    padding: 30px;
  }

  .nav-link-custom {
    padding: 15px 20px !important;
  }

  .nav-link-custom::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .top-bar {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .menu-tabs {
    gap: 8px;
  }

  .menu-tab {
    padding: 8px 16px;
    font-size: 0.7rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    margin-top: 10px;
  }

  .slider-arrows {
    padding: 0 10px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Spice decoration */
.spice-decoration {
  position: absolute;
  opacity: 0.05;
  font-size: 15rem;
  color: var(--gold);
  pointer-events: none;
}

/* Counter animation */
.counter {
  display: inline-block;
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brown-dark);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.mobile-nav-overlay.show {
  display: flex;
}

.mobile-nav-overlay .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
}

.mobile-nav-overlay a {
  color: var(--cream);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  text-decoration: none;
  margin: 15px 0;
  transition: color 0.3s;
}

.mobile-nav-overlay a:hover {
  color: var(--gold);
}

/* Toast notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--brown-dark);
  color: var(--gold);
  padding: 15px 30px;
  border: 1px solid var(--gold);
  z-index: 10000;
  transition: transform 0.5s ease;
  font-size: 0.9rem;
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-width: 80%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox .close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* Decorative elements */
.ornament {
  text-align: center;
  margin: 30px 0;
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 10px;
}

/* CTA */
.cta {
  display: flex;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 700;
  animation: fab 4s ease-in-out infinite;
}

.cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #000;
  padding: 10px 20px;
  margin: 0 4px;
  border-radius: 100px;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition:
    background 0.25s,
    box-shadow 0.25s;
}

.cta a:hover {
  background: var(--gold-dark);
  box-shadow: 0 4px 15px rgba(200, 164, 90, 0.5);
}

@keyframes fab {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.card {
  text-align: center;
  padding: 20px;
  font-weight: 700;
}

.menu-img {
  background-image: url("../img/pattern.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  position: relative;
  justify-content: center;
  padding: 50px;
}

.menu-img img {
  width: 90%;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--gold);
}

.card:hover img {
  animation: rotate 1s ease-in-out;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
