@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Open+Sans:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #fff;
  color: #222;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-img {
  height: auto;
  max-height: 60px;
  width: auto;
  max-width: 100px;
}

.site-title {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  margin-left: 10px;
  margin-top: 0.5rem;
  color: #222;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #8C6449;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: none;
}

.slides img.active {
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 2rem;
  z-index: 2;
}

.overlay h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  max-width: 90%;
}

.buttons .btn {
  background-color: #CEAA9A;
  color: white;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.buttons .btn:hover {
  background-color: #b9937f;
}

.site-footer {
  background-color: #f8f8f8;
  color: #666;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
  border-top: 1px solid #ddd;
}

.site-footer a {
  color: #8C6449;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Mobile Styles */
@media screen and (max-width: 600px) {
  .logo-img {
    max-width: 80px;
    max-height: 45px;

  }

  .site-title {
    font-size: 1.3rem;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: white;
    padding: 1rem;
    position: absolute;
    top: 70px; /* Adjust based on header height */
    left: 0;
    z-index: 999;
  }

  #navLinks.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .overlay h1 {
    font-size: 2.2rem;
  }
}

/* Desktop default nav */
#navLinks {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
  justify-content: flex-end;
}

/* Mobile override */
@media screen and (max-width: 600px) {
  #navLinks {
    display: none;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 999;
  }

  #navLinks.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
/* HERO VIDEO STYLES */
.hero-video {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2rem;
  display: block;
}

/* MOBILE: shrink video height */
@media screen and (max-width: 768px) {
  .hero-video {
    max-height: 180px !important;
    height: auto !important;
    width: 100% !important;
    border-radius: 6px;
    margin-bottom: 1rem;
  }
}
.video-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.contact-section {
  padding: 2rem;
  text-align: center;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  text-align: left;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.contact-form button {
  background-color: #CEAA9A;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #BBDDBB;
}
.menu-toggle {
  position: absolute;
  right: 20px;
  top: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
}
