/* Base Styles */
:root {
  --primary: #a09266;
  --primary-dark: #8a7d55;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
}

.header-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
}

.nav-menu {
  display: none;
}

.nav-menu.active {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 1rem;
}

.nav-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
    gap: 2rem;
    position: static;
    background: none;
    padding: 0;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  color: var(--white);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.slides {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.slider-btn.prev {
  left: 1rem;
}

.slider-btn.next {
  right: 1rem;
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 4.5rem;
  }
}

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 48rem;
}

/* Booking Widget */
.booking-widget {
  background: var(--white);
  margin-top: -5rem;
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .booking-form {
    grid-template-columns: repeat(4, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Rooms Section */
.rooms-section {
  padding: 5rem 1rem;
  max-width: 80rem;
  margin: 0 auto;
}

.rooms-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.room-card {
  background: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.room-card img {
  width: 100%;
  height: 400px; /* Fixed height for room images */
  object-fit: cover;
  aspect-ratio: 4/3; /* Maintain 4:3 aspect ratio */
}

.room-content {
  padding: 1.5rem;
}

.room-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.room-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 1.5rem;
  color: var(--primary);
}

/* Reviews Section */
.reviews-section {
  background: var(--gray-50);
  padding: 5rem 1rem;
}

.reviews-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.reviews-carousel {
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
  height: 16rem;
}

.review {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all 0.5s;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.review.active {
  opacity: 1;
}

.stars {
  color: var(--primary);
  margin-bottom: 1rem;
}

.author {
  font-weight: 600;
  margin-top: 1rem;
}

.role {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 1rem;
  max-width: 80rem;
  margin: 0 auto;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-light);
}

.info-item svg {
  color: var(--primary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 3rem 1rem;
}

.footer-content {
  max-width: 80rem;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
  color: var(--gray-200);
}

.footer-links {
  list-style: none;
}

.footer-links a {
  color: var(--gray-200);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  text-align: center;
  color: var(--gray-200);
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--primary-dark);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

/* Form Elements */
input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.375rem;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(160, 146, 102, 0.2);
}

/* Add these to styles.css */

/* Dining Section */
.dining-section {
  padding: 5rem 1rem;
  max-width: 80rem;
  margin: 0 auto;
}

.dining-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.dining-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .dining-content {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

.dining-content img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
}

.dining-text {
  padding: 1.5rem;
  background-color: var(--gray-50); /* Optional background for text */
  border-radius: 0.5rem;
}

/* Weddings Section */
.weddings-section {
  padding: 5rem 1rem;
  max-width: 80rem;
  margin: 0 auto;
}

.weddings-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.weddings-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .weddings-content {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

.weddings-content img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
}

.weddings-text {
  padding: 1.5rem;
  background-color: var(--white); /* Optional background for text */
  border-radius: 0.5rem;
}

/* Meetings Section */
.meetings-section {
  padding: 5rem 1rem;
  max-width: 80rem;
  margin: 0 auto;
}

.meetings-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.meetings-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .meetings-content {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

.meetings-content img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
}

.meetings-text {
  padding: 1.5rem;
  background-color: var(--gray-50); /* Optional background for text */
  border-radius: 0.5rem;
}