:root {
  --primary: #8B5A2B;
  --primary-light: #A67C52;
  --secondary: #D4AF37;
  --orange: #E67E22;
  --light: #F8F5F2;
  --light-gray: #E8E8E8;
  --dark: #333;
  --darker: #222;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  background-color: #FFF;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

/* Header - Preserved White */
header {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
              url('../assets/dinner/d1.jpg') center/cover no-repeat !important;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding-top: 80px;
}

header h1 {
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  color: #fff !important;
}

header p {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-weight: 300;
  color: #fff !important;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Navbar - Skin Color */
.navbar {
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #F5E7D9 !important;
}

.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--primary) !important;
}

.nav-link {
  color: var(--dark) !important;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0 10px;
  position: relative;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.nav-link:hover {
  color: var(--primary) !important;
}

.btn-reservation {
  background-color: var(--primary);
  color: white !important;
  padding: 8px 20px !important;
  border-radius: 30px;
  margin-left: 15px;
  transition: all 0.3s;
}

.btn-reservation:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

/* Buttons */
.btn-explore {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 12px 30px;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.btn-explore:hover {
  background-color: white;
  color: var(--primary);
}

/* Updated Carousel Styles */
.carousel {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  max-height: 500px; /* Set maximum height */
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: contain; /* Changed from cover to contain */
  max-height: 500px;
  margin: 0 auto;
  display: block;
}

.carousel-control-prev, 
.carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: var(--orange);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev:hover, 
.carousel-control-next:hover {
  background-color: #d4691a;
}

/* Welcome Section */
.welcome {
  background-color: white;
  padding: 80px 0;
}

.welcome-text {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 500;
}

.welcome-slogan {
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
}
/* Updated Reviews Section */
.reviews .carousel-item {
  padding: 40px 10%;
  text-align: center;
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .reviews .carousel-item {
    padding: 60px 15%;
  }
  .review-text {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .reviews .carousel-item {
    padding: 30px 5%;
  }
  .review-text {
    font-size: 1rem;
  }
}
/* Menu Categories */
.menu-categories {
  background-color: white;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--orange);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  color: #777;
  font-size: 1.1rem;
  font-weight: 300;
}

.category-title {
  font-size: 2rem;
  color: var(--primary);
  position: relative;
  padding-bottom: 10px;
}

.category-title:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 2px;
  background-color: var(--orange);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.menu-categories .card {
  border: none;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.4s;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.menu-categories .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.menu-categories .card-img-top {
  height: 250px;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.menu-categories .card:hover .card-img-top {
  transform: scale(1.03);
}

/* Gallery Section */
.gallery .card {
  border: none;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery .card-img-top {
  height: 250px;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.gallery .card:hover .card-img-top {
  transform: scale(1.05);
}

/* Reviews Section */
.reviews {
  background-color: var(--light);
}

.reviews .carousel-item {
  padding: 60px 15%;
  text-align: center;
}

.review-text {
  font-size: 1.3rem;
  color: var(--dark);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
}

.review-author {
  color: var(--primary);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.3rem;
}

/* Contact Section */
.contact {
  background-color: var(--darker);
  color: white;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: white;
}

.footer-text {
  color: #aaa;
  font-size: 0.95rem;
}

.footer-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--orange);
  bottom: 0;
  left: 0;
}

.footer-contact, .footer-hours {
  list-style: none;
  padding: 0;
  color: #aaa;
}

.footer-contact li, .footer-hours li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--orange);
  width: 20px;
  text-align: center;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: all 0.3s;
}

.social-links a:hover {
  background-color: var(--orange);
  transform: translateY(-3px);
}

.copyright {
  color: #777;
  font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  header h1 {
    font-size: 4rem;
  }
  
  .welcome-text {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  header {
    min-height: 600px;
  }
  
  header h1 {
    font-size: 3rem;
  }
  
  header p {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .menu-categories .card-img-top,
  .gallery .card-img-top {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 30px;
  }
  
  .btn-reservation {
    margin-left: 0;
    margin-top: 10px;
    display: inline-block;
  }
  
  header h1 {
    font-size: 2.5rem;
  }

  .reviews .carousel-item {
    padding: 40px 10%;
  }
}