* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Basic styling */
body {
  font-family: Arial, sans-serif;
}

/* Header styling */
header {
  background-color: #333;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header img {
  max-width: 100px;
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
}

nav li {
  margin-right: 20px;
}

nav a {
  text-decoration: none;
  color: #fff;
}
/* Existing CSS ... */

/* Mobile menu styles */
.mobile-menu {
  display: none;
}

.menu-icon {
  display: inline-block;
  cursor: pointer;
  padding: 10px;
  position: relative;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: 0.4s;
}

/* Mobile navigation styles */
.mobile-nav {
  list-style: none;
  display: none;
  flex-direction: column;
  background-color: #444;
  padding: 20px;
  position: absolute;
  top: 60px;
  right: 0;
  width: 100%;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.mobile-nav li {
  margin: 10px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  /* Existing media query ... */

  /* Show mobile menu */
  .mobile-menu {
    display: block;
  }

  /* Hide desktop navigation */
  nav ul {
    display: none;
  }
}


/* Banner styling */
.banner img {
  width: 100%;
  height: auto;
}

/* Booking options section styling */
.booking-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
}

.booking-option {
  width: calc(33.33% - 20px);
  margin-bottom: 20px;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.booking-option:hover {
  transform: translateY(-5px);
}

.booking-option img {
  max-width: 80px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.booking-option h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.booking-option p {
  font-size: 0.9rem;
  color: #666;
}

.booking-button {
  display: inline-block;
  padding: 8px 16px;
  background-color: #7b2d63;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
}

.booking-button:hover {
  background-color: #7b2d63;
}

/* Footer styling */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .booking-option {
    width: 100%;
  }
}
/* Your existing CSS styles ... */

/* Styling for the coming soon banner */
.coming-soon-banner {
  text-align: center;
  background-color: #f5f5f5;
  padding: 50px 0;
}

.coming-soon-banner img {
  max-width: 100%;
  height: auto;
}

.coming-soon-banner h2 {
  font-size: 1.5rem;
  margin-top: 20px;
  color: #333;
}

/* Animation for bouncing effect */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.coming-soon-banner img,
.coming-soon-banner h2 {
  animation: bounce 3s infinite;
}

/* Styling for the contact section */
#contact {
  text-align: center;
  background-color: #f9f9f9;
  padding: 50px 0;
}

/* Styling for the form container */
#contact form {
  max-width: 500px;
  margin: 0 auto;
}

/* Styling for form groups (labels + inputs/textarea) */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

/* Styling for form inputs and textarea */
.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Styling for form select */
.form-control select {
  appearance: none;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: url("down-arrow.png") no-repeat right center / 20px;
}

/* Styling for the submit button */
.btn-primary {
  background-color: #7b2d63;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: #7b2d63;
}

/* Styling for Google Maps iframe */
#contact iframe {
  border: 1px solid #ccc;
  border-radius: 5px;
}

.circular-frame {
  border-radius: 50%;
  border: 4px solid #7b2d63;
  width: 150px;
  height: 150px;
  display: block;
  margin: 0 auto;
}

.circular-frame-icon {
  font-size: 50px;
  color: #7b2d63;
}

