/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
}

.navbar-brand {

    background: linear-gradient(90deg, #ef5350, #ab47bc, #7e57c2, #42a5f5, #26a69a, #66bb6a, #ffca28, #ff7043);
    background-size: 200% 200%; /* Increase size for smoother transition */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 10s linear infinite;
  }
  
  @keyframes gradientFlow {
    0% {
      background-position: 0% 0%;
    }
    50% {
      background-position: 100% 0%;
    }
    100% {
      background-position: 0% 100%;
    }
  }


.hero-section h1 {
    font-size: 3rem;
    font-weight: normal;
    background: linear-gradient(90deg, #ef5350, #ab47bc, #7e57c2, #42a5f5, #26a69a, #66bb6a, #ffca28, #ff7043);
    background-size: 200% 200%; /* Increase size for smoother transition */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 10s linear infinite;
  }

.hero-section p {
    font-weight: normal;
    background: linear-gradient(90deg, #ef5350, #ab47bc, #7e57c2, #42a5f5, #26a69a, #66bb6a, #ffca28, #ff7043);
    background-size: 200% 200%; /* Increase size for smoother transition */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 10s linear infinite;
  }

.updates-section .card {
    transition: transform 0.3s ease;
}

.updates-section .card:hover {
    transform: scale(1.05);
}

.updates-section h2{

    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
}
.testimonials-section blockquote {
    border-left: 5px solid #007bff;
    padding-left: 1rem;
}

.updates-section .card-img-top {
    width: 100%; /* Ensure the image fills the card width */
    height: 100%; /* Fixed height for uniformity */
    object-fit: cover; /* Ensure the image covers the area without distortion */
    border-bottom: 2px solid #007bff; /* Optional: a colored border under the image */
}

/* Footer Styles */
.footer-section {
    background-color: #343a40;
}

.footer-section p {
    margin-bottom: 0;
}


.hero-section {
    position: relative; /* Ensure relative positioning for the pseudo-element */
    overflow: hidden; /* Hide any overflow from the pseudo-element */
    padding: 150px 0;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('1.png') no-repeat center center/cover;
    filter: blur(3px); /* Adjust the blur radius as needed */
    z-index: -1; /* Ensure the pseudo-element is behind other content */
    animation: backgroundFade 35s infinite;
}

.hero-section .content {
    position: relative; /* Ensure content is on top of the pseudo-element */
    z-index: 1; /* Position content above the blurred background */
}

/* Define the background animation to work with the pseudo-element */
@keyframes backgroundFade {
    0% {
        background: url('/static/images/1.png') no-repeat center center/cover;
    }
    33% {
        background: url('/static/images/2.png') no-repeat center center/cover;
    }
    67% {
        background: url('/static/images/3.png') no-repeat center center/cover;
    }
    100% {
        background: url('/static/images/1.png') no-repeat center center/cover;
    }
}







/* What We Offer Section Styles */
.offer-section h2 {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
}

.offer-section .table {
    border-collapse: separate;
    border-spacing: 30px 10px; /* Adds spacing between the columns */
}

.offer-icon {
    width: 200px; /* Adjust size as needed */
    margin-bottom: 15px; /* Space between icon and text */
}

.offer-section p {
    font-size: 1.1rem;
    margin-top: 10px;
    font-weight: normal;
    text-align: left;
    
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .offer-section .table {
        display: block; /* Changes table to block on small screens */
    }

    .offer-section .table th {
        display: block; /* Stack each table header */
        width: 100%; /* Full width for each item */
        margin-bottom: 20px; /* Space between stacked items */
    }
}


/* Flexbox layout for wider screens */
.booking-table .row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between; /* Spread the columns evenly */
}

/* Stack the columns on narrow screens */
@media (max-width: 768px) {
    .booking-table .row {
        flex-direction: column; /* Stack the columns vertically */
    }

    .booking-table .col-md-8, .booking-table .col-md-4 {
        flex: none;
        width: 100%; /* Make each column take full width */
        padding: 10px 0; /* Adjust padding for stacked layout */
    }

    .booking-table .col-md-4 {
        margin-top: 20px; /* Add some space between stacked sections */
    }
}


.booking-table .col-md-8,
.booking-table .col-md-4 {
    padding: 15px;
}

/* Adjust the width of each column for better balance */
.booking-table .col-md-8 {
    flex: 2; /* Give more space to the reservation selection section */
}

.booking-table .col-md-4 {
    flex: 1; /* Reduce the space for user information */
}

.calendar-container {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background-color: #fff;
    max-height: 400px; /* Limit the height to make the section more compact */
    overflow-y: auto; /* Add scroll if content overflows */
}

.date-selection {
    margin-bottom: 15px; /* Reduce the margin between items */
}

h3 {
    margin-bottom: 20px;
    font-size: 1.5rem; /* Slightly increase the font size for better readability */
    color: #333;
}

p {
    margin-bottom: 15px; /* Reduce the space below paragraphs */
    font-size: 1rem;
    color: #666;
}

.form-group {
    margin-bottom: 20px; /* Increase space between form elements */
}

.form-control {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    border: none;
}

#priceDisplay {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 15px; /* Add margin to separate it from other elements */
}


/* About Us Section Styles */
.about-section {
    background-color: #f9f9f9; /* Matching the background color of other sections */
    padding: 5rem 0; /* Add padding to match other sections */
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
    color: #333; /* Ensures heading color consistency */
}

.about-section p {
    font-size: 1rem;
    color: #666; /* Text color for readability */
    line-height: 1.6; /* Improves text readability */
    text-align: left; /* Centers the paragraph text */
    max-width: 800px; /* Limits the width for better readability */
    margin: 0 auto; /* Centers the paragraph block */
}
