/* Three Ducks Westhampton - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --primary: #545a49;       /* Deep olive green */
  --secondary: #a3b18a;     /* Sage green */
  --tertiary: #e0e3dd;      /* Light sage */
  --accent: #dda15e;        /* Golden/amber */
  --dark: #2b2b2b;          /* Almost black */
  --light: #fefefe;         /* Off-white */
  --beige: #f5f3ec;         /* Cream/beige */
  --transition: all 0.3s ease-in-out;
  --shadow: 0 5px 15px rgba(0,0,0,0.1);
  --shadow-large: 0 10px 30px rgba(0,0,0,0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 600;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.5rem;
  font-weight: 300;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

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

.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--light);
}

.btn-accent:hover {
  background: transparent;
  color: var(--accent);
}

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, 
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Responsive grid */
@media (min-width: 576px) {
  .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
  .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 768px) {
  .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 992px) {
  .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Spacing utilities */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.px-1 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2 { padding-left: 1rem; padding-right: 1rem; }
.px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-4 { padding-left: 2rem; padding-right: 2rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 1.25rem 0;
  z-index: 100;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header.scrolled {
  padding: 0.75rem 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 1px;
}

.logo img {
  height: 60px;
  margin-right: 10px;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 2.5rem;
}

.nav-link {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  cursor: pointer;
}

/* Alternative header structure styling */
.header-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav .nav-list li {
  margin-left: 2.5rem;
  position: relative;
}

.main-nav .nav-list li a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.main-nav .nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.main-nav .nav-list li a:hover::after,
.main-nav .nav-list li.active a::after {
  width: 100%;
}

.main-nav .nav-list li.active a {
  color: var(--accent);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  transition: var(--transition);
}

@media (max-width: 992px) {
  .nav-item,
  .main-nav .nav-list li {
    margin-left: 1.5rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn,
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav,
  .main-nav {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--light);
    overflow: hidden;
    transition: height 0.3s ease;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  
  .nav.active,
  .main-nav.active {
    height: auto;
    padding: 20px 0;
  }
  
  .nav-list,
  .main-nav .nav-list {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  
  .nav-item,
  .main-nav .nav-list li {
    margin: 10px 0;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--light);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* About Section */
.about {
  padding: 6rem 0;
  background-color: var(--beige);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

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

.about-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

.about-text {
  padding-right: 2rem;
}

.about-img {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--shadow-large);
}

/* Rooms Section */
.rooms {
  padding: 6rem 0;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.room-card {
  background-color: var(--light);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

.room-img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.room-details {
  padding: 1.5rem;
}

.room-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.room-description {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #555;
}

.room-features {
  list-style: none;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.room-features li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.room-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Amenities Section */
.amenities {
  padding: 6rem 0;
  background-color: var(--beige);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

.amenity-card {
  background-color: var(--light);
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.amenity-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.amenity-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.amenity-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 576px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

/* Experiences Section */
.experiences {
  padding: 6rem 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.experience-card {
  position: relative;
  height: 400px;
  border-radius: 5px;
  overflow: hidden;
}

.experience-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.experience-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  color: var(--light);
}

.experience-title {
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background-color: var(--beige);
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-details {
  list-style: none;
  margin-bottom: 2rem;
}

.contact-details li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.contact-icon {
  margin-right: 1rem;
  font-size: 1.2rem;
  color: var(--accent);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

/* Map */
.map {
  height: 400px;
  width: 100%;
  margin-top: 3rem;
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-description {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--light);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
}

.social-links {
  display: flex;
  list-style: none;
}

.social-links li {
  margin-right: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light);
  font-size: 1rem;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--accent);
  color: var(--dark);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Booking Page Styles */
.booking-section {
  padding: 5rem 0;
}

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

@media (max-width: 992px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }
}

.booking-info {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .booking-info {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}

.booking-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

@media (max-width: 768px) {
  .booking-features {
    grid-template-columns: 1fr;
  }
}

.feature {
  background-color: var(--tertiary);
  padding: 1.5rem;
  border-radius: 6px;
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-direct {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 1px solid var(--tertiary);
  border-radius: 6px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.75rem;
  font-size: 1.25rem;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.phone-link i {
  margin-right: 0.5rem;
  color: var(--accent);
}

.phone-link:hover {
  color: var(--accent);
}

.booking-form {
  background-color: var(--beige);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-header {
  margin-bottom: 1.5rem;
}

.form-header h3 {
  margin-bottom: 0.25rem;
}

.form-header p {
  font-size: 0.9rem;
  color: #777;
}

.form-group {
  margin-bottom: 1.25rem;
}

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

.form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark);
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="password"],
.form select,
.form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: var(--light);
  transition: var(--transition);
  font-family: inherit;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 2px rgba(221, 161, 94, 0.2);
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: #999;
}

.input-icon input {
  padding-left: 2.5rem;
}

.form-group.checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.form-group.checkbox input {
  margin-right: 0.5rem;
  width: auto;
}

.form-group.checkbox label {
  margin: 0;
  font-size: 0.95rem;
}

.form-group.checkbox a {
  color: var(--accent);
  text-decoration: none;
}

.form-group.checkbox a:hover {
  text-decoration: underline;
}

.packages-section {
  padding: 5rem 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 992px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

.package-card {
  background-color: var(--light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.package-card:hover {
  box-shadow: var(--shadow-large);
  transform: translateY(-5px);
}

.package-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent);
  color: var(--light);
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.package-content {
  padding: 1.5rem;
}

.package-content h3 {
  margin-bottom: 0.5rem;
}

.package-features {
  margin: 1rem 0;
  list-style: none;
}

.package-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.package-features li i {
  color: var(--accent);
  margin-right: 0.5rem;
  font-size: 0.85rem;
}

.package-footer {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.package-price {
  font-weight: 600;
  color: var(--dark);
}

.booking-confirmation {
  text-align: center;
  padding: 2rem;
}

.booking-confirmation i {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.booking-confirmation h3 {
  margin-bottom: 1rem;
}

.booking-confirmation p.small {
  font-size: 0.9rem;
  color: #777;
  margin-top: 1rem;
}

.faq-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  background-color: var(--light);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--beige);
}

.faq-question h4 {
  margin: 0;
  font-weight: 500;
  font-size: 1.1rem;
}

.faq-icon {
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0.5rem 0 1.25rem;
  opacity: 0.85;
}

.faq-more {
  text-align: center;
  margin-top: 2.5rem;
}

.faq-more a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

.faq-more a:hover {
  text-decoration: underline;
}

/* Dining Page Styles */
.dining-hero {
  height: 80vh;
  min-height: 550px;
}

.dining-hero .hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.dining-hero .hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--tertiary);
}

.intro-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 992px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
}

.intro-image {
  position: relative;
  box-shadow: var(--shadow-large);
  border-radius: 6px;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  display: block;
}

.intro-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--light);
  padding: 0.75rem;
  font-size: 0.9rem;
  text-align: center;
}

.chef-signature {
  margin-top: 2rem;
  max-width: 200px;
}

.chef-signature img {
  width: 100%;
  height: auto;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.menu-tab {
  background: none;
  border: none;
  padding: 0.75rem 1.5rem;
  margin: 0 0.5rem 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--dark);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.menu-tab:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.menu-tab:hover {
  color: var(--accent);
}

.menu-tab.active {
  color: var(--accent);
}

.menu-tab.active:after {
  width: 50%;
}

.menu-tab-content {
  display: none;
}

.menu-tab-content.active {
  display: block;
}

.menu-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.menu-hours {
  display: flex;
  align-items: center;
  color: #666;
}

.menu-hours i {
  margin-right: 0.5rem;
  color: var(--accent);
}

.menu-download {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.menu-download i {
  margin-right: 0.5rem;
}

.menu-download:hover {
  color: var(--accent);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

@media (max-width: 992px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

.menu-category h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--tertiary);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.menu-item {
  margin-bottom: 1.5rem;
  position: relative;
}

.menu-item.featured {
  padding: 1rem;
  border: 1px dashed var(--accent);
  border-radius: 6px;
  background-color: rgba(221, 161, 94, 0.05);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.menu-item h4 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--accent);
}

.item-tags {
  margin-top: 0.5rem;
}

.item-tags span {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  background-color: var(--tertiary);
  border-radius: 30px;
  margin-right: 0.5rem;
  color: var(--dark);
}

.item-tags span:last-child {
  margin-right: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: var(--light);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.feature-icon {
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background-color: var(--tertiary);
  border-radius: 50%;
  color: var(--accent);
  font-size: 2rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-weight: 500;
}

.dining-gallery {
  padding: 3rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 0;
  height: 300px;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    height: auto;
    grid-auto-rows: 200px;
  }
}

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

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.experiences-slider {
  position: relative;
  margin-top: 3rem;
}

.experience-slide {
  display: flex;
  background-color: var(--light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

@media (max-width: 992px) {
  .experience-slide {
    flex-direction: column;
  }
}

.experience-image {
  flex: 0 0 40%;
}

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

.experience-content {
  flex: 1;
  padding: 2.5rem;
}

.experience-details {
  display: flex;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.detail {
  margin-right: 2rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.detail i {
  margin-right: 0.5rem;
  color: var(--accent);
}

.experience-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.experience-prev,
.experience-next {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.experience-prev:hover,
.experience-next:hover {
  color: var(--accent);
}

.experience-dots {
  display: flex;
  margin: 0 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--tertiary);
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--accent);
}

.reservation-section {
  padding: 5rem 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/reservation-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--light);
}

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

@media (max-width: 992px) {
  .reservation-grid {
    grid-template-columns: 1fr;
  }
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (max-width: 576px) {
  .contact-options {
    grid-template-columns: 1fr;
  }
}

.contact-option {
  text-align: center;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.contact-option i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.contact-option h4 {
  margin-bottom: 0.5rem;
}

.contact-option a {
  color: var(--light);
  text-decoration: none;
  transition: var(--transition);
}

.contact-option a:hover {
  color: var(--accent);
}

.hours-info {
  margin-top: 2rem;
}

.hours-info h4 {
  margin-bottom: 1rem;
}

.hours-info ul {
  list-style: none;
  padding: 0;
}

.hours-info li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.hours-info li span {
  font-weight: 500;
  width: 100px;
}

.reservation-form {
  background-color: var(--light);
  color: var(--dark);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-large);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #777;
  text-align: center;
}

.reservation-confirmation {
  text-align: center;
  padding: 2rem;
}

.reservation-confirmation i {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.reservation-confirmation h3 {
  margin-bottom: 1rem;
}

.reservation-confirmation p.small {
  font-size: 0.9rem;
  color: #777;
  margin-top: 1rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 992px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}

.event-card {
  background-color: var(--light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.event-image {
  height: 200px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.05);
}

.event-content {
  padding: 1.5rem;
}

.event-details {
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}

.event-details li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.event-details li i {
  margin-right: 0.75rem;
  color: var(--accent);
}

.events-cta {
  text-align: center;
  margin-top: 3rem;
}

.testimonials-slider {
  margin-top: 3rem;
  position: relative;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide:first-child {
  display: block;
}

.testimonial-content {
  background-color: var(--light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-content:before {
  content: '\201C';
  position: absolute;
  top: 0;
  left: 2rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--tertiary);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-stars {
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.testimonial-content blockquote {
  margin: 0;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.8;
  text-align: center;
}

.testimonial-author {
  text-align: center;
  margin-top: 1.5rem;
}

.author-name {
  font-weight: 600;
  font-size: 1.1rem;
}

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

.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  color: var(--accent);
}

.testimonial-dots {
  display: flex;
  margin: 0 1rem;
}

/* Success Message */
.success-message {
  color: #2e7d32;
  background-color: rgba(46, 125, 50, 0.1);
  padding: 0.75rem;
  border-radius: 4px;
  text-align: center;
}

/* Global Background Classes */
.bg-beige {
  background-color: var(--beige);
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Terms of Service Page Styles */
.terms-section {
  padding: 4rem 0;
}

.terms-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.last-updated {
  font-style: italic;
  color: #666;
  margin-bottom: 2rem;
}

.terms-intro {
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.terms-section {
  margin-bottom: 3rem;
}

.terms-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--tertiary);
}

.terms-section h3 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
}

.terms-section p {
  margin-bottom: 1rem;
}

.terms-section address {
  font-style: normal;
  margin: 1.5rem 0;
  line-height: 1.6;
}

/* Custom Grid Layouts */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.instagram-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.instagram-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram-item:hover img {
  transform: scale(1.05);
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.experience-item {
  overflow: hidden;
  border-radius: 8px;
  background-color: var(--light);
  box-shadow: var(--shadow);
}

.experience-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.experience-content {
  padding: 15px;
}

.experience-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.experience-text {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.room-item {
  overflow: hidden;
  border-radius: 8px;
  background-color: var(--light);
  box-shadow: var(--shadow);
}

.room-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.room-content {
  padding: 20px;
}

.room-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.room-text {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  align-items: center;
}

.about-content {
  padding-right: 20px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  align-items: center;
}

.dining-content {
  padding-left: 20px;
}

.dining-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .instagram-grid,
  .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid,
  .dining-grid {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  
  .about-content,
  .dining-content {
    padding: 0;
  }
}

@media (max-width: 576px) {
  .instagram-grid,
  .experiences-grid,
  .rooms-grid {
    grid-template-columns: 1fr;
  }
}

/* Room Detail Layout */
.room-detail {
  padding: 80px 0;
}

.room-detail-content {
  display: grid;
  grid-template-columns: 6fr 4fr;
  grid-gap: 40px;
  align-items: start;
}

.room-detail-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.room-detail-main-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.room-detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.gallery-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
}

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

.room-category {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 5px;
}

.room-detail-info h2 {
  margin-bottom: 20px;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature-list {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 25px;
  columns: 2;
}

.feature-list li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
}

.room-dimensions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}

.dimension {
  padding: 10px 15px;
  background-color: var(--tertiary);
  border-radius: 5px;
  display: inline-block;
}

.dimension-title {
  font-weight: 500;
  margin-right: 5px;
}

.room-price {
  margin-bottom: 25px;
  font-family: 'Cormorant Garamond', serif;
}

.price-from {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.price {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-right: 5px;
}

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

@media (max-width: 992px) {
  .room-detail-content {
    grid-template-columns: 1fr;
  }
  
  .feature-list {
    columns: 1;
  }
  
  .room-detail-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .room-detail-main-img img {
    height: 300px;
  }
  
  .room-detail-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-img {
    height: 100px;
  }
}

/* Gallery Page Styles */
.gallery-tabs {
  padding: 20px 0;
  border-bottom: 1px solid var(--tertiary);
}

.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 8px 16px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.tab-btn:hover::after,
.tab-btn.active::after {
  width: 80%;
}

.tab-btn.active {
  color: var(--accent);
  font-weight: 500;
}

.gallery-section {
  padding: 60px 0;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  padding: 20px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  text-align: left;
}

.gallery-info h3 {
  margin: 0 0 5px 0;
  font-size: 1.3rem;
  font-family: 'Cormorant Garamond', serif;
}

.gallery-info p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
  
  .gallery-image {
    height: 250px;
  }
}

/* Dining Page Styles */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-top: 40px;
}

.dish-card {
  background-color: var(--light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.dish-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.dish-image {
  height: 220px;
  overflow: hidden;
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dish-card:hover .dish-image img {
  transform: scale(1.05);
}

.dish-content {
  padding: 20px;
}

.dish-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.dish-description {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: var(--dark);
  opacity: 0.8;
}

.dish-price {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 992px) {
  .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .dishes-grid {
    grid-template-columns: 1fr;
  }
}

/* Additional logo styling for alternative header */
.header-container .logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary);
}

.header-container .logo img {
  height: 60px;
  margin-right: 10px;
}

.header-container .logo span {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 1px;
}
