body {
  font-family: copper black, sans-serif;
  margin: 0;
  padding: 0;
}
/* 🔝 Top Bar */
.top-bar {
    background: #333;
    padding: 10px;
    text-align: right;
}


/* Content */
.content {
    padding: 40px;
    text-align: center;
}
.title {
  font-size: 36px;
  text-align: center;
  margin: 20px;
  color: darkgreen;
  font-family:carol;
}  

.top-info {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
.logo {
  width: 120px;
  height: auto;
  margin:0px;
  padding: 0 10px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

.language-selector {
  position: relative;
}

.lang-btn {
  background: #222;
  color: #fff;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  width: 150px; /* optional: keeps menu aligned */
}

.lang-menu {
  list-style: none;
  position: absolute;
  left: 0;              /* aligns menu with button */
  top: 100%;            /* opens directly below button */
  margin-top: 5px;      /* small gap */
  background: #fff;
  border: 1px solid #ccc;
  width: 100%;
  display: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 999;
}

.lang-menu li {
  padding: 10px;
  cursor: pointer;
  text-align: left;
}

.lang-menu li:hover {
  background: #f2f2f2;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  background: #4caf50;
  padding: 10px;
}

nav ul li {
  margin: 0 15px;
  cursor: pointer;
  color: white;
  font-weight: bold;
}
/* Style for the Book Now button */
button {
  background-color: #007bff;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Contact form container */
.contact-form {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
}

/* Input and textarea styles */
.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

/* Submit button style */
.contact-form button[type="submit"] {
  background-color: #28a745;
  color: white;
  font-weight: bold;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Hide form initially */
.hidden {
  display: none;
}

.slideshow-container {
  display: flex;
  justify-content: center;
  position: relative;
  height: 100%;
  overflow: hidden;
  width: 100%;
}   
.slide {
  display: none;
  width: 100vw;
  height: 100vh;
  object-fit: cover; /* Makes images or videos fill nicely */
}

.slide.active {
  display: block;
}
.hero-overlay {
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
}

.loader {
  display: none;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #4caf50;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


main {
  padding: 20px;
}
.booking-container {
  text-align: center;
  padding: 10px;
}

#bookNowBtn {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

#bookingForm {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 10px auto;
}

#bookingForm input,
#bookingForm textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

#bookingForm button[type="submit"] {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
}

.hidden {
  display: none;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: green; /* main card background */
  border-radius: 10px;
  padding: 15px;
  width: 250px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
  color: white; /* optional: white text on green */
}

.card-top {
  background: rgba(255, 253, 208, 0.7); /* creamy translucent layer */
  height: 60px;
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
footer {
  background: #222;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background-color: black;
  flex-wrap: wrap;
}

.contact-left, .contact-middle, .contact-right {
  flex: 1;
  min-width: 250px;
}

.contact-left h3,
.contact-middle h3,
.contact-right h3 {
  color: darkgreen;
  margin-bottom: 10px;
}

.social-icons img {
  width: 30px;
  margin-right: 10px;
  horizontal-align:middle;
}

iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 2px;
}