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

body {
    font-family: 'Josefin Sans', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    color: #e6a481;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures the body takes at least full viewport height */
    background-color: #f6f4f2;
}

main {
    flex: 1; /* Ensures the main content area takes up the remaining space */
}

.gallery{
    margin-top: -100px;
}
/* Gallery Wrapper */
.gallery-wrapper {
    position: relative;
    width: 90%;
    height: 70vh;
    overflow: hidden;
    margin: 0 auto; /* Center the gallery */
    padding: 10px 0; /* Added padding for better spacing */
    margin-top: -650px;
}

/* Scrollable Gallery */
.scroll-gallery {
    display: flex;
    overflow-x: auto;
    height: 100%;
    gap: 10px;
    padding: 0 20px; /* Added padding for better v/isual spacing */
}

/* Image Container */
.image-container {
    position: relative;
    flex: 1;
    height: 100%;
    overflow: hidden;
    padding: 0 5px; /* Slight padding for spacing between images */
}

.image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: grayscale(2.3) brightness(0.75);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.image-container:hover {
    flex: 2; /* Slightly expand the image container */
}

.image-container:hover img {
    filter: grayscale(0) brightness(1.1);
    transform: scale(1.1); /* Slightly zoom the image */
    z-index: 2;
}

/* Responsive adjustments for mobile screens */
@media (max-width: 768px) {
    .scroll-gallery {
        padding: 0 10px; /* Reduce padding on smaller screens */
        gap: 5px; /* Reduce gap between images */
    }

    .image-container {
        flex: 1 0 50%; /* Make each image take up 50% of the container width */
        padding: 0 2px; /* Reduce padding between images */
    }

    .image-container:hover {
        flex: 1 0 50%; /* Prevent expansion on hover for mobile */
    }

    .image-container:hover img {
        transform: scale(1); /* Disable zoom effect on hover for mobile */
    }
}

/* Further adjustments for very small screens */
@media (max-width: 480px) {
    .scroll-gallery {
        padding: 0 5px; /* Further reduce padding on very small screens */
        gap: 3px; /* Further reduce gap between images */
    }

    .image-container {
        flex: 1 0 100%; /* Make each image take up 100% of the container width */
        padding: 0 1px; /* Further reduce padding between images */
    }

    .image-container:hover {
        flex: 1 0 100%; /* Prevent expansion on hover for very small screens */
    }
}
/* Overlay Text */
.image-text {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size:  2rem;
    transition: opacity 0.5s ease;
    z-index: 3;
    font-weight: 300;
    font-family: "Cormorant Garamond", serif;

}

.image-container:hover .image-text {
    opacity: 0;
}

@media (max-width: 768px){
    .gallery{
        margin-top: 100px;
    }
 

}

/* Main content area takes the remaining space */
main {
    flex: 1;
}

/* Footer */
#footer {
    background: rgb(85, 98, 91);
    color: white;
    text-align: center;
    padding: 30px 0;
    width: 100%;
    position: relative;
    bottom: 0;
    margin-bottom: 0;
}

footer .container {
    max-width: 100px;
    margin: 0 auto;

}

footer p {
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    #footer {
        padding: 15px 0;
    }
    footer p {
        font-size: 0.9rem;
    }
}
header {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}


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



/* Logo Container (Always Visible) */
.logo-container {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1002; /* Ensure it's above the mobile-nav */
    margin-top: -58px;
    margin-left: -20px;
}

.logo {
    width: 200px;
    height: 200px;
}
.destinations-link {
    position: relative;
  }
  
  .resorts-list {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    z-index: 100;
    width: max-content;
  }
  
  .destinations-link:hover .resorts-list {
    display: flex;
  }
  
  .experiences-column {
    display: flex;
    flex-direction: column;
  }
  
  .experiences-column h3 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #3e5947;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .experiences-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .experiences-column ul li {
    margin: 20px 10px;
  }
  
  .experiences-column ul li a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s;
    font-size: 13px;
  }
  
  .experiences-column ul li a:hover {
    color: #d59874; /* Match your hover color */
  }
  
  .vertical-divider {
    width: 1px;
    background: #ddd;
    height: auto;
  }
  
  
  /* Mobile-specific styles */
  @media (max-width: 768px) {
  .resorts-list ul li a {
  color: #465a65;
  font-weight: bolder;
  
  }
  .destinations-link {
    position: relative;
  }
  
  .resorts-list {
    display: none; /* Hidden by default */
    position: static; /* Display in the normal flow */
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    width: 100%;
  }
  
  .resorts-grid {
    display: flex;
    flex-direction: column; /* Vertical layout */
    gap: 10px; /* Space between links */
    padding: 10px 0; /* Add some padding */
  }
  
  .resorts-grid a {
    color: #fffbf7; /* Match your mobile nav link color */
    text-decoration: none;
    font-size: 6px; /* Slightly smaller font size */
    padding: 8px 20px; /* Add padding for better touch targets */
    background-color: rgba(255, 255, 255, 0.1); /* Light background for visibility */
    border-radius: 4px; /* Rounded corners */
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .resorts-grid a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Hover effect */
    color: #d59874; /* Match your hover color */
  }
  
  /* Push other links down when destinations are expanded */
  .destinations-link.active .resorts-list {
    display: block; /* Show the resorts list */
  
  }
  
  .destinations-link.active ~ li {
    margin-top: 100%; /* Push other links down */
  }
  }
  /* Mobile-specific styles */
  @media (max-width: 1024px) {
  .resorts-list ul li a {
  color: #465a65;
  font-weight: bolder;
  
  }
  .destinations-link {
    position: relative;
  }
  
  .resorts-list {
    display: none; /* Hidden by default */
    position: static; /* Display in the normal flow */
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    width: 100%;
  }
  
  .resorts-grid {
    display: flex;
    flex-direction: column; /* Vertical layout */
    gap: 10px; /* Space between links */
    padding: 10px 0; /* Add some padding */
  }
  
  .resorts-grid a {
    color: #fffbf7; /* Match your mobile nav link color */
    text-decoration: none;
    font-size: 6px; /* Slightly smaller font size */
    padding: 8px 20px; /* Add padding for better touch targets */
    background-color: rgba(255, 255, 255, 0.1); /* Light background for visibility */
    border-radius: 4px; /* Rounded corners */
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .resorts-grid a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Hover effect */
    color: #d59874; /* Match your hover color */
  }
  
  /* Push other links down when destinations are expanded */
  .destinations-link.active .resorts-list {
    display: block; /* Show the resorts list */
  
  }
  
  .destinations-link.active ~ li {
    margin-top: 100%; /* Push other links down */
  }
  }
  
  
  /* Mobile-specific styles */
  @media (max-width: 768px) {
    .resorts-list ul li a {
      color: #465a65;
      font-weight: bolder;
  
    }
    .destinations-link {
        position: relative;
    }
  
    .resorts-list {
        display: none; /* Hidden by default */
        position: static; /* Display in the normal flow */
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        width: 100%;
    }
  
    .resorts-grid {
        display: flex;
        flex-direction: column; /* Vertical layout */
        gap: 10px; /* Space between links */
        padding: 10px 0; /* Add some padding */
    }
  
    .resorts-grid a {
        color: #fffbf7; /* Match your mobile nav link color */
        text-decoration: none;
        font-size: 6px; /* Slightly smaller font size */
        padding: 8px 20px; /* Add padding for better touch targets */
        background-color: rgba(255, 255, 255, 0.1); /* Light background for visibility */
        border-radius: 4px; /* Rounded corners */
        transition: background-color 0.3s ease, color 0.3s ease;
    }
  
    .resorts-grid a:hover {
        background-color: rgba(255, 255, 255, 0.2); /* Hover effect */
        color: #d59874; /* Match your hover color */
    }
  
    /* Push other links down when destinations are expanded */
    .destinations-link.active .resorts-list {
        display: block; /* Show the resorts list */
  
    }
  
    .destinations-link.active ~ li {
        margin-top: 100%; /* Push other links down */
    }
  }
    /* Mobile-specific styles */
  @media (max-width: 1024px) {
    .resorts-list ul li a {
      color: #465a65;
      font-weight: bolder;
  
    }
    .destinations-link {
        position: relative;
    }
  
    .resorts-list {
        display: none; /* Hidden by default */
        position: static; /* Display in the normal flow */
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        width: 100%;
    }
  
    .resorts-grid {
        display: flex;
        flex-direction: column; /* Vertical layout */
        gap: 10px; /* Space between links */
        padding: 10px 0; /* Add some padding */
    }
  
    .resorts-grid a {
        color: #fffbf7; /* Match your mobile nav link color */
        text-decoration: none;
        font-size: 6px; /* Slightly smaller font size */
        padding: 8px 20px; /* Add padding for better touch targets */
        background-color: rgba(255, 255, 255, 0.1); /* Light background for visibility */
        border-radius: 4px; /* Rounded corners */
        transition: background-color 0.3s ease, color 0.3s ease;
    }
  
    .resorts-grid a:hover {
        background-color: rgba(255, 255, 255, 0.2); /* Hover effect */
        color: #d59874; /* Match your hover color */
    }
  
    /* Push other links down when destinations are expanded */
    .destinations-link.active .resorts-list {
        display: block; /* Show the resorts list */
  
    }
  
    .destinations-link.active ~ li {
        margin-top: 100%; /* Push other links down */
    }
  }
@media (max-width: 768px) {
    .language-toggle{
        display: none;
    }
    /* Add sticky class when scrolled */
    .sticky .mobile-header-bar {
        background-color: #f6f4f2 !important; /* Turn white on scroll */
        transition: background-color 0.9s ease, padding 0.9s ease; /* Smooth transition */
    }
  
    .sticky .logo {
        content: url('logo2.svg');
        width: 180px;
        height: 180px;
    }
  
    .logo-container {
        display: none;
    }
  
    /* Mobile header bar style when menu is open */
    body.menu-open .mobile-header-bar {
        background-color: transparent; /* Makes the header transparent */
        box-shadow: none; /* Removes shadow */
    }
  
    /* Close button styling */
    body.menu-open .mobile-header-bar .close-menu {
        display: block; /* Show close button when menu is open */
        font-size: 30px;
        color: #000; /* Set close button color */
        background: none;
        border: none;
        cursor: pointer;
        padding-right: 20px; /* Adjust padding */
    }
  
    /* Default state: Close button hidden */
    .mobile-header-bar .close-menu {
        display: none;
    }
  /* Ensure mobile header bar remains consistent when menu is open */
  body.menu-open .mobile-header-bar {
    height: 65px !important; /* Keep the same height */
    align-items: center !important;
    justify-content: space-between;
    padding: 0 20px;
    background-color: rgba(192, 192, 177, 0.976); /* Ensure it has a visible background */
  }
  
  /* Ensure the logo stays in place */
  body.menu-open .mobile-header-bar .logo {
    width: 120px;
    height: 120px;
    margin-left: -45px; /* Aligns the logo to the left */
    margin-top: -16px;
    transition: none; /* Prevent animation issues */
  }
  
  
    /* Logo alignment */
    .mobile-header-bar .logo {
        width: 120px;
        height: 120px;
        margin-left: -45px; /* Aligns the logo to the left */
        margin-top: -16px;
    }
  
    /* Mobile header bar height */
    .mobile-header-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 65px; /* Consistent height for the header */
        background-color: rgba(255, 255, 255, 0);
        z-index: 1003; /* Keeps it above all elements */
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px; /* Add padding for spacing */
    }
  
    header {
        margin-top: 0; /* Avoid any margin conflicts */
    }
  
    /* Mobile navigation styles */
    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(200, 186, 165);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Align items to the left */
        padding: 20px;
        transform: translateX(-100%); /* Hide by default */
        transition: transform 0.7s ease-in-out;
        z-index: 1000;
        overflow: scroll; /* Prevent full page scroll */
    }
  
    /* Show mobile nav when active */
    .mobile-nav.active {
        transform: translateX(0); /* Slide in the menu */
        transition: transform 0.7s ease-in-out;
    }
  
    /* Scrollbar customization */
    .mobile-nav::-webkit-scrollbar {
        width: 8px;
    }
  
    .mobile-nav::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.5);
        border-radius: 10px;
    }
  
    .mobile-nav::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
    }
  
    .logo {
        margin-bottom: -20px; /* Space below logo */
        align-self: flex flex-end; /* Ensure logo is aligned to the left */
        content: url('logo2.svg');
        width: 200px;
    }
  
    /* Nav container with overflow */
    .nav-container {
        flex-grow: 1;
        overflow-y: auto; /* Enable scrolling for long lists */
        width: 100%;
        max-height: calc(100% - 80px); /* Ensure nav links stay within the view */
    }
  
    /* Navigation links styling */
    .nav-links {
        text-align: left;
        list-style: none;
        margin: 0;
        font-weight: 100;
        padding-left: 10px;
        padding-top: 10px;
    }
  
    .additional-links {
        text-align: left;
        list-style: none;
        margin: 0;
        font-weight: 100;
        padding-left: 10px;
        padding-top: 100px;
    }
  
    .nav-links li, .additional-links li {
        margin: 5px 0;
    }
  
    .nav-links a, .additional-links a {
        color: #fffbf7;
        font-size: 30px;
        padding: 10px 10px;
        display: block;
        transition: color 0.3s ease;
        text-decoration: none;
      
    }
  
    .nav-links a:hover, .nav-links a:focus, .additional-links a:hover, .additional-links a:focus {
        color: #254441; 
    }
  
    /* Separator line */
    .separator {
        width: 100%;
        border: 0;
        border-top: 1px solid #fff;
        margin: 20px 0;
    }
  
    /* Language options styling */
    .language-options {
        display: absolute;
        gap: 15px;
        margin-top: 300px;
    }
  
    .language-options a {
        color: #fff;
        font-size: 16px;
        text-decoration: none;
        transition: color 0.3s ease;
    }
  
    .language-options a:hover, .language-options a:focus {
        color: #254441;
    }
  
    /* Close button inside the mobile header */
    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        color: rgb(192, 192, 177);
        font-size: 30px;
        background: none;
        border: none;
        cursor: pointer;
        transition: color 0.3s ease;
    }
  
    .close-menu:hover, .close-menu:focus {
        color: #ffcc00;
    }
  
    /* Hamburger icon styling */
    .hamburger {
        position: fixed;
        top: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 24px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }
  
    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #4f3323;
        transition: all 0.3s ease;
    }
  
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
  
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
  
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
  
    /* Override sticky styles when mobile nav is active */
    body.menu-open .mobile-header-bar.sticky {
        position: static; /* Remove fixed positioning */
        background-color: transparent !important; /* Make background transparent */
        box-shadow: none !important; /* Remove any shadow */
    }
  
    body.menu-open .mobile-header-bar.sticky .logo {
        content: url('logo2.svg') !important; /* Revert to the original logo */
        width: 200px !important;
        height: 200px !important;
    }
  
    /* Ensure the mobile header bar is transparent when the menu is open */
    body.menu-open .mobile-header-bar {
        background-color: transparent !important;
        box-shadow: none !important;
    }
  
  }
/* Mobile Navigation Menu */
@media (max-width: 1124px) {
   
        .language-toggle{
            display: none;
        }
        .sticky .mobile-header-bar {
            background-color: #f6f4f2;
            transition: background-color 0.9s ease, padding 0.9s ease;
        }
      
      
        .sticky .logo {
          content: url('logo2.svg');
          width: 210px;
          height: 200px !important;
        }
      
        .logo-container {
            display: none;
        }
      
        body.menu-open .mobile-header-bar {
            background-color: transparent;
            box-shadow: none;
        }
      
        body.menu-open .mobile-header-bar .close-menu {
            display: block;
            font-size: 30px;
            color: #000;
            background: none;
            border: none;
            cursor: pointer;
            padding-right: 20px;
        }
      
        .mobile-header-bar .close-menu {
            display: none;
        }
      
        body.menu-open .mobile-header-bar {
            height: 65px !important;
            align-items: center !important;
            justify-content: space-between;
            padding: 0 20px;
            background-color: rgba(192, 192, 177, 0.976);
        }
      
        body.menu-open .mobile-header-bar .logo {
            width: 210px;
            height: 200px !important;
          margin-left: -45px;
          margin-top: 14px;
          transition: none;
          content: url('logo2.svg')
            
        }
      
        .mobile-header-bar .logo {
            width: 210px;
            height: 200px !important;
            margin-left: -45px;
            margin-top: -8px;
          
        }
      
        .mobile-header-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 85px;
            background-color: rgba(255, 255, 255, 0);
            z-index: 1003;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
      
        header {
            margin-top: 0;
        }
      
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgb(255, 255, 255);
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 20px;
            transform: translateX(-100%);
            transition: transform 0.7s ease-in-out;
            z-index: 1000;
            overflow: scroll;
            
        }
      
        .mobile-nav.active {
            transform: translateX(0);
            transition: transform 0.7s ease-in-out;
        }
      
        .mobile-nav::-webkit-scrollbar {
            width: 8px;
        }
      
        .mobile-nav::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.5);
            border-radius: 10px;
        }
      
        .mobile-nav::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.1);
        }
      
        .logo {
            margin-bottom: -20px;
            align-self: flex flex-end;
            content: url('logo2.svg');
            width: 200px;
            
        }
      
        .nav-container {
            flex-grow: 1;
            overflow-y: auto;
            width: 100%;
            max-height: calc(100% - 85px);
        }
      
        .nav-links {
            text-align: left;
            list-style: none;
            margin: 0;
            font-weight: 100;
            padding-left: 10px;
            padding-top: 10px;
        }
      
        .additional-links {
            text-align: left;
            list-style: none;
            margin: 0;
            font-weight: 100;
            padding-left: 10px;
            padding-top: 100px;
        }
      
        .nav-links li, .additional-links li {
            margin: 5px 0;
        }
      
        .nav-links a, .additional-links a {
            color: #585757;
            font-size: 26px;
            padding: 10px 10px;
            display: block;
            transition: color 0.3s ease;
            text-decoration: none;
            font-weight: 200;
            font-family: "Tenor Sans", sans-serif;
        }
      
        .nav-links a:hover, .nav-links a:focus, .additional-links a:hover, .additional-links a:focus {
            color: #254441;
        }
      
        .separator {
            width: 100%;
            border: 0;
            border-top: 1px solid #000000;
            margin: 20px 0;
        }
      
        .language-options {
            display: absolute;
            gap: 15px;
            margin-top: 300px;
        }
      
        .language-options a {
            color: #000000;
            font-size: 16px;
            text-decoration: none;
            transition: color 0.3s ease;
        }
      
        .language-options a:hover, .language-options a:focus {
            color: #254441;
        }
      
        .close-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            color: rgb(255, 255, 255);
            font-size: 30px;
            background: none;
            border: none;
            cursor: pointer;
            transition: color 0.3s ease;
        }
      
        .close-menu:hover, .close-menu:focus {
            color: #ffcc00;
        }
      
        .hamburger {
            position: fixed;
            top: 35px;
            right: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 24px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1001;
        }
      
        .hamburger span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: #cea68e;
            transition: all 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
            background-color: #000000;
            font-weight: bold;
        }
      
        .hamburger.active span:nth-child(2) {
            opacity: 0;
            background-color: #000000;
        }
      
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
            background-color: #000000;
        }
      
        body.menu-open .mobile-header-bar.sticky {
            position: static;
            background-color: transparent !important;
            box-shadow: none !important;
            
        }
      
        body.menu-open .mobile-header-bar.sticky .logo {
            content: url('logo2.svg') !important;
            width: 200px !important;
            height: 200px !important;
        }
      
        body.menu-open .mobile-header-bar {
            background-color: transparent !important;
            box-shadow: none !important;
        }
      
    }    
  
  
/* Navbar and Logo Animations */
@media (min-width: 1124px) {
    .language-options{
        display: none;
      }

    .mobile-header-bar .logo{
        display: none;
    }
    .additional-links {
        display: none;
    }
    .hamburger,
    .close-menu {
        display: none;
    }

    /* Navbar Styling */
    .mobile-nav {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: transparent;  /* Initially transparent */
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
        z-index: 1000;
        transition: background-color 0.3s ease, padding 0.3s ease; /* Smooth transition */
    }


    /* Add sticky class when scrolled */
    .sticky .mobile-nav{
        background-color: #f6f4f2 !important; /* Turn black on scroll */
        padding: 40px 40px; /* Shrink padding */
        margin-top: -15px;
        box-shadow: 0 4px 6px rgba(32, 26, 26, 0.1);
    }

 
 

    .sticky .logo {
        content: url('logo2.svg');
        width: 200px;
        height: 200px;
    }

    /* Navbar Links */
    .nav-links {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        list-style: none;
    }

    .nav-links li {
        margin: 0 20px;
        position: relative;
    }

    .nav-links a {
        color: #000; /* White text initially */
        font-size: 16px;
        text-transform: uppercase;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .sticky .nav-links a {
        color: #000;  /* Change text to black on scroll */
    }

    .nav-links a:hover,
    .nav-links a:focus {
        color: #d59874;
    }

    /* Line Under Links */
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: #ffffff;
        transition: width 0.3s ease, left 0.3s ease;
    }

    .nav-links a:hover::after,
    .nav-links a:focus::after {
        width: 100%;
        left: 0;
    }

    /* Language Options */
    .language-options {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .language-options a {
        color: #000;
        font-size: 14px;
        text-decoration: none;
        transition: color 0.3s ease;
    }



    .language-options a:hover,
    .language-options a:focus {
        color: #666;
    }

    /* Booking Button */
    .booking-button {
        background-color: #333;
        color: #fff;
        padding: 5px 15px;
        border: none;
        font-size: 14px;
        text-transform: uppercase;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .booking-button:hover,
    .booking-button:focus {
        background-color: #666;
    }
}
@media (min-width: 1124px) {
    .language-options{
      display: none;
    }
    .language-toggle {
        position: relative;
    }
  
    .language-toggle button {
        background: none;
        border: none;
        color: #cea68e;
        font-size: 18px;
        cursor: pointer;
        padding: 8px 16px;
        border-radius: 4px;
        transition: background-color 0.3s ease, color 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px; /* Space between text and icon */
        font-weight: 500;
    }
  
    .language-toggle button:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
  
    .sticky .language-toggle button {
        color: #d19f80;
    }
  
    .sticky .language-toggle button:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }
  
    .language-icon {
        font-size: 15px; /* Adjust icon size */
        transition: transform 0.3s ease; /* Add rotation animation */
    }
  
    .language-toggle.active .language-icon {
        transform: rotate(180deg); /* Rotate icon when active */
    }
  
    .language-options-vertical {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #fff;
        border-radius: 6px;
        flex-direction: column;
        gap: 8px;
        padding: 10px;
        z-index: 1000;
        min-width: 120px;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
  
    .language-options-vertical a {
        color: #333;
        font-size: 14px;
        text-decoration: none;
        padding: 8px 12px;
        border-radius: 4px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }
  
    .language-options-vertical a:hover, .language-options-vertical a:focus {
        background-color: rgba(0, 0, 0, 0.05);
        color: #d19f80;
    }
  
    .language-toggle.active .language-options-vertical {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
  }
  

.container {
    position: relative;
    min-height: 100vh;
    width: 100%;
    margin: 0 auto;
    padding: 80px 20px;
    max-width: 1200px;

}

.search-box {
    position: relative;
    height: 40px; /* Reduced height for a simpler look */
    width: 100%;
    max-width: 500px; /* Responsive with max width */
    margin: 0 auto 30px; /* Adjusted bottom margin */
    z-index: 2;
    
    
}

.search-box input {
    position: absolute;
    height: 100%;
    width: 100%;
    border: none;
    background-color: #f0f0f0; /* Lighter background */
    color: #333; /* Darker text color */
    border-radius: 20px; /* Slightly rounded corners */
    padding: 0 15px;
    font-size: 16px; /* Standard font size */
    outline: none;
    transition: background-color 0.3s ease; /* Smooth transition on focus */
    line-height: 40px; /* Center text vertically */
}

.search-box input::placeholder {
    color: #999; /* Subtle placeholder color */
}

.search-box input:focus {
    background-color: #e0e0e0; /* Lighter on focus */
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    font-size: 18px;
    color: #888; /* Softer icon color */
    transform: translateY(-50%);
}

.images {
    display: grid;
    grid-template-columns: repeat(4, 4fr); /* 4 images per row */
    gap: 7px;
    justify-content: center;
    filter: grayscale(0.4);
   
}
.image-box {
    position: relative;
    width: 370px;
    height: 350px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.image-box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    filter: grayscale(0);

    
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
  
}

.image-box:hover img {
    opacity: 0.85;
}

.image-box h6 {
    position: absolute;
    bottom: 15px;
    left: 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    .search-box {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .image-box {
        width: 100%;
        max-width: 300px;
        height: 250px;
    }
    .images {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .image-box h6 {
        font-size: 14px;
    }
}
.gallery-header h1{
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-align: center;
    color: #2d4b40;
    font-family: "Cormorant Garamond", serif;
}



/* Style for active link */
.active {
    color: #617a67 !important;  /* Use a strong color */
    font-weight: 900 !important; /* Ensure it’s bold */
  }


  .photo-gallery-section {
    text-align: center;
    padding: 50px 20px;
}

.photo-gallery-section h2 {
    font-size: 3em;
    color: #2d4b40;
    font-weight: 100;
    border-bottom: 2px solid #caae8b; /* Adjust the color to fit your theme */
    display: inline-block; /* Ensures the line does not stretch across the full width */
    padding-bottom: 5px; /* Adds some spacing between the text and the border */
    margin-bottom: 20px; /* Space below the heading */
    font-family: "Cormorant Garamond", serif;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 5px;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
}

.photo-gallery img {
    width: 100%;
    height: auto;
    position: relative;
}

.photo-gallery-item {
    position: relative;
    overflow: hidden;
}

.photo-gallery-item::after {
    content: '';
    display: block;
    padding-bottom: 100%; /* Makes images square */
}

.photo-gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;

}

.photo-gallery-item:hover img {
    transform: scale(1.1);
}

.photo-gallery-item a {
    position: absolute;
    bottom: 10px;
    right: 10px;
    border-radius: 50%;
    padding: 10px;
    color: #fff;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.photo-gallery-item a:hover {
    background-color: #e1306c; /* Instagram pink */
    transform: scale(1.2);
}
/* Social Section */
.social-section {
    padding: 50px 0;
    text-align: center;
  }
  
  .social-section h2 {
    font-size: 3.2em;
    color: #2d4b40;
    font-weight: 100;
    display: inline-block; /* Ensures the line does not stretch across the full width */
    padding-bottom: 5px; /* Adds some spacing between the text and the border */
    margin-bottom: 20px; /* Space below the heading */
    font-family: "Cormorant Garamond", serif;

  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .social-icons .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;/* Simple muted background */
    border-radius: 50%;
    color: rgb(85, 98, 91); /* Neutral icon color */
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.5s ease, opacity 0.5s ease;
  }
  
  .social-icons .instagram {
    animation: fadeInSequence 1s ease-in-out 0.5s forwards;
  }
  
  .social-icons .twitter {
    animation: fadeInSequence 1s ease-in-out 1.5s forwards;
  }
  
  .social-icons .icon:hover {
    background-color: #e6e6e6; /* Slight hover effect */
    transform: translateY(0) scale(1.1); /* Slight lift */
  }
  
  @keyframes fadeInSequence {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 768px) {
    .social-section h2 {
      font-size: 1.8rem; /* Smaller heading for mobile */
    }
  
    .social-icons {
      gap: 15px;
    }
  
    .social-icons .icon {
      width: 45px; /* Smaller icons for mobile */
      height: 45px;
      font-size: 1.2rem;
    }
    .gallery-header h1{
        font-size: 4rem;
        font-weight: 200;
        margin-bottom: 800px;
        text-align: center;
        width: 100%;
        color: #2d4b40;
        font-family: "Cormorant Garamond", serif;
    }
    
    
  }
  /* Modal styling */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    display: flex;
    overflow: hidden;
    position: relative;
}

.modal-image {
    background-color: #eee;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.modal-details .profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.modal-details .profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.modal-details .profile-name {
    font-weight: bold;
    font-size: 16px;
    color: black;
}

.modal-details .profile-username {
    font-size: 14px;
    color: #777;
}

.modal-details .date {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 15px;
}

.modal-details .caption {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.close-btn, .prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.close-btn {
    top: 20px;
    right: 20px;
    font-size: 30px;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.back-btn {
    position: absolute;
    bottom: 20px;
    left: 10%;
    transform: translateX(-50%);
    background: #555;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
/* Gallery section */
.gallery-section {
    padding: 100px 20px;
    margin-left: 50px;
    margin-top: -90px;
}

.gallery-section h2 {
    text-align: center;
    color: #000000;
    font-weight: 390;
    letter-spacing: 1.5px;
    -webkit-background-clip: text;
    font-family: "Lobster", serif;
}

/* Scroller styles */
.scroller {
    max-width: 80%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.scroller__inner {
    display: flex;
    gap: 20px;
    animation: scroll-left 40s linear infinite;
}

.gallery-item {
    min-width: 250px;
    height: 200px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Keyframes for scrolling animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
@media (max-width: 768px) {

    /* CSS Variables for Consistency */
    :root {
        --spacing-sm: 8px;
        --spacing-md: 15px;
        --spacing-lg: 20px;
        --border-radius: 12px;
        --box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        --transition-duration: 0.3s;
        --color-primary: #ff7e5f;
        --color-text: #333;
        --color-background: #f5f5f5;
        --color-overlay: rgba(0, 0, 0, 0.6);
    }

    /* Hide Key Class */
    .key {
        display: none;
    }

    /* General Container Adjustments */
    .container {
        padding: var(--spacing-md);
        margin-top: -250px; /* Reduced negative margin for better fit */
    }

    /* Search Box Adjustments */
    .search-box {
        max-width: 95%; /* Slightly wider for better usability */
        margin: 0 auto var(--spacing-md);
        display: flex;
        align-items: center;
        gap: var(--spacing-sm);
    }
    .search-box input {
        font-size: clamp(12px, 3vw, 14px); /* Responsive font size */
        border-radius: var(--border-radius);
        padding: 10px 12px;
        flex: 1;
        border: 1px solid #ccc;
    }
    .search-box i {
        font-size: 16px;
        color: #666; /* Subtle color for icons */
    }

    /* Image Gallery Adjustments */
    .images {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: var(--spacing-sm);
    }
    .image-box {
        width: calc(50% - var(--spacing-sm)); /* Perfect two-column layout */
        max-width: 220px; /* Fit smaller screens */
        aspect-ratio: 1.5; /* Maintain aspect ratio */
        position: relative;
        overflow: hidden;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
    }
    .image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-duration) ease-in-out;
    }
    .image-box:hover img {
        transform: scale(1.08);
    }
    .image-box h6 {
        position: absolute;
        font-size: clamp(10px, 2.5vw, 12px); /* Responsive font size */
        color: #fff;
        background: var(--color-overlay);
        padding: 4px 6px;
        bottom: var(--spacing-sm);
        left: var(--spacing-sm);
        border-radius: 4px;
    }

    /* Photo Gallery Section Adjustments */
    .photo-gallery-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    .photo-gallery-section h2 {
        font-size: clamp(1.4rem, 5vw, 1.8rem); /* Responsive font size */
        margin-bottom: var(--spacing-md);
        text-align: center;
        color: var(--color-text);
    }
    .photo-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Clean two-column grid */
        gap: var(--spacing-sm); /* Reduced gaps for compact layout */
    }
    .photo-gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        aspect-ratio: 1; /* Square aspect ratio */
    }
    .photo-gallery-item img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-duration) ease-in-out;
    }
    .photo-gallery-item:hover img {
        transform: scale(1.05);
    }

    /* Social Section Adjustments */
    .social-section {
        padding: var(--spacing-lg) 0;
        text-align: center;
    }
    .social-section h2 {
        font-size: clamp(1.2rem, 4vw, 1.6rem); /* Responsive font size */
        margin-bottom: var(--spacing-md);
    }
    
    .social-icons {
        display: flex;
        justify-content: center;
        gap: var(--spacing-md); /* Compact spacing */
    }
    .social-icons .icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--color-background);
        border-radius: 50%;
        font-size: 1.2rem;
        color: #555;
        transition: background var(--transition-duration), transform var(--transition-duration);
    }
    .social-icons .icon:hover {
        background: var(--color-primary);
        color: #fff;
        transform: scale(1.1);
    }

    /* Gallery Section Adjustments */
    .gallery-section {
    display: none;
    }
    .gallery-section h2 {
        text-align: center;
        font-size: clamp(1.2rem, 4vw, 1.6rem); /* Responsive font size */
        color: var(--color-text);
        font-weight: 400;
        letter-spacing: 1px;
    }


}

@media (max-width: 480px) {
    .container {
        padding: var(--spacing-sm);
        margin-top: -700px;
    }
    .search-box {
        margin-bottom: var(--spacing-sm);
    }
    .search-box input {
        font-size: clamp(10px, 2.5vw, 12px); /* Responsive font size */
    }
    .images {
        gap: var(--spacing-sm);
    }
    .image-box {
        width: calc(50% - var(--spacing-sm)); /* Tighter column layout */
        height: auto; /* Use aspect-ratio instead */
    }
    .photo-gallery-section h2 {
        font-size: clamp(1.2rem, 6vw, 1.8rem); /* Responsive font size */
    }
    .photo-gallery {
        gap: var(--spacing-sm);
    }
    .social-section h2 {
        font-size: clamp(1rem, 8vw, 1.8rem); /* Responsive font size */
    }
    .social-icons .icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
/* Root Variables for Consistency */
:root {
    --primary-color: #e6a481; /* Main accent color */
    --primary-hover: #ffad81; /* Hover color for interactive elements */
    --secondary-color: #435c76; /* Secondary color for user messages */
    --bg-color: #f5f5f5; /* Chatbot background color */
    --bot-message-bg: #ffffff; /* Bot message background color */
    --border-color: #e0e0e0; /* Border color */
    --text-color: #ffffff; /* Text color for buttons */
  }
/* Chatbot Container */
#chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Toggle Button */
#chatbot-toggle {
  background-color: #ba927c;
  color: #ffffff;
  font-size: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background-color 0.3s;
}

#chatbot-toggle:hover {
  background-color: #a4755c;
  transform: scale(1.1);
}

#chatbot-toggle:active {
  transform: scale(0.95);
}

#chatbot-toggle i {
  font-size: 1.8rem;
}

/* Chatbot Card */
#chatbot {
  display: none;
  flex-direction: column;
  width: 350px;
  height: 500px;
  background-color: #f5f5f5;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Header */
#header {
  background-color:#e6a481;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  font-size: 1.2rem;
  font-weight: 200;
}

/* Message Section */
#message-section {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #cccccc #ffffff;
}

#message-section::-webkit-scrollbar {
  width: 6px;
}

#message-section::-webkit-scrollbar-track {
  background: #ffffff;
}

#message-section::-webkit-scrollbar-thumb {
  background-color: #cccccc;
  border-radius: 3px;
}

/* Messages */
.message {
  max-width: 75%;
  margin-bottom: 10px;
  padding: 10px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
  word-wrap: break-word;
}

.bot-message {
  background-color: rgb(255, 255, 255);
  border: 1px solid #e0e0e0;
  align-self: flex-start;
}

.user-message {
  background-color:  #435c76;
  color: #ffffff;
  align-self: flex-end;
}

/* Input Section */
#input-section {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-top: 1px solid #e0e0e0;
}

#input-section input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ffffff;
  border-radius: 20px;
  outline: none;
  font-size: 0.9rem;
  transition: border-color 0.3s;
}

#input-section input:focus {
  border-color: var(--primary-color);
}

.send {
  background: #e6a481; 
  border: none;
  margin-left: 10px;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.send:hover {
  background: #ffad81;
}

.send i {
  color: #ffffff;
  font-size: 1.2rem;
}



/* Close Button Styling */
.close-button {
  position: absolute;
  top: 11px;
  right: 12px;
  background: transparent;
  border: none;
  color: #435c76;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.3s ease;
}


/* Close Button X Symbol */
.close-button span {
  font-size: 20px;
  color: #435c76;
  font-weight: 50;

}
@media screen and (max-width: 768px) {
  /* Chatbot Card */
#chatbot {
  display: none;
  flex-direction: column;
  width: 250px;
  height: 370px;
  background-color: #f5f5f5;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
}
