/* General styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}
header {
    position: fixed;
    width: 100%;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    z-index: 1000;
}

header.scrolled {
    height: 50px; /* Smaller height on scroll */
    background-color: rgba(255, 255, 255, 1);
}

.container {
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.logo {
    height: 60%;
    display: flex;
    align-items: center;
}

.logo img {
    height: 80%; /* Adjust as needed */
    max-height: 100px; /* Prevents the logo from getting too large */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 40px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
}

.menu-icon {
    display: none;
    font-size: 16px;
    color: black;
    cursor: pointer;
}

/* Styles when the menu is active (for small screens) */
nav.active ul {
    flex-direction: column; /* Stack items vertically */
    position: absolute;
    top: 100px; /* Position it below the header */
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;

}


header.scrolled nav.active ul {
    top: 50px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 1);
}

nav.active ul li {
    margin: 10px 0;
    text-align: center;
}


.banner {
    height: 99vh;
    background-image: url('banner2.jpg');
    background-size: cover;
    background-position: center;
}

/* Content Section */
.content-section {
    display: flex;
    padding: 40px;
    box-sizing: border-box;
}

.content-section .column {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}

.content-section .image-column img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.text-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}

.text-content .offer {
    font-family: sans-serif;
    font-size: 24px; /* Increased font size */
    margin-bottom: 10px; /* Increased spacing */
    color:#6e4e1f;
}

.text-content .title {
    font-size: 48px; /* Increased font size */
    margin: 0px; /* Increased spacing */
}

.text-content .description {
    font-size: 16px; /* Increased font size */
    color:#575757;
    line-height: 25px;
    text-align: justify;
}

/* Features Section */
.features-section {
    background-color: #f7f7f7; /* Gray-blue background */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px;
    box-sizing: border-box;
}

.feature {
    color:#575757;
    flex: 1 1 calc(25% - 20px);
    box-sizing: border-box;
    margin-bottom: 20px;
    text-align: center;
}

.icon {
    width: 40px; /* Smaller size */
    height: 40px; /* Smaller size */
    margin-bottom: 10px;
}

h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
}

/* Text Columns Section */
.text-columns-section {
    padding: 40px;
}

.title-column {
    padding: 0px 20px;
}

.title-column h2 {
    margin: 0px;
}
.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #6e4e1f;
}

.text-columns {
    flex: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
}

.text-column {
    flex: 1;
    margin: 0 10px; /* Adjust spacing between columns */
}

.text-column p {
    font-size: 16px;
    text-align: justify;
}
.text-column-1 {
    line-height: 25px;
}
.text-column-2 {
    color:#575757;
    line-height: 25px;
}


/* Image and Title with List Section */
.image-title-list-section {    
    background-color: #f9f9f9; /* or any other background color you prefer */
    display: flex;
    padding: 40px;
    box-sizing: border-box;
}

.image-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-column img {
    width: 50vw; /* 2/3 of the viewport width */
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.text-column-near {
    flex: 1;
    padding: 20px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.list {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.list li {
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.list-icon {
    width: 24px; /* Adjust size as needed */
    height: 24px; /* Adjust size as needed */
    margin-right: 10px; /* Space between icon and text */
}

#pricing {
    margin: 0px 40px 40px 40px;
    padding: 20px;
    border-radius: 10px; /* rounded corners */
    text-align: center; /* center align text */
}

#pricing h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333; /* dark text color */
}

.pricing-details p {
    font-size: 18px;
    margin: 5px 0;
    color: #555; /* slightly lighter text color */
}


/* Footer Section */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 80px 20px 10px 20px;
    box-sizing: border-box;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    margin-bottom: 20px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo {
    width: 150px; /* Adjust as needed */
    margin-bottom: 10px;
}

.slogan {
    font-size: 18px;
    margin-bottom: 20px;
}

.social-media-icons a {
    margin-right: 15px;
}

.social-media-icons img {
    width: 24px; /* Adjust icon size */
    height: 24px;
}

.address, .contact-info {
    font-size: 16px;
    line-height: 1.5;
}

.footer-divider {
    border: none;
    border-top: 1px solid white;
    margin: 20px 0;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
}

/* Calendar Section */
#calendar-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
    -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none;
}

.calendar-container {
    display: inline-block;
    text-align: left;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.prev-month, .next-month {
    cursor: pointer;
    font-size: 24px;
    padding: 0 10px;
}

.calendar-grid {
    display: flex;
    justify-content: space-between;    
    position: relative;
}

.calendar {
    width: 48%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background-color: #fff;
    margin: 0px 10px;
}

.calendar p {
    margin: 0px;
    width: -webkit-fill-available;
}

.calendar .month-year {
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}

.calendar .day-names {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.calendar .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}

.calendar .days div {
  position: relative;
  background: #f3f3f3; /* Background color of the square */
  overflow: hidden; /* Ensure the pseudo-element does not overflow the square */
  display: flex; /* To center text horizontally and vertically */
  align-items: center; /* Center text vertically */
  justify-content: center; /* Center text horizontally */
  border-radius: 4px;
  margin: 2px;
  padding: 10px;
}
.calendar .days div:empty {
    background: white;
  }
  

.calendar .days div p{
    padding: 0;
    border-radius: 4px;
    z-index: 2;
}

.calendar .days div:not(.inactive):hover {
    background-color: #eee;
    cursor: pointer;
}

.calendar .days div:empty:hover {
    background-color: white;
    cursor: auto;
}

.calendar .days div.today {
    background-color: #bedeff;
    color: black;
    font-weight: bold;
}

.calendar .days div.inactive {
    background-color: #d8d8d8;
    color: white;
    text-decoration: line-through;
    font-weight: 100;    
}

.inactive_start, .inactive_end {
    background-color: #d8d8d8;
    color: white;
    text-decoration: line-through;
    font-weight: 100;    
}
.inactive_start::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d8d8d8; /* Color of the diagonal half */
    clip-path: polygon(100% 0, 100% 100%, 0 100%); /* Creates a diagonal triangle shape */
    z-index: 1; /* Ensure it sits on top of the background */
}
.inactive_end::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d8d8d8; /* Color of the diagonal half */
    clip-path: polygon(0 0, 100% 0, 0 100%); /* Creates a diagonal triangle shape */
    z-index: 1; /* Ensure it sits on top of the background */
}

.highlight-start,
.highlight-end{
    position: relative;
    display: inline-block;
    z-index: 1; /* Ensure text is above the triangle */
    margin: 0; /* Remove default margin */
    color: white; /* Text color */
    text-align: center; /* Center the text if needed */
}

.highlight-start::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #007bff; /* Color of the diagonal half */
    clip-path: polygon(100% 0, 100% 100%, 0 100%); /* Creates a diagonal triangle shape */
    z-index: 1; /* Ensure it sits on top of the background */
}

.highlight-end::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #007bff; /* Color of the diagonal half */
    clip-path: polygon(0 0, 100% 0, 0 100%); /* Creates a diagonal triangle shape */
    z-index: 1; /* Ensure it sits on top of the background */
}

.popup {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    background-color: #ffcccb;
    color: #d8000c;
    border: 1px solid #d8000c;
    border-radius: 5px;
    z-index: 1000;
    font-size: 14px;
    text-align: center;
}
#formcontainer {
    position: relative;
}

.popupEmailPass {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    background-color: white;
    color: #75bb6f;
    border: 2px solid #75bb6f;
    font-weight: bold;
    border-radius: 5px;
    z-index: 1000;
    font-size: 14px;
    text-align: center;
}
.popupEmailError {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    font-weight: bold;
    background-color: #ffcccb;
    color: #d8000c;
    border: 2px solid #d8000c;
    border-radius: 5px;
    z-index: 1000;
    font-size: 14px;
    text-align: center;
}

/* form */
.date-select{
    display: inline;
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.form-container {
    margin-top: 20px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.form-container label {
    display: block;
    margin: 5px 0;
}

.form-container input {
    display: block;
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-container button {
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.form-container button:hover {
    background-color: #0056b3;
}

/* Galerry */

.gallery-section {
    padding: 20px;
    background-color: #f7f7f7; /* Optional background color for the section */
}

.gallery {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.gallery-item-large {
    flex: 0 1 45%; /* Large photo takes up half the width */
    overflow: hidden;
    cursor: pointer;
    height: 300px;
}

.gallery-item-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.gallery-grid {
    flex: 0 1 45%; /* The grid takes up the other half */
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    grid-template-rows: repeat(2, 145px); /* Two rows */
    gap: 10px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: .2s all;
}

.gallery-item img:hover{
    -webkit-filter: brightness(80%);
}

.gallery-item-last {
    position: relative;
}

.show-all-photos {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(57, 57, 57);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-all-photos:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.show-all-photos svg {
    margin-right: 5px;
}

/* Hide the modal by default */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: hidden;
}

/* Modal content */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.gallery-main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70%;
    margin-top: 50px;
    
}

.gallery-main img {
    max-height: 100%;
    max-width: 90%;
    object-fit: contain;
    
}


.gallery-thumbnails {
    display: flex;
    gap: 10px;
    padding: 10px;
    overflow-x: auto;  /* Enable horizontal scrolling */
    white-space: nowrap;  /* Prevent thumbnails from wrapping to the next line */
    justify-content: flex-start;  /* Align thumbnails to the left */
    scrollbar-width: thin;  /* For Firefox */
    scrollbar-color: rgba(255, 255, 255, 0.5) rgba(0, 0, 0, 0.1);  /* For Firefox */
    scroll-behavior: smooth;  /* Smooth scrolling */
}

/* Custom scrollbar for WebKit-based browsers (Chrome, Safari) */
.gallery-thumbnails::-webkit-scrollbar {
    height: 8px;  /* Custom height for horizontal scrollbar */
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);  /* Track color */
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.5);  /* Scrollbar thumb color */
    border-radius: 10px;
    border: 2px solid transparent;  /* Optional: add transparency around the thumb */
}

.gallery-thumb {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-thumb:not(.active):hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    -webkit-filter: brightness(80%);
}


/* Active thumbnail styling */
.gallery-thumb.active {
    transform: scale(1.1);  /* Make the active thumbnail larger */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);  /* Add a shadow for emphasis */
    border: 2px solid #fff;  /* Optional: add a white border */
    z-index: 10;  /* Ensure the active thumbnail is on top */
}

/* Scroll Buttons Styling */
.scroll-left, .scroll-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
}


.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    nav ul {
        display: none; /* Hide menu by default */
    }

    nav.active ul {
        display: flex; /* Show when active */
    }

    .content-section {
        flex-direction: column;
    }

    .content-section .column {
        padding: 10px 0;
    }

    .text-column {
        align-items: flex-start;
    }

    .features-section {
        flex-direction: column;
    }

    .feature {
        flex: 1 1 50%;
    }

    .text-columns-section {
        flex-direction: column;
    }
    .image-column img {
        width: 80vw; /* 2/3 of the viewport width */
        height: 200px;
        object-fit: cover;
    }

    .title-column {
        order: 1;
        justify-content: center;
        text-align: center;
    }

    .text-columns {
        flex-direction: column;
    }

    .text-column {
        margin: 10px 0; /* Stack text rows vertically */
    }

    .image-title-list-section {
        flex-direction: column;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 10px;
    }

    .calendar-grid {
        flex-direction: column;
        align-items: center;
    }

    .calendar {
        width: 100%;
        margin-bottom: 20px;
    }
    .gallery {
        flex-direction: column; /* Stack items vertically on smaller screens */
    }

    .gallery-item-large,
    .gallery-grid {
        flex: 1 1 100%; /* Make each section full width on small screens */
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* Adjust grid for smaller screens */
    }
}

.smaller {
    font-size: 16px;
}