/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: all 0.3s ease;
}

body {
  background-color: #4B1D1D; /* Maroon */
  color: #F5E1A4; /* Gold */
  min-height: 100vh;
  display: flex;
  text-align: center;
  flex-direction: column;
}

a {
  color: #D4AF37; /* Gold */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #FFD700;
}

main {
  flex: 1;
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

h1, h2 {
  font-family: 'Georgia', serif;
  margin-bottom: 10px;
  margin-top: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D4AF37;
  text-align: center;
  text-shadow: 1px 1px 3px #3E1414;
}

button, input[type="submit"] {
  background-color: #D4AF37;
  border: none;
  padding: 12px 25px;
  font-weight: 700;
  color: #4B1D1D;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

button:hover, input[type="submit"]:hover {
  background-color: #FFD700;
}

input, select {
  padding: 10px;
  border-radius: 5px;
  border: none;
  margin-bottom: 15px;
  width: 100%;
  max-width: 400px;
  font-size: 1rem;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.booking-list table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  color: #F5E1A4;
}

.booking-list th, .booking-list td {
  border: 1px solid #D4AF37;
  padding: 12px 15px;
  text-align: left;
}

.booking-list th {
  background-color: #3E1414;
}

.booking-list tr:nth-child(even) {
  background-color: #5A2222;
}

footer {
  background-color: #3E1414;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
  color: #D4AF37;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.7);
}

/* Smooth fade-in for main content */
main {
  opacity: 0;
  animation: fadeIn 0.8s forwards;
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: 0 auto 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.slide {
  display: none;
  position: relative;
}

.slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  user-select: none;
}

/* Fade animation */
.fade {
  animation-name: fadeEffect;
  animation-duration: 1s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Booking form container */
.booking-form-container {
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid #D4AF37;
  border-radius: 20px;
  padding: 30px 40px;
  max-width: 600px;
  margin: 30px auto 60px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s ease;
}

.booking-form-container:hover {
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.7);
}

.booking-form-container form {
  display: flex;
  flex-direction: column;
}

.booking-form-container label {
  margin-bottom: 8px;
	font-weight: 700 }

	  /* ========== ABOUT US SECTION ========== */
.about-us {
  background-color: #3E1414;
  border-radius: 15px;
  padding: 40px 30px;
  margin-top: 50px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.about-us h2 {
  color: #D4AF37;
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-us p {
  color: #F5E1A4;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}
