/* ===== Selvi Home Stay - Divine Saffron Theme ===== */
body {
  font-family: system-ui, Segoe UI, Roboto, Arial;
  margin: 0;
  padding: 0;
  background: #fffaf3;
  color: #222;
}

/* HEADER & MENU */
header {
  background: #d97706;
  color: white;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header h1 {
  font-size: 22px;
  margin: 0;
}
nav {
  display: flex;
  gap: 15px;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
nav a:hover {
  text-decoration: underline;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 2000;
}
.menu-toggle span {
  background: white;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  border-radius: 2px;
}
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #d97706;
    position: fixed;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 10px;
  }
  nav.active {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
}

/* CONTAINER */
.container {
  max-width: 980px;
  margin: 20px auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* HEADINGS & BUTTONS */
h2, h3 {
  color: #d97706;
}
button {
  margin-top: 12px;
  padding: 10px 14px;
  border: none;
  background: #f59e0b;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}
button:hover {
  background: #b45309;
}

/* FOOTER */
footer {
  background: #b45309;
  color: white;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  margin-top: 30px;
}

/* BANNER */
.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #d97706 0%, #f59e0b 100%);
  text-align: center;
  padding: 10px 0;
}
.banner img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: brightness(95%);
}

/* FORMS */
label {
  display: block;
  margin-top: 8px;
  font-weight: 500;
}
input, textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 700px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.small-muted {
  color: #666;
  font-size: 13px;
}

/* VIDEOS & MAP */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9/16;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  margin: 12px auto;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-frame {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 10px;
}
