.video-section {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* for 16:9 aspect ratio */
    overflow: hidden;
}

    .video-section video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .video-section button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #000;
        color: #fff;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
    }

/* Logo styles */
#logo {
  height: 100px; /* Adjust as needed */
  width: auto;
  margin-bottom: 20px;
}

 /* Add this CSS to your existing stylesheet for image section*/
  .arrow { position: absolute; top: 50%; transform: translateY(-50%); cursor: pointer; font-size: 24px; padding: 10px; background: rgba(0, 0, 0, 0.5); color: white; }
  .arrow.left { left: 10px; }
  .arrow.right { right: 10px; }

  


/* Image gallery styles */
.image-gallery {
  overflow-x: auto;
  white-space: nowrap;
  padding: 20px 0;
}

.image-gallery .scroll-container img {
  display: inline-block;
  height: 200px; /* Adjust as needed */
  margin-right: 10px;
  vertical-align: middle;
}
 /* Fixed box size for gallery image only */
 .fixed-box {
  width: 100%; /* Make the gallery image responsive */
  max-width: 400px; /* Maintain the max width for larger screens */
  height: auto; /* Allow the height to adjust dynamically */
  object-fit: contain;
  display: block;
  margin: auto;
  background-color: #f0f0f0; /* Optional: Adds a background color to the box */
  border: 1px solid #ccc; /* Optional: Adds a border for better visibility */
}

/* Optional arrow styles for popout */
.arrow {
  position: absolute;
  top: 50%;
  cursor: pointer;
  font-size: 24px;
  color: white;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.5);
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

/* Base styles that apply to all devices */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    text-align: center;
}

/* Styles for tablets (devices with screen width between 768px and 1024px) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  /* Tablet-specific styles here */
}

/* Styles for mobile devices (devices with screen width up to 767px) */
@media only screen and (max-width: 767px) {
  /* Mobile-specific styles here */
  nav {
    flex-direction: column;
  }
  nav a {
    padding: 15px;
    margin: 5px 0;
  }
  .container {
    width: 95%;
  }
  header, footer {
    padding: 20px;
  }
  /* Adjust font sizes, image sizes, and other elements as needed */
}

/* Styles for desktops and laptops (devices with screen width over 1024px) */
@media only screen and (min-width: 1024px) {
  /* Desktop-specific styles here */
}

/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Arial', sans-serif;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Styling the body */
body {
  line-height: 1.6;
  color: #333;
  background-color: white; /* Forest Green */
  padding: 10px;
}

/* Container for sections */
.container {
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  padding: 0 20px;
}

/* Main header */
header {
    text-align: center;
    color: black;
    padding-top: 30px;
    background: black;
    color: white;
}

    header a {
        color: black;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 16px;
    }

    header ul {
        padding: 0;
        list-style: none;
    }

    header li {
        float: left;
        display: inline;
        padding: 0 20px 0 20px;
    }

header h1 {
  margin-bottom: 20px;
}

/* Navigation bar */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  margin: 0 5px;
  transition: background-color 0.3s ease;
}

    nav a:hover,
    nav a.current {
        background-color: powderblue; /* Darker shade of Forest Green */
        border-radius: 5px;
    }

/* Section styles */
section {
  padding: 20px 0;
  color: white;
}

section h2 {
  margin-bottom: 10px;
}

section p,
section li {
  margin-bottom: 10px;
}

/* Button styles */
.button {
  display: inline-block;
  background: black; /* Darker shade of Forest Green */
  color: white;
  padding: 10px 20px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.button:hover {
  opacity: 0.9;
}

/* Form styles */
form input[type="text"],
form input[type="number"],
form input[type="email"],
form input[type="tel"],
form input[type="date"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

form input[type="submit"] {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: black; /* Darker shade of Forest Green */
  color: white;
  cursor: pointer;
}

form input[type="submit"]:hover {
  opacity: 0.9;
}

/* Footer styles */
footer {
  text-align: center;
  padding: 20px;
  background: black;
  color: white;
}

/* Media queries for responsive design */
@media (max-width: 700px) {
  header,
  nav,
  .container,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  nav {
    flex-direction: column;
  }

  nav a {
    margin-bottom: 10px;
  }
}

/* Hamburger menu styles */
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

/* Collapsible menu styles */
.collapsible-menu {
  display: none;
}

/* Show collapsible menu when hamburger is clicked */
.hamburger.active + .collapsible-menu {
  display: block;
}

/* Section colors */
#about {
  background-color: powderblue; /* Forest Green */
  color:black;
}
#region {
    background-color: powderblue; /* Darker shade for contrast */
    color: black;
}

#booking {
    background-color: powderblue; /* Forest Green */
    color: black;
}
#facilities {
    background-color: powderblue; /* Darker shade for contrast */
    color: black;
}
#images {
    background-color: powderblue; /* Darker shade for contrast */
    color: black;
}
#contact {
    background-color: powderblue; /* Forest Green */
    color: black;
}

/* Styles for mobile devices */
@media only screen and (max-width: 767px) {
  /* ... */
  .hamburger {
    display: block;
  }
  nav {
    display: none;
  }
  .collapsible-menu {
    display: none;
    flex-direction: column;
  }
  .collapsible-menu a {
    display: block;
    text-align: center;
    padding: 10px;
    border-top: 1px solid white;
  }
}

/* Styles for tablets */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  /* ... */
}

.two-column-section {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}

.column {
    flex: 1; /* Each column takes up equal space */
    padding: 10px;
    box-sizing: border-box;
}

#left-column {
    background-color: #f0f0f0;
}

#right-column {
    background-color: #e0e0e0;
}

.column h3 {
    margin-bottom: 15px;
}

.column img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.column p {
    margin-bottom: 15px;
}

.column button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .column button:hover {
        background-color: #0056b3;
    }

.column ul {
    list-style: none;
    padding: 0;
}

.column li {
    margin-bottom: 10px;
}




/* General styles for desktop */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

#paySection {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}



.payment-section {
  margin-bottom: 20px;
}

.qr-code img {
  display: block;
  margin: 0 auto;
  max-width: 300px;
}

.payment-link a {
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  text-align: center;
}

/* Mobile and tablet styles */
@media only screen and (max-width: 768px) {
  #paySection {
      padding: 15px;
      box-shadow: none;
  }

  h1 {
      font-size: 24px;
  }

  .payment-section {
      margin-bottom: 15px;
  }

  .qr-code img {
      max-width: 200px;
  }

  .payment-link a {
      padding: 8px 15px;
      font-size: 14px;
  }

  button.copy-btn {
      width: 100%;
      padding: 10px;
      font-size: 16px;
      background-color: #28a745;
      color: white;
      border: none;
      border-radius: 5px;
  }

  #copied-msg {
      text-align: center;
      margin-top: 10px;
      font-size: 14px;
  }
}

/* Smaller mobile screens */
@media only screen and (max-width: 480px) {
  h1 {
      font-size: 20px;
  }

  .payment-link a {
      padding: 10px;
      font-size: 12px;
  }

  .qr-code img {
      max-width: 150px;
  }
}
