:root {
  --olive: #556b2f;
  --gold: #d4af37;
  --white: #ffffff;
  --dark: #1a1a1a;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f6f6f6;
  color: #333;
}
header {
  background-color: var(--olive);
  color: var(--white);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.branding { 
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 40px;
  width: auto;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5em;
  letter-spacing: 1px;
  margin: 0;
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  color: var(--gold);
  text-decoration: none;
  margin-left: 25px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
  color: var(--white);
}

#nav-links {
  display: none;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

#nav-links.show {
  display: flex;
}

/* Desktop: Show nav */
@media (min-width: 769px) {
  #nav-links {
    display: flex !important;
    flex-direction: row;
    gap: 20px;
  }

  .menu-toggle {
    display: none; /* Hide menu icon on desktop */
  }
}

/* Mobile: Nav is hidden until toggled */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  nav.show {
    display: flex;
  }

  nav a {
    margin: 10px 0;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }
}


.hero {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 20px;  /* Rounded bottom corners */
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}
.hero::before,
.hero-slider {
  background-size: cover;
  background-position: center;
  height: 100%; /* ✅ Now matches the new smaller hero height */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('./img/Home-page.jpg') center/cover no-repeat;
  filter: blur(3px);
  z-index: 1;
}
.hero-slider {
  background-image: url('./img/Home-Page1.jpg'); /* Add your background image here */
  background-size: cover;
  background-position: center;
  z-index: 1;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  filter: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; 
}

.hero h2 {
  font-size: 3em;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.hero p {
  margin-top: 10px;
  font-size: 1.2em;
  color: var(--gold);
}

.btn,
.book-btn{
  margin-top: 20px;
  padding: 12px 30px;
  background-color: var(--gold);
  border: none;
  color: var(--white);
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover,
.book-btn:hover {
  background-color: #b89b2f;
}

section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.service {
  background-color: var(--white);
  padding: 30px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 4px 15px rgba(85, 107, 47, 0.01);
  border-radius: 10px;
}

.service h3 {
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #ccc;
}

.info-box {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.info-box h3 {
  font-family: 'Playfair Display', serif;
  color: var(--olive);
  margin-bottom: 15px;
}

.map-container {
  margin-top: 15px;
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.testimonials {
  background-color: #eee;
  padding: 60px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial {
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
  text-align: center;
}

/*Booking Section*/
nav a {
  color: var(--gold);
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}
.custom-booking {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  max-width: 500px;
  margin: 40px auto;
  text-align: center;
}

.custom-booking h3 {
  margin-bottom: 20px;
  color: var(--olive);
}

.custom-booking input,
.custom-booking select,
.custom-booking button {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  font-size: 1em;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.custom-booking button {
  background-color: var(--gold);
  color: white;
  border: none;
  cursor: pointer;
}

.custom-booking button:hover {
  background-color: var(--gold);
}

.book-btn {
  margin-top: 20px;
  background-color: var(--gold);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: 0.3s;
}

.book-btn:hover {
  background-color: #b89b2f;
  color: var(--white)
}

#booking {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
}

.booking-title {
  text-align: center;
  color: var(--olive);
  font-size: 2em;
  margin-bottom: 20px;
}

#setmore_button_iframe {
  display: inline-block;
}

/*Policy Section*/
.policy-page {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5em;
  font-family: 'Playfair Display', serif;
  color: var(--olive);
  position: relative;
  margin-bottom: 40px;
}

.section-title::after {
  content: "";
  width: 100px;
  height: 4px;
  background-color: var(--gold);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.policy-card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.policy-list {
  list-style-type: disc;
  padding-left: 20px;
  line-height: 1.8;
  color: #444;
  font-size: 1.1em;
}

  /* Footer Section*/
footer {
  background-color: var(--olive);
  color: var(--white);
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
  border-top: 4px solid var(--gold);
}
footer p {
  margin-bottom: 15px;
  font-size: 1em;
}

footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

footer .social-icons a img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

footer .social-icons a img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}



