body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333333;
}
.logo-container img {
    height: 200px;
    display: block; /* Ensures the shadow applies nicely all around */
    margin: auto; /* Centers the logo if the header has enough space */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); /* Adjust the fade effect */
    border-radius: 30px; /* Optional: Adds a slight rounded corner to soften the edges */
}

header {
    background-color: #8b5f0c;
    color: #ffffff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
  font-family: 'Merriweather', serif;
    margin: 0;
    font-size: 400%;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display:flex;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration:solid;
    color: #ffffff;
    font-weight: bold;
    padding: 5px 20px; /* Adds padding for better clickability and appearance */
    border-radius: 15%;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effects */
}
nav ul li a:hover {
    background-color: #333333; /* Darker shade on hover for visibility */
    color: #ffffff; /* Keeps text color white, can change if needed */
}
/*drop down SHERRY*/
.menu-container {
    position: relative;
    display: inline-block;
  }
  
.menu-button {
    background-color: #8b5f0c;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor:pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .menu-button:hover {
    background-color: #a76d00;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 1;
    border-radius: 5px;
  }
  
  .dropdown-menu a {
    display: block;
    padding: 8px 12px;
    color: #8b5f0c;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .dropdown-menu a:hover {
    background-color: #f0f0f0;
  }
  .hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 25px;
  }
  
  .hamburger-icon .line {
    background-color: white;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    transition: background-color 0.3s ease;
  }
  
  .menu-button {
    background-color: #8b5f0c;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }
  
  .menu-button:hover .line {
    background-color: #ffffff;
  }
  .menu-container {
    position: relative; /* Ensure the dropdown menu is positioned relative to this container */
  }
  
  .dropdown-menu {
    display: none; /* Initially hidden */
    position: absolute; /* Positioned relative to the .menu-container */
    top: 100%; /* Positions the dropdown just below the button */
    right: 0; /* Aligns the dropdown menu to the right of the container */
    background-color: #6a4603; /* Matches the header background */
    color: white;
    width: 150px; /* Set the width as needed */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000; /* Ensures it appears above other elements */
  }
  
  .dropdown-menu a {
    display: block; /* Ensures each link takes up full width */
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s ease;
  }
  
  .dropdown-menu a:hover {
    background-color: #a76d00;
  }
  
  .menu-container:hover .dropdown-menu {
    display: block; /* Show the menu when hovering over the container */
  }
  
  body {
    overflow-y: auto; /* Ensures the scrollbar remains unaffected */
  }
  /*sherry */
.hero {
    text-align: center;
    padding: 50px 20px;
    background: url("hero-image.jpg") no-repeat center center/cover;
    color: #0e0c0c;
}

.hero-image {
  max-width: 40%; /* Adjust this value to control the max size */
  width: 20%;
  height: auto; /* Maintains the aspect ratio */
  border-radius: 20%; /* Keeps the rounded edges */
  display: block; /* Ensures proper alignment */
  margin: 0 auto; /* Centers the image */
}

@media (max-width: 768px) {
  .hero-image {
    max-width: 60%; /* Adjust for smaller screens */
    width: 40%;
  }
}

@media (max-width: 480px) {
  .hero-image {
    width: 40%;
    max-width: 80%; /* Further adjustment for very small screens */
  }
}


.slideshow-container {
    position: relative;
    max-width: 80%; /* Adjust the width as needed */
    margin: 20px auto; /* Adds margin to top/bottom and auto centers the slideshow */
}

.mySlides {
    display: none;
}

.mySlides.active {
    display: block;
}

.slideshow-container img {
    width: 100%; /* Ensures image scales to the container's width */
    max-height: 450px; /* Adjust max-height to your preference */
    object-fit: cover; /* Ensures the aspect ratio is maintained without distortion */
}

.promo-box {
    position:relative;
    width: 80%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px auto 20px; /* Negative margin to pull the box up towards the slideshow */
    border-radius: 10px;
    text-align: center;
    z-index: 2;
}

.promo-button {
    display:flow-root;
    padding: 10px 20px;
    background-color: #8b5f0c;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.promo-button:hover {
    background-color: #333333;
}

.section {
    padding: 20px;
    text-align: center;
}

.section h3 {
    color: #8b5f0c;
}

#amenities {
    text-align: center;
    padding: 20px;
}

.amenities-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.amenity-box {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 200px;
    text-align: center;
    padding: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.amenity-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.amenity-box p {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.amenity-box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 20px;
  }
  
  .amenity-item {
    text-align: center;
  }
  
  .amenity-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
  }
  
  .amenity-item img:hover {
    transform: scale(1.05);
  }
  
  .amenity-item p {
    margin-top: 8px;
    font-weight: bold;
  }
/* Gallery Styles */
.gallery {
    display: flex; /*change made by zee */
    flex-wrap: wrap; /*change made by zee */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 20px;
  }
  
  .gallery img {
    width: 200px; /*change made by zee */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;/*zee*/
  }
  
  .gallery img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);

  }
  
/* Location Section */
.location-boxes {
    display: flex;
    justify-content: center; /* Centers the boxes */
    gap: 20px; /* Adds space between the boxes */
    flex-wrap: nowrap; /* Prevents wrapping */
    overflow-x: auto; /* Enables horizontal scrolling for smaller screens */
    padding: 10px; /* Adds padding for visual spacing */
    scrollbar-width: thin; /* For modern browsers, makes the scrollbar less intrusive */
}
.location-box {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px; /* Fixed width for consistency */
    text-align: center;
    transition: transform 0.3s ease;
    flex-shrink: 0; /* Prevents boxes from shrinking */
    overflow: hidden;
}

.location-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.location-box h4 {
    color: #8b5f0c;
    margin-bottom: 15px;
}

.location-box p {
    color: #666;
    margin-bottom: 15px;
}

.location-link {
    background-color: #8b5f0c;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.location-link:hover {
    background-color: #333333;
}

.location-box:hover {
    transform: scale(1.05); /* Adds a slight zoom effect on hover */
}
/* Lightbox styles */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .lightbox-content {
    position: relative;
  }
  
  .lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
  }
  
  .lightbox:target {
    display: flex; /* Show lightbox when targeted */
  }
  
  .lightbox .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
  }
  
  .nav-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }
  
  .nav-buttons a {
    font-size: 30px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
  }
  
  .nav-buttons a:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  /*experiment2
  .tabs {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width:thin; 
    -ms-overflow-style: none; 
    gap: 8px;
  }
  
  .tabs::-webkit-scrollbar {
    display: none; 
  }
  
  .tab-button {
    white-space: nowrap; 
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    background: #f0f0f0;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
  }
  
  .tab-button.active {
    background-color: #8b5f0c;
    color: white;
  }
  
  .tab-button:hover {
    background-color: #8b5f0c;
  }
  experiment2*/
  /*experiment*/
  .tabs {
    display: flex;
    transition: transform 0.3s;
    justify-content: center;
    flex-wrap: nowrap;
    scrollbar-width:thin; 
    -ms-overflow-style: none; 
    overflow-x: auto;
    margin-bottom: 30px;
  }
  .tabs::-webkit-scrollbar {
    display:none; 
  }
  .tab-button {
    padding: 35px 20px; /*for size*/
    margin: 0 5px;
    white-space: nowrap; 
    font-size: 16px;
    border:none;
    background: #f0f0f0;
    cursor: pointer;
    color: black;
    border-radius: 12px;
    transition: background-color 0.3s;
    transition: transform 0.3s;
  }
  
  
  .tab-button.active{
    background-color: #8b5f0c;
    color: white;
  }
  .tab-button:hover {
    background-color: #8b5f0c;
    color: white;
    transform: scale(1.05);
  }
  
  .tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }
 /*experiment*/  
.book-now-section {
  text-align: center;
  margin: 40px 0;
}

.book-now-button {
  background-color: #8b5f0c;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.2s;
}

.book-now-button:hover {
  background-color: rgb(177, 112, 8);
  transform: scale(1.05);
}
/*clickable photos*/
.clickable-photo img {
  width: 300px; /* Adjust as needed */
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.clickable-photo img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}


footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .social-links {
    margin-top: 10px;
}

footer .social-links a {
    margin: 0 10px;
    display: inline-block;
}

footer .social-links img {
    height: 30px; /* Adjust size as needed */
    width: auto;
    transition: transform 0.3s ease;
}

footer .social-links a:hover img {
    transform: scale(1.1); /* Slightly enlarge icons on hover */
}


@media (max-width: 768px) {
    header h1 {
        font-size: 20px;
        margin-left: 2%;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin-bottom: 5px;
    }

    .location-boxes {
        flex-direction: column;
        align-items: center;
    }

    .location-box {
        width: 80%; /* Adjust width for small screens */
        margin-bottom: 20px;
    }
}
