:root {
  --gold: #d4af37;
  --dark-gold: #b8860b;
  --light-gold: #f5d98f;
  --brown: #5c4033;
  --dark-brown: #3e2723;
  --light-brown: #8d6e63;
  --light-gold-bg: #fff9e6;
  --light-brown-bg: #f5efe6;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark-brown);
  padding-top: 56px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--brown);
}

.section-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--dark-gold));
}

/* Navbar */
.navbar {
  transition: all 0.3s ease;
  padding: 15px 0;
}

.navbar-brand img {
  width: 50px;
  height: 50px;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.98) !important;
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .navbar-brand img {
  filter: brightness(0) invert(0);
}

.nav-link {
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

.nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

/* Buttons */
.btn-gold {
  background: linear-gradient(to right, var(--gold), var(--dark-gold));
  color: white;
  border: none;
  font-weight: 500;
  padding: 10px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: linear-gradient(to right, var(--dark-gold), var(--gold));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-weight: 500;
  padding: 10px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: white;
}

/* Backgrounds */
.bg-light-gold {
  background-color: var(--light-gold-bg);
}

.bg-light-brown {
  background-color: var(--light-brown-bg);
}

.bg-dark-brown {
  background-color: var(--dark-brown);
}

/* Hero Section */
.carousel-item {
  height: 80vh;
  min-height: 500px;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
}

.carousel-caption {
  bottom: 30%;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.carousel-caption h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffeed4;
}

.carousel-caption p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Menu Header */
.menu-header,
.contact-header {
  background: linear-gradient(rgba(92, 64, 51, 0.7), rgba(92, 64, 51, 0.7)),
    url("../img/hero2.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-top: -16px;
}

/* Menu Items */
.menu-item {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.menu-item .card-img-top {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-item:hover .card-img-top {
  transform: scale(1.05);
}

.menu-item .price {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 15px 0;
}

/* Package Cards */
.package-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-card .card-img-top {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.package-card:hover .card-img-top {
  transform: scale(1.05);
}

/* Testimonials */
.testimonial-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.text-gold {
  color: var(--gold);
}

/* Contact Info */
.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--light-gold-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}

/* Form */
.form-control,
.form-select {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .carousel-caption h1 {
    font-size: 2.5rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .carousel-item {
    height: 60vh;
  }

  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-caption .btn {
    padding: 8px 20px;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 70px;
  }

  .carousel-item {
    height: 50vh;
  }

  .carousel-caption {
    bottom: 20%;
  }

  .carousel-caption h1 {
    font-size: 1.5rem;
  }

  .carousel-caption p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
}
