
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background: linear-gradient(to bottom, #fff8e1, #ffe0b2);
  color: #4e342e;
  position: relative;
  z-index: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

#bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(150, 100, 0, 0.3); 
  z-index: -1;
}




.container {
  padding: 20px;
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5); 
  border-radius: 10px;
  max-width: 1200px;
  margin: 30px auto;
  box-shadow: none;
  color: white; 
}

.container h2 {
  color: #ffcc80; 
}

.container p, 
.container table, 
.container td, 
.container th {
  color: white;
}




header {
  background: rgba(107, 44, 44, 0.85);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  flex-wrap: wrap; 
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  box-sizing: border-box; 
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0; 
}

.logo-title img {
  height: 40px;
  border-radius: 4px;
  border: 2px solid #fff;
}

.logo-title strong {
  font-size: 20px;
  white-space: nowrap; 
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: auto; 
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  white-space: nowrap; 
}

nav a:hover {
  color: #ffd54f;
}

.container, #booking {
  padding-top: 80px;
}

.section {
  display: none;
}

.section.active {
  display: block;
}

h1, h2 {
  color: #6b2c2c;
}

.banner-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.small-banner-img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.small-banner-img:hover {
  transform: scale(1.05);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

table, th, td {
  border: 1px solid #e1da0b;
}

th {
  background-color: #ebe70c;
  color: #dee911;
}

th, td {
  padding: 12px;
  text-align: left;
    background-color: #e36b0f;
  

}

.images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.images-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.images-grid img:hover {
  transform: scale(1.03);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-item {
  font-weight: 200;
  background: #4d4d4d;
  padding: 18px;
  border-radius: 12px;
  border-left: 5px solid #d4af37;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: background 0.4s;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
}

.service-item:hover {
  background: #ffb847;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }

.service-info {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  margin-top: 0;
  color: #5d4037;
  font-size: 15px;
}

.service-info.show {
  max-height: 200px; 
  opacity: 1;
  margin-top: 8px;
}


#booking {
  padding: 50px 20px;
  background: rgba(255, 248, 225, 0.9);
  text-align: center;
  max-width: 700px;
  margin: 40px auto 60px auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}

.booking-form {
  margin: 0 auto;
}

.booking-form h2 {
  font-size: 26px;
  margin-bottom: 30px;
  color: #6b2c2c;
  font-weight: bold;
}

.booking-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.booking-form label {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 15px;
  color: #5a3d1c;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  box-sizing: border-box;
}

input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 10px;
}

.booking-form button {
  background-color: #800000;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.booking-form button:hover {
  background-color: #a52a2a;
}

#confirmation {
  margin-top: 25px;
  padding: 15px;
  background-color: #d4af37;
  color: white;
  border-radius: 8px;
  font-size: 16px;
  display: none;
}


footer {
  text-align: center;
  padding: 15px;
  background: rgba(107, 44, 44, 0.9);
  color: white;
  font-weight: bold;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

/* === Responsive === */
@media (max-width: 600px) {
  .booking-form {
    padding: 30px 20px;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav a {
    margin: 5px 0;
  }

  .small-banner-img,
  .images-grid img {
    height: 140px;
  }
}
