
.top-container{
    backdrop-filter: brightness(40%);
    height: 12vh;
}

.top-container .logo img{
    width: 25%;
}


.hamburger-menu {
    z-index: 1;
    color: white;
    font-size: 2rem;
    display: block;
    position: absolute;
    left: 50px;
    top: 30px;
    cursor: pointer;
}

.fa-xmark{
    cursor: pointer;
    z-index: 99;
    display: none;
    color: white;
    position: absolute;
    right: 30px;
    top: 23px;
    font-size: 2.2rem;     
    transition: 0.3s linear;  
}


nav  .links{
    backdrop-filter: blur(10px) brightness(70%);
    z-index: 9;
    display: block;
    position: fixed;
    top: 0px;
    width: 100%;
    background-color: ;
    height: auto;
    background-color: transparent;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    flex-direction: column;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px white inset;
    transition: trans0.3s ease;
    transform: translateY(-400px);
    opacity: 0;
}

nav .links {
    transform: translateY(-100%);
    transition: 0.3s ease;
}

nav .links .link{
    padding: 10px 0;
}

nav .links .link a{
    font-weight: 600;
    color: #BF8F2C;

}

nav .links .link:hover{
    background-color: #BF8F2C;
}

nav .links .link:hover > a{
    color: white;
}


.links .link a:hover::before{
    width: 0;
}


.choose-container {

    max-width: 800px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin: 100px auto 0 auto;
    justify-content: center;
    align-items: center;
}

.choose-container .wrapper {
    width: 100%;
    height: auto;
    padding: 0 36px;
    text-align: center;
    transition: 0.2s linear;
}

.choose-container .wrapper h3 {
    font-size: clamp(0.8rem, 0.5rem + 3vw, 2.5rem);
    margin: 20px 0;
}

.choose-container .wrapper p {
    font-family: 'Montaga', sans-serif;
    text-align: start;
    margin-left: 40px;
}

/* Styling the links and button in the wrapper */
.choose-container .choose-links {
    
    grid-template-columns: repeat(4, 1fr); /* 3 links per row for first and third row */
    display: grid;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}



.choose-links .link, .choose-links button {
    cursor: pointer;
    width: 100%;
    padding: 15px 25px;
    background-color: transparent;
    color: black;
    text-decoration: none;
    margin: 5px 10px;
    border-radius: 60px;
    border: 1px solid black;
    transition: 0.3s linear;
}



.choose-links button{
    color: white;
    font-size: 1.2rem;
    background-color: #BF8F2C;
}

.choose-container button:hover{
    background-color: transparent;
    color: #BF8F2C;
}

.choose-links .link:hover{
    background-color: #BF8F2C;
    color: white;
}

.choose-links .link.selected {
    background-color: #BF8F2C;
    color: #fff;
}


.choose-links button {
    display: none;
}

/* Active background class */
.active-bg {
    background-color: #f0f0f0; /* Replace with your desired color */
}


@media (max-width: 996px) {
    .choose-container .choose-links{
        grid-template-columns: repeat(3,1fr);
    }

    .hamburger-menu{
        top: 20px;
    }

    .choose-container{
        margin-top: 80px;
    }

    
    
}

@media (max-width: 440px) {
    .choose-container{
        margin-top: 70px;
    }

    
    .choose-container .choose-links{
        grid-template-columns: repeat(2,1fr);
    }

    .choose-links button{
        display: block;
    }

    .choose-links .link:nth-child(n+10) {
        display: none; /* Initially hide links after the 9th */
    }

    /* Show all links when the 'show-all' class is active */
    .show-all .link:nth-child(n+10) {
        display: flex; /* Show hidden links */
    }


    
}

/* Header styling with logo and heading */
.header {
    margin-top: 30px;
}

.logo {
    width: 100px;
}

h1 {
    font-family: 'Mortaga', serif;
    font-size: 2.5rem;
    color: #333;
    margin: 20px 0;
}

/* Container for images */
.container {
    max-width: 1200px;
    margin: 20px auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

/* Wrapper for each pair of images */
.image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Style for the second column to have margin from the top */
.second-column {
    margin-top: 50px;
}

/* Image container with hover effect */
.image-container {
    position: relative;
    width: 300px;
    height: 200px;
}

.image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.image:hover {
    transform: scale(1.05);
}

/* Hover button on the images */
.hover-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    display: none;
    transition: 0.3s ease;
}

.image-container:hover .hover-btn {
    display: block;
}

/* Explore button styling */
.explore-section {
    margin-top: 30px;
    display:flex;
    justify-content: center;
    align-items: center;
}

.explore-btn {
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: #BF8F2C;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s ease;
}

.explore-btn:hover {
    background-color: #000;
}

/* Hide popup by default */
.hidden {
    z-index: -2;
    scale: 0;
    opacity: 0;
}

/* Popup Overlay */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7); /* Dimmed background */
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.popup.hidden {
    opacity: 0;
    pointer-events: none;
}

.popup-content {
    position: relative;
    width: 90%;
    max-width: 1200px; /* Max width for larger screens */
    height: 90%;
    max-height: 1000px; /* Max height for larger screens */
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.popup-media {
    overflow: hidden;
    width: 100%;
    height: 100%;
    flex: 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-media img,
.popup-media video {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover; /* Ensure the content fits nicely */
}

.popup-buttons {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: #f1f1f1;
    border-top: 1px solid #ddd;
}

.popup-button {
    flex: 1;
    margin: 0 5px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#book-now:hover {
    background-color: #2980b9;
}

#close-popup:hover {
    background-color: #c0392b;
}

/* Responsive Design */


/* Positioning buttons */
#book-now {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background-color: green;
    color: white;
}

#close-popup {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background-color: red;
    color: white;
}


/* Popup Container */
.loginpopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7); /* Dimmed background */
    z-index: 1000;
    transition: opacity 0.3s ease;
}

/* Make Popup Visible */
.loginpopup.hidden-login {
    opacity: 0;
    display: none;
}

/* Popup Content */
.loginpopup-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
}




/* Popup Heading */
.popup-heading {
    margin: 0;
    font-size: 24px;
    color: #333;
}

/* Close Button */
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
}

.close-button:hover {
    background: #c0392b;
}



/* Uno Buddy */
.assistant-container {
    z-index: 999;
    position: fixed;
    bottom: 100px; /* Adjust as needed */
    right: 50px;  /* Adjust as needed */
    width: auto; /* Image width */
    height: auto; /* Image height */
    cursor: pointer;
  }
  
  .assistant-image {
    width: 100px;
    filter: drop-shadow(1px 1px 20px black );
    height: 100px;/* Makes the image circular */
}

  .assistant-image:hover{
    transform: scaleX(-1);
    border-radius:50% ;
    animation-play-state: paused;
    backdrop-filter: blur(10px);
    filter: drop-shadow(1px 1px 50px gold);
  }


/* Responsive Design */
@media (max-width: 996px) {
    .loginpopup-content {
        width: 95%;
        padding: 15px;
        max-width: none;
        border-radius: 0;
    }

    body{
        overflow: visible;
    }

    .container{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .image-wrapper{
        margin: 10px 0;
    }

    .second-column {
        margin-top: 0px;
    }

    .assistant-container {
        bottom: 70px; /* Adjust as needed */
        right: 70px;  /* Adjust as needed */
      }

    .assistant-container img{
        width: 120px;
        height: 120px;
    }

    .assistant-container .message{
        top: -100px;
        right: 0;
        font-size: 1.3rem;
        width: 500px;
    }
    
}

