@font-face {
    font-family: 'Happy Time';
    src: url(/assets/HappyTime-d67e01d6a86c00ab080e79cb3d511f558f2fea049d788a2744cc695ff3c2739c.otf) format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url(/assets/Inter_18pt-Light-638829b6cc2cce3b17d4742c04e7e569f9552abfd2c49f048ad443ac000157ec.ttf) format('truetype');
    font-weight: 300; /* Light */
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url(/assets/Inter_18pt-Regular-c2a2cd54d83c0214eb6b7ae91faf6db3e3571d2ca59fb5b301e1a73b487af5d1.ttf) format('truetype');
    font-weight: 400; /* Regular */
    font-style: normal;
}


/* General Page Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    overflow-y: auto; /* Ensure body handles scrolling */
    height: 100vh; /* Ensure it takes full height */
}

/* Hero Section */
.about-hero {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 400px; /* Adjust height as needed */
    background: url(/assets/about-us-hero-147e64720d7a0546bba630b204170c4e93a9eed3cdf7f4c5e0bf9da5264acbf0.jpg) center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.about-hero-text {
    color: white;
    width: 100%;
    height: 100%;
    /* padding: 20px; */
    font-size: 28px;
    align-content: flex-end;
}

.about-hero-text h1 {
    font-family: 'Happy Time', sans-serif;
    margin-bottom: -22px;
    font-size: 100px; /* Increase font size */
    font-weight: bold;
    line-height: 1.2; /* Ensures clean two-line spacing */
    text-align: left; /* Aligns text to the left */
    white-space: normal; /* Allows proper line breaking */
    word-break: break-word; /* Ensures wrapping on smaller screens */
    padding: 0px;
    padding-left: 75px; /* Keeps left alignment */
    letter-spacing: 2px;
    font-weight: unset;
    position: relative;
    z-index: 20;
}
/* About Page Container */
.about-container {
    position: relative;
    top: 400px; /* Places it directly below the hero section */
    left: 0;
    width: 100%;
    min-height: calc(100vh - 400px); /* Ensure it fills remaining height */
    background: #A58E69; /* Matches Figma design */
    overflow: hidden; /* Prevents inner scrolling */
}

/* General About Sections */
.about-section-one {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-left: 50px;
}

.about-section-two {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    gap: 100px;
    /* padding: 50px; */
    padding-right: 50px;
    background: #d6ccb1;
}

/* About Text */
.about-text {
    width: 40%;
    padding: 20px;
}


.about-section-one h2{
    color: #FFFFFF;
}

.about-section-one p{
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.about-section-two h2{
    color: #765F4B;
    text-align: right;
}

.about-section-two p{
    color: #765F4B;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.about-text h2 {
    font-family: 'Happy Time', sans-serif;
    font-size: 48px;
    margin-bottom: 5px;
    margin-top: 5px;
    font-style: italic;
    letter-spacing: 1px;
    font-weight: unset;
    margin-left: -10px
}

.about-text p {
    width: 100%;
}

/* About Images */
.section-one-image {
    width: 111%;
}

.about-image {
    width: 50%;
}

.about-image img {
    width: 100%;
    height: auto;
    padding: 70px 0;
}

/* Enquiry Section */
.enquiry-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(39, 33, 31, 0.5); /* Transparent dark background */
    padding: 50px;
    color: white;
    gap: 100px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 125px;
    top: 400px;
    background: url(/assets/enquire-background-428a5a7aa9825ad7bbe8b46cb7d531f8b8bad06d3cfd081561299ad26e0abb15.jpg) center/cover no-repeat;
}

.enquiry-form h2 {
    font-family: 'Happy Time', sans-serif;
    font-size: 48px;
    margin-bottom: 5px;
    margin-top: 5px;
    font-style: italic;
    letter-spacing: 1px;
    font-weight: unset;
    margin-bottom: 20px;
    position: absolute;
    left: 5px;
    top: -60px;
}

/* Enquiry Form */
.enquiry-form {
    width: 50%;
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.5); /* White border with transparency */
    backdrop-filter: blur(10px); /* Subtle background blur */
    border-radius: 10px;
    background-color: #ffffff21;
}

/* Form Title */
.enquiry-form h2 {
    font-family: 'Happy Time', sans-serif;
    font-size: 32px;
    font-style: italic;
    color: white;
    text-align: left;
    margin-bottom: 20px;
}

/* Input Fields */
.enquiry-form .form-group {
    display: flex;
    gap: 10px;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5); /* Semi-transparent white outline */
    background: transparent;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    background-color: #ffffff21;
    margin-bottom: 10px;
        font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Message Box */
.enquiry-form textarea {
    min-height: 100px;
    resize: none;
}

/* Submit Button */
.enquiry-form button {
    width: 100%;
    padding: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    background-color: #ffffff21;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.enquiry-form button:hover {
    background: rgba(255, 255, 255, 0.2);
}


/* Map */
.enquiry-map {
    width: 50%;
    position: relative;
    top: 77px;
}

.enquiry-map img {
    width: 100%;
    border-radius: 5px;
}

.enquiry-map {
    width: 50%;
    height: 100%;
}

.about-map {
    width: 100%;
    height: 300px;
    border-radius: 5px;
}

/* Contact Info Section */
.contact-info {
    color: white;
    font-size: 16px;
    margin-top: 20px;
    line-height: 1.5;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    position: relative;
}

/* Phone Number Styling */
.contact-number {
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    margin-top: 10px;
}

/* Phone Icon */
.contact-number img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    .about-hero {
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
        position: relative;
        width: auto;
    }

    .about-hero-text {
        font-size: 18px;
        text-align: center;
        padding: 0;
        max-width: 90%;
    }

    .about-hero-text h1 {
        font-family: 'Happy Time', sans-serif;
        font-size: 35px;
        font-weight: bold;
        line-height: 1.0;
        /* text-align: left; */
        white-space: normal;
        word-break: break-word;
        padding: 0px;
        /* padding-left: 75px; */
        /* margin-bottom: 0px; */
        letter-spacing: 2px;
        font-weight: unset;
        position: relative;
        z-index: 20;
        /* max-width: 430px; */
        top: 3px;
        width: auto;
        padding-left: 80px;
    }

    .about-image-mobile img{
        height: auto;
        width: 100%;
        margin-top: -5px;
        margin-bottom: -5px;
    }

    .about-us-container {
        position: relative;
        
        left: 0;
        width: 100%;
        min-height: calc(95vh - 430px); /* Ensure it fills remaining height */
        background: #A58E69; /* Matches Figma design */
        overflow: hidden; /* Prevents inner scrolling */
    }

    .about-us-section-one-text {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding-top: 30px;
        padding-left: 50px;
        padding-right: 50px;
        padding-bottom: 30px;
    }

    .about-us-section-one-text p{
        font-family: 'Inter', sans-serif;
        font-weight: 300;
        font-size: 16px; /* Increase font size */
        white-space: normal; /* Allows proper line breaking */
        color: white;
    }

    .about-us-text {
    }

    

    .enquiry-section {
        display: inherit;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 20px;
        box-sizing: unset;
        width: 90%;
        overflow: visible;
        height: 700px;
        margin-top: -60px;
        top: 60px;
        
    }

    .enquiry-section h2 {
        font-family: 'Happy Time', sans-serif;
        font-size: 48px;
        margin-bottom: 5px;
        margin-top: 5px;
        font-style: italic;
        letter-spacing: 1px;
        font-weight: unset;
        
        top: 13px;
        left: 60px;
        color: white;
        text-align: left;
        padding-bottom: 20px;
    }

    .enquiry-form {
        width: auto;
        /* width: 100%; */
        /* max-width: 500px; */
        background: rgba(255, 255, 255, 0.1);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        position: relative;
    }

    .enquiry-form h2 {
        font-size: 24px;
        text-align: center;
        margin-bottom: 15px;
        width: 100%;
        display: block;
    }

    .enquiry-form input,
    .enquiry-form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 5px;
        background: transparent;
        color: white;
    }

    .enquiry-form textarea {
        min-height: 54px;
        resize: none;
    }

    .enquiry-form button {
        width: 100%;
        padding: 5px;
        border: 2px solid rgba(255, 255, 255, 0.5);
        background: transparent;
        color: white;
        font-size: 13px;
        border-radius: 5px;
        cursor: pointer;
        background-color: #ffffff21;
        font-family: 'Inter', sans-serif;
        font-weight: 300;
    }
    
    .about-map {
        width: 100%;
        height: 200px;
        border-radius: 5px;
    }

    .enquiry-map {
        width: 100%;
        max-width: 500px;
        height: 300px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        overflow: visible;
    }

    .contact-info {
        text-align: center;
        font-size: 14px;
        padding-top: 10px;
        width: 100%;
        display: block;
        padding-bottom: 2px;
    }

    .contact-info p {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
        max-width: 100%;
        margin: 0 auto;
        word-wrap: break-word;
    }

    .contact-info img {
        width: 16px;
        height: 16px;
    }
}
.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  
  .booking-header h1 {
    flex: 1;
    margin: 0;
    font-size: 24px;
  }
  
  .booking-header-center {
    flex: 1;
    text-align: center;
  }
  
  .booking-header-right {
    flex: 1;
    text-align: right;
  }
  
  .booking-search {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .btn-manual-booking {
    background-color: #28a745; /* Green background */
    color: #fff;             /* White text */
    padding: 10px 20px;      /* Spacing inside the button */
    border: none;            /* Remove default border */
    border-radius: 4px;      /* Rounded corners */
    text-decoration: none;   /* Remove underline from link */
    font-size: 16px;         /* Adjust font size as needed */
    font-weight: bold;       /* Bold text */
    display: inline-block;   /* Ensures proper sizing and spacing */
    transition: background-color 0.2s ease-in-out; /* Smooth hover effect */
  }
  
  .btn-manual-booking:hover {
    background-color: #218838; /* Darker green on hover */
  }
  
  
  .booking-row {
    display: flex;
    overflow-x: auto;
    padding: 10px 20px;
    gap: 20px;
  }
  
  .booking-card {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    min-width: 250px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex: 0 0 auto;
  }
  
  .booking-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }
  
  .btn-accept {
    background-color: #28a745;
    color: white;
    padding: 6px 10px;
    border: none;
    border-radius: 4px;
  }
  
  .btn-reject {
    background-color: #dc3545;
    color: white;
    padding: 6px 10px;
    border: none;
    border-radius: 4px;
  }
  
  .booking-status-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
  }
  
  .status-label {
    font-weight: bold;
    background: #e0e0e0;
    padding: 4px 8px;
    border-radius: 4px;
  }
  
  .status-btn {
    padding: 5px 8px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .status-btn.cancel {
    background-color: #f8d7da;
    color: #721c24;
  }

  .status-btn {
    padding: 5px 8px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 5px;
  }
  
  .status-btn.active {
    background-color: #007bff;
    color: #fff;
  }

/* Cover the entire viewport and center content */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Modal inner container: fixed size, scrollable if content is too tall */
  .modal-content {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    max-width: 600px;    /* Maximum width */
    width: 90%;          /* Responsive width on smaller screens */
    max-height: 80vh;    /* Maximum height is 80% of viewport */
    overflow-y: auto;    /* Enable vertical scrolling if needed */
    position: relative;
    left: 30%;
    top: 5%;
  }
  
  /* Modal header with relative positioning for the close button */
  .modal-header {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    text-align: center;
  }
  
  /* Close button positioned in the header */
  .modal-header .modal-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px; /* Adjust padding as needed */
  }
  
  .modal-header .modal-close:hover {
    color: #000;
  }
  
  .booking-header-right {
    text-align: right;
  }
  
  .booking-search {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 5px;
  }
  
  .btn-search {
    padding: 6px 12px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .btn-search:hover {
    background-color: #218838;
  }
  
  /* Grid container for search results */
  .search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  
  /* Individual booking card styling */
  .booking-card {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
/* Custom Month Navigation (if used separately) */
.month-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
  }
  
  .month-navigation a,
  .month-navigation span {
    margin: 0 1rem;
    font-weight: bold;
    text-decoration: none;
    color: #333;
  }
  
  .month-navigation a:hover {
    text-decoration: underline;
  }
  
  /* Calendar Table Styling for .month_calendar */
  .month_calendar {
    width: 90%;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    table-layout: fixed; /* Ensures each column is the same width */
  }
  
  .month_calendar th {
    text-align: center;
    padding: 0.5rem;
    background-color: #eee;
    border: 1px solid #ddd;
  }
  
  .month_calendar td {
    vertical-align: top;
    width: 14.28%; /* 100 / 7 days in a week */
    height: 100px; /* Adjust as needed */
    border: 1px solid #ddd;
    position: relative;
    padding: 0.5rem;
  }
  
  /* The day number at the top-left corner */
  .date {
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: inline-block;
  }
  
  /* Default day style (removed fixed width/height) */
  .day {
    background-color: #fdfdfd;
    transition: background-color 0.2s ease;


    padding: 5px;
  }
  
  /* Example classes for coloring */
  .day.available {
    background-color: #c1f0c1; /* light green */
  }
  
  .day.unavailable {
    background-color: #f7caca; /* light red */
  }
  
  
  /* Booking box styling inside each day */
  .booking {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 5px;
    padding: 5px;
    font-size: 0.85rem;
    width: fit-content; /* ⬅️ only as wide as needed */
    text-align: center;
  }
  
  /* Custom Calendar Header Styling (if you use a custom header) */
  .calendar-header {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    margin: 1rem 0;
  }
  
  .calendar-header a {
    margin: 0 1rem;
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }
  
  .calendar-header a:hover {
    text-decoration: underline;
  }
  
  .month-year {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 1rem;
  }
  
  /* Built‑in Simple Calendar Container and Header Styling */
  .simple-calendar {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin: 20px auto;
    width: 90%;
  }
  
  .simple-calendar table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }
  
  .simple-calendar .calendar-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    background-color: #f9f9f9;
  }
  
  .simple-calendar .calendar-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
  }
  
  .simple-calendar .calendar-heading nav {
    display: flex;
    gap: 10px;
  }
  
  .simple-calendar .calendar-heading nav a {
    text-decoration: none;
    color: #007bff;
    padding: 5px 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: background-color 0.3s, border-color 0.3s;
  }
  
  .simple-calendar .calendar-heading nav a:hover {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
  }
  
  .day.has-event {
    background-color: #c1f0c1; /* light green background */
  }
  
.day.selected {
    background-color: #d0e7ff;
}

.day.in-range {
  background-color: #d0e7ff;  /* light blue for in-range selection */
}

.day.blocked {
    background-color: #f7caca; /* Red background for blocked days */
  }
  
.selected-blocked {
border: 2px solid black;
}
  
.day.blocked {
    background-color: #f7caca; /* Red background for blocked days */
    box-sizing: border-box;
  }
  
  .selected-blocked {
    border: 2px solid black; /* Black border to indicate selection of a blocked range */
  }
  
  /* Optional: styles for normal selection */
  .day.selected {
    background-color: #d0e7ff;
  }
  
  .day.in-range {
    background-color: #d0e7ff;  /* Light blue for in-range selection */
  }
  

  
/* Fixed sidebar (admin navbar) */
.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;         /* Sidebar width */
    height: 100vh;        /* Full viewport height */
    background-color: #fff;
    border-right: 1px solid #ddd;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;     /* Enable scrolling within the sidebar if needed */
  }
  
  /* Logo area */
  .admin-sidebar__logo {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .admin-sidebar__logo img {
    max-width: 100px;
    height: auto;
  }
  
  /* Nav list styling */
  .admin-sidebar__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .admin-sidebar__nav-list li {
    margin-bottom: 20px; /* Extra spacing between links */
  }
  
  .admin-sidebar__nav-list li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;    /* Bolder text */
  }
  
  /* Footer (Sign Out) pinned at the bottom */
  .admin-sidebar__footer {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: center;
  }
  
  /* Sign Out button styling */
  .admin-sidebar__exit {
    background: none;
    border: none;
    color: #666;         /* Gray text */
    font-weight: 500;
    cursor: pointer;/* Fixed sidebar (admin navbar) */
.admin-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;         /* Sidebar width */
  height: 100vh;        /* Full viewport height */
  background-color: #fff;
  border-right: 1px solid #ddd;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;     /* Enable scrolling within the sidebar if needed */
  
  /* Use flex to arrange items vertically */
  display: flex;
  flex-direction: column;
}

/* ... existing styles for logo, nav list, etc. ... */

/* Footer (Sign Out) pinned at the bottom */
.admin-sidebar__footer {
  margin-top: auto;     /* Push this section to the bottom */
  text-align: center;
}

/* Sign Out button styling */
.admin-sidebar__exit {
  background: none;
  border: none;
  color: #666;          /* Gray text */
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
}
.admin-sidebar__exit:hover {
  color: #333;
}

    text-decoration: none;
    padding: 0;
  }
  .admin-sidebar__exit:hover {
    color: #333;
  }
  
  /* Admin content area: offset by the sidebar's width */
  .admin-content {
    margin-left: 220px;   /* Same as sidebar width */
    padding: 20px;
    background: #DFDFDF;
    height: -webkit-fill-available;
  }
  
  .admin-bg {
    background: #DFDFDF;
  }
/* Hero Section */
.amenities-hero {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 400px; /* Adjust height as needed */
    background: url(/assets/amenities-hero-578a3eb93dcc6b4b862361cc6b0710cb7e3c8bbe45e1dc71b7f42cbffd64981b.jpg) bottom/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.amenities-hero-text {
    color: white;
    width: 100%;
    height: 100%;
    font-size: 28px;
    align-content: flex-end;
}

.amenities-hero-text h1 {
    font-family: 'Happy Time', sans-serif;
    margin-bottom: -22px;
    font-size: 100px; /* Increase font size */
    font-weight: bold;
    line-height: 1.2; /* Ensures clean two-line spacing */
    text-align: left; /* Aligns text to the left */
    white-space: normal; /* Allows proper line breaking */
    word-break: break-word; /* Ensures wrapping on smaller screens */
    padding: 0px;
    padding-left: 75px; /* Keeps left alignment */
    letter-spacing: 2px;
    font-weight: unset;
    position: relative;
    z-index: 20;
}

/* Main Container */
.amenities-container {
    position: relative;
    top: 400px;
    width: 100%;
    min-height: calc(95vh - 430px);
    background: #765F4B;
    overflow: hidden;
}

.amenities-section-one {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 90%;
    margin: 40px auto 0;
}

.amenities-section-one p{
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px; /* Increase font size */
    white-space: normal; /* Allows proper line breaking */
    color: white;
}

/* Section Two - Amenities */
.amenities-section-two {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    max-width: 80vw;
    margin: 40px auto 0;
    margin-top: 0px;
    margin-bottom: 40px;
    border-radius: 10px;
    background-color: #ffffff21;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding-top: 10px;
}

/* Title Section */
.amenities-title {
    color: white;
    margin-bottom: 20px;
    padding-left: 30px;
}

.amenities-title h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.amenities-title p {
    padding-top: 0px;
}

/* Grid Layout */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    gap: 20px;
    padding: 30px;
    padding-top: 10px;
}

/* Card Layout */
.amenity-card {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

/* Image Container */
.amenity-img-container {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.amenity-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text Content */
.amenity-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Title */
.amenity-content h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Description */
.amenity-content p {
    font-size: 14px;
    margin-bottom: 10px;
}

/* Button */
.amenity-btn {
    background: white;
    color: #6D5845;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    align-self: flex-start;
    text-decoration: none;
}

.amenity-btn:hover {
    text-decoration: none;
    background: #cbb6a5;
}

.amenities-map-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    flex-direction: column;
    width: 100%; /* Adjust width to match other sections */
    background: url(/assets/faq-1dfc2acb74612719d89ceac257f9662b807a058a4c0d499e196216efc00a6eec.jpg) center/cover no-repeat;
}

.amenities-map {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    flex-direction: column;
    width: 80vw; /* Adjust width to match other sections */
    margin: 50px auto; /* Centers the section with top-bottom spacing */
    border-radius: 10px;
}

/* Map container */
.map {
    width: 100%;
    height: 400px; /* Adjust height as needed */
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 768px) {
    .amenities-hero {
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
        position: relative;
        width: auto;
    }

    .amenities-hero-text h1 {
        font-family: 'Happy Time', sans-serif;
        font-size: 35px;
        font-weight: bold;
        line-height: 1.0;
        /* text-align: left; */
        white-space: normal;
        word-break: break-word;
        padding: 0px;
        /* padding-left: 75px; */
        /* margin-bottom: 0px; */
        letter-spacing: 2px;
        font-weight: unset;
        position: relative;
        z-index: 20;
        max-width: 430px;
        top: 3px;
        width: auto;
        padding-left: 40px;
    }

    .amenities-container {
        top: 0px;
            background: #4b3c33;
    }

    .amenities-section-one{
        display: block;
        background: #765F4B;
        width: 100%;
        padding: 20px;
        padding-top: 20px;
        /* padding-right: 50px; */
        margin-top: 0px;
    }

    .amenities-grid {
        display: flex;
        flex-wrap: nowrap; /* Prevent wrapping */
        overflow-x: auto; /* Enable horizontal scrolling */
        scroll-snap-type: x mandatory; /* Snap scrolling for better UX */
        gap: 15px; /* Space between items */
        padding: 10px; /* Adds spacing */
    }

    /* Make each card take full width */
    .amenity-card {
        min-width: 84%;
        /* flex: 0 0 auto; */
        scroll-snap-align: center;
        /* padding: 0px; */
        /* padding-left: 10px; */
        padding: 20px;
        /* padding-bottom: 10px; */
        height: 150px;
    }

    /* Hide scrollbar but allow scrolling */
    .amenities-grid::-webkit-scrollbar {
        display: none; /* Hide scrollbar on WebKit browsers */
    }

    .amenities-grid {
        -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
        scrollbar-width: none; /* Hide scrollbar for Firefox */
    }

    .amenity-content h4 {
        font-size: 18px;
        font-weight: bold;
        margin: 0px;
    }

    .amenities-section-two {
        background: none;
        border-radius: 10px;
        max-width: 100%;
        margin: 0px auto 0;
        margin-top: 0px;
        margin-bottom: 40px;
        border-radius: 0px;
        border: 0px solid rgba(255, 255, 255, 0.5);
        padding-top: 0px
    }

    .amenities-text p {
        width: 90% !important;
        padding: 0px;
    }

    .map{
        height: 250px;
    }

    .bys-amenities-btn{
        position: relative;
        display: block;
        margin: 10px auto;
        text-align: center;
        top: 30px;
        z-index: 100;
        border-radius: 30px;
        color: black;
        background: white;
        font-family: 'Inter', sans-serif;
        font-weight: 300;
        width: 40%;
        z-index: 99999;
        padding: 10px;
        text-decoration: unset;
        }


}

.bys-hero {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 400px; /* Adjust height as needed */
    background: url(/assets/bys-f4c15f87faa0d6d649c0e708982726da6ad851336998c6f278d5f06c462a5c39.jpg) center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.bys-hero-text {
    color: white;
    width: 100%;
    height: 100%;
    /* padding: 20px; */
    font-size: 28px;
    align-content: flex-end;
}

.bys-hero-text h1 {
    font-family: 'Happy Time', sans-serif;
    margin-bottom: -22px;
    font-size: 100px; /* Increase font size */
    font-weight: bold;
    line-height: 1.2; /* Ensures clean two-line spacing */
    text-align: left; /* Aligns text to the left */
    white-space: normal; /* Allows proper line breaking */
    word-break: break-word; /* Ensures wrapping on smaller screens */
    padding: 0px;
    padding-left: 75px; /* Keeps left alignment */
    letter-spacing: 2px;
    font-weight: unset;
    position: relative;
    z-index: 20;
}

.bys-container {
    position: relative;
    top: 400px;
    width: 100%;
    background: #765F4B;
    overflow: hidden;
}

.bys-section-one {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
}

.bys-section-one h3{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px; /* Increase font size */
    white-space: normal; /* Allows proper line breaking */
    color: white;
    text-align: center;
}

.bys-section-one p{
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px; /* Increase font size */
    white-space: normal; /* Allows proper line breaking */
    color: white;
    text-align: center;
}

.bys-form {
    max-width: 900px;
    margin: 40px auto;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 0px;
    border-right: 0px;
    border-left: 0px;
    margin-top: 0px !important;
}


/* Form Fields */
.bys-form-section {
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top: 0px;

    padding-top: 20px;
}

.bys-form-section h2 {
    font-size: 20px;
    font-weight: 400;
    color: white;
    display: block;
    margin-bottom: 5px;
    margin-top: 0px;

    font-family: 'inter', sans-serif;
}

.bys-form legend {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

/* Form Inputs */
.bys-form input,
.bys-form select,
.bys-form option,
.bys-form textarea {
    width: 99%;
    padding: 5px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgb(255 255 255 / 40%);
    color: white;
    border-radius: 5px;
    margin-bottom: 10px;
    font-family: 'inter', sans-serif;
    font-size: 12px;
    color: white;
    display: block;
}

.bys-form select option {
    color: black; /* White text */
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    padding: 5px;
    border-radius: 0px !important;
}

/* Ensure radio buttons & labels align properly */
.radio-group {
    display: flex !important;
    gap: 20px; /* Adds spacing between the options */
    align-items: center;
}

/* Keep radio buttons and labels aligned horizontally */
.radio-group label {
    display: flex !important;
    align-items: center;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: white;
    white-space: nowrap; /* Prevents the label from breaking into multiple lines */
}

/* Adjust radio button size */
.radio-group input {
    margin-right: 8px !important; /* Adds spacing between radio button and text */
    transform: scale(1.2)!important; /* Increase radio button size */
    /* padding: 0px !important; */
    padding-right: 5px !important;
    margin: 0px !important;
    margin-right: 10px !important;
}




/* Grouping Fields */
.form-group {
    display: flex;
    gap: 50px;
}

.form-group input {
    flex: 1;
}

.guest-count {
    flex: 0  !important;
    width: 30px !important;
}

.arrival-time {
    flex: 0  !important;
    width: 150px !important;
}

.guest-group-number {
    display: flex;
    gap: 15px;
    padding-top: 10px;
}

/* Radio Buttons */
.form-group-radio {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    width: 0 !important;
    display: 0 !important;
}

.bys-form label {
    font-family: 'inter', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: white;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.form-group-radio input {
    margin-right: 5px;
}

.input-field p {
    padding-top: 30px;
    font-family: 'inter', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: white;
    display: block;
}

.stay-summary {
    margin-top: 10px;
}
.stay-summary p{
    padding: 0px;
    margin: 0px;
    font-family: 'inter', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: white;
    display: block;
}

/* Date Fields */
.date-group {
    width: 30%;
    display: flex;
    gap: 10px;
}

.date-group input {
    flex: 1;
}

/* Textarea */
.bys-form textarea {
    min-height: 100px;
    resize: none;
}

/* Submit Button */
.booking-submit-btn {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: white;
    display: block;
    background: rgb(255 255 255 / 40%);
    border-radius: 5px;
    cursor: pointer;
    margin: 30px auto; /* Center horizontally */
    width: 175px !important;
    text-align: center;
    white-space: normal;
    background-color: #ffffff5c;
    border-radius: 10px;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid white;
}


.booking-submit-btn:hover {
    background: #cbb6a5;
}

.bys-form-section h2 {
    font-size: 20px;
    font-weight: 400;
    color: white;
    font-family: 'Inter', sans-serif;
}

.bys-form-section h2 p {
    font-size: 10px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    display: inline; /* Makes (Optional) stay inline */
    margin-left: 10px; /* Adds spacing */
}

.rules-text {
        padding: 0px;
    margin: 0px;
    font-family: 'inter', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: white;
    display: block;
}

.terms-checkbox {
    display: flex;
    align-items: center; /* Align checkbox and text vertically */
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: white;
    gap: 8px; /* Adds spacing between checkbox and text */
    justify-content: space-around;
}

.terms-checkbox label {
    display: flex;
    align-items: center; /* Align checkbox and text */
    gap: 8px; /* Adds spacing between checkbox and text */
    cursor: pointer;
}

.terms-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    transform: scale(1.2); /* Slightly enlarges the checkbox */
}

.terms-checkbox a {
    color: #FFD700; /* Gold color for visibility */
    text-decoration: underline;
    margin-left: 4px;
}

@media screen and (max-width: 768px) {

.booking-submit-btn {
    margin-bottom: 120px !important;
}

.radio-group {
    padding-top: 10px;
    display: block !important;
}

.radio-group input{
        width: 15px;
}

   .bys-hero {
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
        position: relative;
        width: auto;
    }

    .bys-hero-text h1 {
        font-family: 'Happy Time', sans-serif;
        font-size: 35px;
        font-weight: bold;
        line-height: 1.0;
        /* text-align: left; */
        white-space: normal;
        word-break: break-word;
        padding: 0px;
        /* padding-left: 75px; */
        /* margin-bottom: 0px; */
        letter-spacing: 2px;
        font-weight: unset;
        position: relative;
        z-index: 20;
        max-width: 430px;
        top: 3px;
        width: auto;
        padding-left: 55px;
    }

    .bys-container {
        top: 0px;
    }

    .bys-section-one p {
        padding: 20px;
        margin: 0px;
        width: 90% !important;
    }

        .input-field {
        width: 100%;
    }

    /* Special case: First Name & Last Name should be side by side */
    .form-group.first-last-group .input-field {
        width: 48%; /* Each takes about half of the row */
        display: inline-block; /* Ensures they stay side by side */
    }

        .input-field {
        width: 100%;
        display: block; /* Ensures stacking */
    }

    /* Ensure form groups don't attempt side-by-side layouts */
    .form-group {
        display: block; /* Stack items vertically */
    }

    .bys-form select{
        width: 45%;
    }

    .terms-checkbox {
        padding: 10px
    }

    
}

.guest-group-number {
    display: flex;
    align-items: center; /* Ensures vertical alignment */
    gap: 10px; /* Adds spacing between elements */
    flex-wrap: nowrap; /* Prevents wrapping */
}

/* Ensure the input field is sized properly */
.guest-group-number .guest-count {
    width: 50px; /* Adjust width as needed */
    text-align: center;
}

/* Style the label to align properly */
.guest-group-number label {
    font-size: 14px;
    white-space: nowrap; /* Prevents label from wrapping */
}

/* Guest buttons container (only visible on mobile) */
.guest-buttons {
    display: flex;
    gap: 5px;
}

/* Button styling */
.guest-btn {
    padding: 5px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgb(255 255 255 / 40%);
    color: white;
    border-radius: 5px;
    margin-bottom: 10px;
    font-family: 'inter', sans-serif;
    font-size: 12px;
    color: white;
    width: 30px;
    /* display: block; */
    margin: 0px 5px;
}

.guest-btn:hover {
    background-color: #ddd;
}

/* 📱 Ensure buttons only appear on mobile */
@media screen and (max-width: 768px) {
    .guest-buttons {
        display: flex; /* Show on mobile */
    }
}

@media screen and (min-width: 769px) {
    .guest-buttons {
        display: none; /* Hide on desktop */
    }
}
/* Hero Section */
.confirmation-hero {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 400px; /* Adjust height as needed */
    background: url(/assets/confirmation-9753123729a4c382e9bac75250571f97870602c205630f3889b51e4b3ef2be2f.jpg) bottom/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}


.confirmation-hero-text {
    color: white;
    width: 100%;
    height: 100%;
    font-size: 28px;
    align-content: flex-end;
}

.confirmation-hero-text h1 {
    font-family: 'Happy Time', sans-serif;
    margin-bottom: -22px;
    font-size: 100px; /* Increase font size */
    font-weight: bold;
    line-height: 1.2; /* Ensures clean two-line spacing */
    text-align: left; /* Aligns text to the left */
    white-space: normal; /* Allows proper line breaking */
    word-break: break-word; /* Ensures wrapping on smaller screens */
    padding: 0px;
    padding-left: 75px; /* Keeps left alignment */
    letter-spacing: 2px;
    font-weight: unset;
    position: relative;
    z-index: 20;
}

/* Main Container */
/* Main Container */
.confirmation-container {
    position: relative;
    top: 400px;
    width: 100%;
    min-height: 60vh;
    background: #4B3C33;
    display: flex;
    
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
    text-align: center;
}

/* Section One */
.confirmation-section-one {
    display: flex;
    flex-direction: column; /* Stack items in a column */
    align-items: center; /* Center horizontally */
    justify-content: center; /* Center vertically */
    gap: 20px; /* Adds space between items */
    max-width: 700px; /* Prevents content from stretching too wide */
}

/* Centered paragraph */
.confirmation-section-one p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: white;
    text-align: center;
    max-width: 600px; /* Prevents text from going too wide */
    padding: 0px; /* Add padding to the sides */
}

/* Styling for the button */
.confirmation-section-one .btn {
    display: inline-block;
    text-align: center;
    border: 2px solid white;
    text-decoration: none;
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: white;
    background: rgb(255 255 255 / 40%);
    cursor: pointer;
    text-align: center;
    white-space: normal;
    background-color: #ffffff5c;
    border-radius: 10px;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid white;
}

.confirmation-section-one .btn:hover {
    background: #cbb6a5;
}

/* Thank You Header */
.confirmation-section-one h2 {
    font-family: 'Happy Time', sans-serif;
    font-size: 48px;
    font-style: italic;
    letter-spacing: 1px;
    font-weight: unset;
    color: white;
    text-align: center;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

@media screen and (max-width: 768px) {

    .confirmation-hero {
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
        position: relative;
        width: auto;
    }

    .confirmation-hero-text h1 {
        font-family: 'Happy Time', sans-serif;
        font-size: 35px;
        font-weight: bold;
        line-height: 1.0;
        /* text-align: left; */
        white-space: normal;
        word-break: break-word;
        padding: 0px;
        /* padding-left: 75px; */
        /* margin-bottom: 0px; */
        letter-spacing: 2px;
        font-weight: unset;
        position: relative;
        z-index: 20;
        max-width: 430px;
        top: 3px;
        width: auto;
        padding-left: 60px;
    }

    .confirmation-container {
        top: 0px;
        min-height: 80vh;
    }

    .confirmation-section-one .btn {
        border-radius: 20px;
        background: white;
        color: black;
    }
}
/* app/assets/stylesheets/devise.css */
  
.devise-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 320px;
  }
  
  .devise-login-container h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .devise-form-group {
    margin-bottom: 15px;
  }
  
  .devise-form-group label {
    display: block;
    margin-bottom: 5px;
  }
  
  .devise-form-group input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .devise-form-group input:focus {
    border-color: #66afe9;
    outline: none;
  }
  
  .devise-actions {
    text-align: center;
  }
  
  .devise-actions input {
    padding: 10px 20px;
    border: none;
    background: #28a745;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .devise-actions input:hover {
    background: #218838;
  }
  
  .login-page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* full viewport height */
  }
  
@font-face {
    font-family: 'Happy Time';
    src: url(/assets/HappyTime-d67e01d6a86c00ab080e79cb3d511f558f2fea049d788a2744cc695ff3c2739c.otf) format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Hero Section */
.faq-hero {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 400px; /* Adjust height as needed */
    background: url(/assets/faq-1dfc2acb74612719d89ceac257f9662b807a058a4c0d499e196216efc00a6eec.jpg) center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.faq-hero-text {
    background: linear-gradient(to bottom,  
        rgba(35, 24, 15, 0.73) 0%,  /* Dark brown with 83% opacity */
        rgba(64, 64, 64, 0.1) 40%  /* Gray with 39% opacity */
    );
    color: white;
    width: 100%;
    height: 100%;
    /* padding: 20px; */
    font-size: 28px;
    align-content: flex-end;
}
.faq-hero-text h1 {
    font-family: 'Happy Time', sans-serif;
    margin-bottom: -22px;
    font-size: 100px; /* Increase font size */
    font-weight: bold;
    line-height: 1.2; /* Ensures clean two-line spacing */
    text-align: left; /* Aligns text to the left */
    max-width: 725px; /* Prevents title from stretching too wide */
    white-space: normal; /* Allows proper line breaking */
    word-break: break-word; /* Ensures wrapping on smaller screens */
    padding: 0px;
    padding-left: 100px; /* Keeps left alignment */
    letter-spacing: 2px;
    font-weight: unset;
    position: relative;
    z-index: 20;
}

/* FAQ Section */
.faq-container {
    position: relative;
    top: 400px; /* Places it directly below .faq-hero */
    left: 0;
    width: 100vw; /* Ensures it takes full width without side scrolling */
    background-color: #A58E68;
    z-index: 10; /* Moves it to the very back */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    overflow: hidden;
}

.faq-container h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.faq-list {
    width: 80vw;
}

/* FAQ Items */
.faq-item {
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
    color: white;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
}

/* FAQ Toggle Button */
.faq-toggle {
    background: none;
    border: none;
    font-size: 24px; /* Ensures consistent size */
    font-weight: bold;
    width: 40px; /* Ensures button takes up equal space */
    height: 40px; /* Makes it a square */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white; /* Makes the icon white */
}

/* Ensures button size stays fixed */
.faq-icon {
    display: inline-block;
    width: 100%;
    text-align: center;
}


/* Initially Hide Answers */
.faq-answer {
    display: none;
    padding: 10px 0;
    font-size: 16px;
    color: white;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    overflow: hidden;
}

@media screen and (max-width: 768px) {

    .faq-container{
        top: 0px
    }
    .faq-hero {
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
        position: relative;
        width: auto;
    }

    .faq-hero-text {
    background: none;
        font-size: 18px;
        text-align: center;
        padding: 0;
        max-width: 90%;
    }

    .faq-hero-text h1 {
        font-family: 'Happy Time', sans-serif;
        font-size: 38px;
        font-weight: bold;
        line-height: 1.0;
        text-align: center;
        white-space: normal;
        word-break: break-word;
        padding: 0px;
        /* padding-left: 75px; */
        /* margin-bottom: 0px; */
        letter-spacing: 2px;
        font-weight: unset;
        position: relative;
        z-index: 20;
        max-width: 430px;
        top: 3px;
        width: auto;
        padding-left: 0px;
    }
}
/* Hero Section */
.home-hero {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    background: url(/assets/home-hero-d2adbfa0ace5d314b0672b9a9d06a765d0446e7e309944e546adb72bd6cb476a.jpg) center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.home-hero-text {
    color: white;
    width: 100%;
    height: 100%;
    /* padding: 20px; */
    font-size: 28px;
    align-content: flex-end;
}

.mobile-only {
    display: none !important;
}

.desktop-only{
    display: block !important;
}

.home-hero-text h1 {
    font-family: 'Happy Time', sans-serif;
    font-size: 120px; /* Increase font size */
    font-weight: bold;
    line-height: 1.0; /* Ensures clean two-line spacing */
    text-align: left; /* Aligns text to the left */
    white-space: normal; /* Allows proper line breaking */
    word-break: break-word; /* Ensures wrapping on smaller screens */
    padding: 0px;
    padding-left: 75px; /* Keeps left alignment */
    margin-bottom: 0px;
    letter-spacing: 2px;
    font-weight: unset;
    position: relative;
    z-index: 20;
    max-width: 430px;
    top: -100px;
}

.home-hero-text p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px; /* Increase font size */
    white-space: normal; /* Allows proper line breaking */
    padding-left: 75px; /* Keeps left alignment */
    position: relative;
    max-width: 300px;
    top: -100px;
}

.home-hero-text a {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    left: 75px;
    font-size: 16px; /* Increase font size */
    white-space: normal; /* Allows proper line breaking */
    /* padding-left: 75px; Keeps left alignment */
    position: relative;
    max-width: 300px;
    top: -100px;
    background-color: #ffffff5c;
    border-radius: 10px;
}

.home-section-one {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 50px;
    padding-right: 50px;
}

.home-section-one h2{
    font-family: 'Happy Time', sans-serif;
    font-size: 48px;
    margin-bottom: 5px;
    margin-top: 5px;
    font-style: italic;
    letter-spacing: 1px;
    font-weight: unset;
    position: absolute;
    top: 13px;
    left: 60px;
    color: white;
}

.home-section-one p{
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px; /* Increase font size */
    white-space: normal; /* Allows proper line breaking */
    color: white;
    /* padding-left: 75px; Keeps left alignment */
    /* position: relative;
    max-width: 300px;
    top: -100px; */
}

.home-container {
    position: relative;
    top: 600px; /* Places it directly below the hero section */
    left: 0;
    width: 100%;
    min-height: calc(95vh - 430px); /* Ensure it fills remaining height */
    background: #765F4B; /* Matches Figma design */
    overflow: hidden; /* Prevents inner scrolling */
}

/* Gallery Container */
/* Ensure Gallery is placed below home-container */
.gallery-container {
    position: relative;
    padding: 0px;
    margin: 0px;
    top: 600px;
    width: 100%;
    overflow: hidden;
}

/* Set fixed height for consistency */
.gallery-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 500px;
}

/* Fix Slide Image Sizing */
.gallery-slide {
    min-width: 100%;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.gallery-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover; /* Ensures consistent size */
    display: block;
}

/* Show Active Slide */
.gallery-slide.active {
    display: block;
}

/* Fix Chevron Buttons Position */
.prev-btn, .next-btn {
    position: absolute;
    bottom: 30px; /* Moves chevrons above dots */
    left: 50%;
    transform: translateX(-50%);
    background: none; /* Removes background effect */
    color: white;
    border: none;
    font-size: 32px;
    cursor: pointer;
    z-index: 3;
}

/* Position left and right */
.prev-btn {
    left: 48%;
}
.next-btn {
    left: 52%;
}

.left-button{
    position: relative;
    z-index: 9999;
    width: 100px;
    height: 100px;
    bottom: -34px;
    left: -40px;
}

.right-button{
    position: relative;
    z-index: 9999;
    width: 100px;
    height: 100px;
    bottom: -32px;
    left: 40px;
}

/* Remove hover circle */
.prev-btn:hover, .next-btn:hover {
    background: none;
    color: rgba(255, 255, 255, 0.8);
}

/* Fix Dot Indicators */
.dot-container {
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    height: 8px;
    width: 8px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: white;
}

.home-icon-container {
    position: relative;
    top: 600px; /* Places it directly below the hero section */
    left: 0;
    width: auto;
    min-height: calc(90vh - 500px);
    background: #4B3C33; /* Matches Figma design */
    overflow: hidden; /* Prevents inner scrolling */
    display: flex ;
    justify-content: center; /* Centers the icon wrapper */
    align-items: center;
    padding-top: 30px;
    padding-bottom: 25px;
}

.home-icon-wrapper {
display: flex
; */
    justify-content: space-evenly;
    /* align-items: center; */
    /* gap: 30px; */
    width: inherit;
    display: flex
;
    /* flex-direction: column; */
    /* justify-content: center; */
    align-items: center;
    text-align: center;
}

.home-icon {
    flex: 1; /* Ensures equal spacing */
    display: flex;
    flex-direction: column; /* Stacks image and text */
    justify-content: center;
    align-items: center;
    text-align: center;
}

.home-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px; /* Space between image and text */
}

.home-icon p {
    font-size: 16px;
    color: white; /* Adjust color as needed */
    margin: 0;
}

/* Explore Section */
.explore-container {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust based on needs */
    background: url(/assets/explore-hero-7f268dfe695bf25fe6a01333e44936965bee917bd64c6fb062083c575365018a.jpg) center/cover no-repeat; /* Background image */
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align content to the right */
    top: 600px;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Wrapper */
.explore-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align text to right side */
    padding-right: 50px; /* Adjust spacing from right edge */
}

/* Content Box */
.explore-content {
    max-width: 600px; /* Limit text width */
    padding: 20px;
    border-radius: 10px;
}

/* Title */
.explore-content h2 {
    font-family: 'Happy Time', sans-serif;
    font-size: 48px;
    margin-bottom: 5px;
    margin-top: 5px;
    font-style: italic;
    letter-spacing: 1px;
    font-weight: unset;
    text-align: right;
    color: white;
}

/* Paragraph */
.explore-content p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: white;
    text-align: right;
    line-height: 1.5;
}

/* Button */
.explore-content .btn {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    white-space: normal;
    position: relative;
    max-width: 300px;
    border-radius: 10px;
}

.explore-content .btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.about-home-container {
    position: relative;
    width: 100%;
    height: auto; /* Adjust based on needs */
    background: #765F4B; /* Background image */
    display: flex;
    align-items: center;
    justify-content: space-between; /* Align content to the right */
    top: 600px;
    
}

.about-home-text{
    width: 40%;
    padding: 20px;
    padding-left: 85px;
    padding-top: 100px;
}

.about-home-text h2 {
    font-family: 'Happy Time', sans-serif;
    font-size: 48px;
    margin-bottom: 5px;
    margin-top: 5px;
    font-style: italic;
    letter-spacing: 1px;
    font-weight: unset;
    text-align: left;
    color: white;
}

/* Paragraph */
.about-home-text p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: white;
    text-align: left;
    line-height: 1.5;
    padding-bottom: 20px;
}

.darkbrown {
    background: #4B3C33;
}

.about-home-text a {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    white-space: normal;
    position: relative;
    max-width: 300px;
    border-radius: 10px;
}

.about-home-text {
    
    float: left; /* Moves text to the left */
}

.about-image {
    
    float: right; /* Moves image to the right */
}

.about-image img {
    width: 100%;
    height: auto;
    padding: 50px 0;
}

/* Prevents container from collapsing due to floated elements */
.about-home-container::after {
    content: "";
    display: block;
    clear: both;
}


.about-home-text a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.home-enquiry-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(39, 33, 31, 0.5); /* Transparent dark background */
    padding: 50px;
    color: white;
    gap: 100px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 125px;
    top: 600px;
    background: url(/assets/enquire-background-428a5a7aa9825ad7bbe8b46cb7d531f8b8bad06d3cfd081561299ad26e0abb15.jpg) center/cover no-repeat;
}

@media screen and (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }
    .contianer{
       width: 91%;
    }


    /* Adjust Hero Section */
    .home-hero {
        height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
        position: relative;
    }

    .home-hero-text {
        font-size: 18px;
        text-align: center;
        padding: 0;
        max-width: 90%;
    }

    .home-hero-text h1 {
        font-size: 48px;
        padding-left: 0;
        text-align: center;
        top: 0;
    }

    .mobile-only {
        display: block !important; /* Show only on small screens */
    }

    .desktop-only {
        display: none !important; /* Hide completely */
    }

    .sub-heading-mobile-only {
        display: block;
        font-size: 40px !important;
        padding-left: 0;
        text-align: center;
        margin-top: 0px;
    }

    .about-text {
        width: 100% !important;
        padding: 20px;
    }

    .about-text p {
        font-size: 16px;
    }

    .home-hero-text p {
        padding-left: 0;
        max-width: 100%;
    }

    .home-hero-text a {
        display: block;
        margin: 10px auto;
        text-align: center;
        left: 0px;
        top: 50px;
        z-index: 100;
        border-radius: 30px;
        color: black;
        background: white;
        font-family: 'Inter', sans-serif;
        font-weight: 300;
        width: 40%;
    }

    /* Adjust Section Layouts */
    .home-container,
    .gallery-container,
    .home-icon-container,
    .explore-container,
    .about-home-container,
    .home-enquiry-section {
        position: relative;
        top: 0;
        padding: 20px;
        text-align: center;
        min-height: auto;
    }

    .home-icon-container{
        padding-bottom: 30px;
        width: 100%;
    }

    .bys-btn {
        position: relative;
        display: block;
        margin: 10px auto;
        text-align: center;
        left: 25px;
        top: -30px;
        z-index: 100;
        border-radius: 30px;
        color: black;
        background: white;
        font-family: 'Inter', sans-serif;
        font-weight: 300;
        width: 40%;
        z-index: 99999;
        padding: 10px;
        text-decoration: unset;
    }

    .home-section-one {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }

    .home-section-one h2 {
        font-size: 36px;
        left: 0;
        position: static;
    }

    .home-section-one p {
        font-size: 16px;
    }

    /* Adjust Gallery */

    .gallery-container{
        
    }

    .gallery-wrapper {
        height: 300px !important;
    }

    .gallery-slide {
        
        transition: opacity 0.5s ease-in-out;
        display: none;
    }

    .gallery-slide img {
        margin-top: -20px;
        margin-left: -20px;
        width: 110% !important;
        height: 115% !important;
        display: block;
        }

    /* Show Active Slide */
    .gallery-slide.active {
        display: block;
    }

    .left-button{
        position: relative;
        z-index: 9999;
        width: 100px;
        left: -255px;
        top: -100px;
    }

    .right-button{
        position: relative;
        z-index: 9999;
        width: 100px;
        height: 100px;
        left: 31px;
        top: -100px;
    }

    .prev-btn, .next-btn {
        width: 50px;
        height: 50px;
    }

    .our-home{
        position: relative;
        top: 600px; /* Places it directly below the hero section */
        left: 0;
        width: 100%;
        min-height: calc(95vh - 430px); /* Ensure it fills remaining height */
        background: #765F4B; /* Matches Figma design */
        overflow: hidden; /* Prevents inner scrolling */
    }

    /* Adjust Icon Section */
    .home-icon-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        width: 100%;
    }

    .home-icon img {
        width: 60px;
        height: 60px;
    }

    .home-icon p {
        font-size: 14px;
    }

    /* Adjust About Section */
    .about-home-container {
        flex-direction: column;
        text-align: center;
        height: auto;
    }

    .about-home-text a{
        display: block;
        text-align: left;
        flex-direction: column;
        text-align: center;
        height: auto;
        width: 120px;
        border-radius: 20px;
        margin-bottom: 10px;
    }

    .about-home-text {
        width: 100%;
        padding: 0px;

    }

    .about-home-text h2 {
        font-size: 36px;
    }

    .about-home-text p {
        font-size: 14px;
    }

    .explore-container {
        height: 370px;
    }

    .explore-content {
        max-width: 100%;
        text-align: center;
        padding: 20px;
    }

    .explore-content h2 {
        font-size: 36px;
        text-align: right;
    }

    .explore-content p {
        font-size: 14px;
        text-align: right;
    }

    .explore-content a {
        display: inline-block;
        flex-direction: column;
        text-align: center;
        float: right;
        height: auto;
        width: 120px;
        border-radius: 20px;
        margin-bottom: 10px;
        background: white;
        color: black;
        border-radius: 20px !important;
    }

    .explore-wrapper {
        padding-right: 0px;
    }

    /* Adjust Enquiry Section */
    .home-enquiry-section {
        display: inherit;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 20px;
        box-sizing: unset;
        width: 100%;
        overflow: visible;
        height: 700px;
        margin-top: -60px;
        
    }

    .home-enquiry-section h2 {
        font-family: 'Happy Time', sans-serif;
        font-size: 48px;
        margin-bottom: 5px;
        margin-top: 5px;
        font-style: italic;
        letter-spacing: 1px;
        font-weight: unset;
        
        top: 13px;
        left: 60px;
        color: white;
        text-align: left;
        padding-bottom: 20px;
    }

    .enquiry-form {
        width: auto;
        /* width: 100%; */
        /* max-width: 500px; */
        background: rgba(255, 255, 255, 0.1);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        position: relative;
    }

    .enquiry-form h2 {
        font-size: 24px;
        text-align: center;
        margin-bottom: 15px;
        width: 100%;
        display: block;
    }

    .enquiry-form input,
    .enquiry-form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 5px;
        background: transparent;
        color: white;
    }

    .enquiry-form textarea {
        min-height: 54px;
        resize: none;
    }

    .enquiry-form button {
        width: 100%;
        padding: 5px;
        border: 2px solid rgba(255, 255, 255, 0.5);
        background: transparent;
        color: white;
        font-size: 13px;
        border-radius: 5px;
        cursor: pointer;
        background-color: #ffffff21;
        font-family: 'Inter', sans-serif;
        font-weight: 300;
    }
    
    .about-map {
        width: 100%;
        height: 200px;
        border-radius: 5px;
    }

    .enquiry-map {
        width: 100%;
        max-width: 500px;
        height: 300px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        overflow: visible;
    }

    .contact-info {
        text-align: center;
        font-size: 14px;
        padding-top: 10px;
        width: 100%;
        display: block;
        padding-bottom: 2px;
    }

    .contact-info p {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
        max-width: 100%;
        margin: 0 auto;
        word-wrap: break-word;
    }

    .contact-info img {
        width: 16px;
        height: 16px;
    }
}

@media screen and (min-width: 1440px) {
    .home-icon-container {
    position: relative;
    top: 600px; /* Places it directly below the hero section */
    left: 0;
    width: auto;
    min-height: 100% !important;
    background: #4B3C33; /* Matches Figma design */
    overflow: hidden; /* Prevents inner scrolling */
    display: flex ;
    justify-content: center; /* Centers the icon wrapper */
    align-items: center;
    padding-top: 50px;
    padding-bottom: 60px;
}

    .home-container {
        min-height: 100% !important;
    }
}
/* Fixed Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent; /* Default transparent */
    border-bottom: 1px solid white;
    z-index: 1000;
    padding: 15px 0;
    transition: background 0.6s ease-in-out, backdrop-filter 0.6s ease-in-out, border-bottom 0.6s ease-in-out;
}

/* When User Scrolls, Change Background with Smooth Transition */
.navbar.scrolled {
    background: #ffffff5c; /* Faded white background */
    backdrop-filter: blur(10px); /* Slight blur for better readability */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}


/* Navbar Container */
.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative; /* Needed for absolute positioning of the logo */
    width: 97%;
    margin: 0 auto;
}

/* Hamburger Menu */
.hamburger {
    font-size: 24px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Center Logo */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* Ensures exact centering */
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 60px;
    display: block;
}

/* Right Buttons */
.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid white;
    border-radius: 20px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: fixed;
    top: 67px; /* Start from original placement */
    left: 0;
    width: 100%;
    background: #4b3c33;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    opacity: 0; /* Start fully hidden */
    visibility: hidden;
    /* transform: translateY(-10px); Slightly move up before appearing */
    transition: transform 0.5s ease-out, opacity 0.5s ease-out, visibility 0.5s;
}

/* Dropdown Links */
.dropdown-menu.active {
    display: flex;
    gap: 50px;
    z-index: 1000;
}

.dropdown-item {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: white;
    text-align: center;
}

.dropdown-item:hover {
    text-decoration: none;
}

.dropdown-menu.active {
    opacity: 1; /* Fade in */
    visibility: visible;
    transform: translateY(0); /* Moves to normal position */
}

/* Fade-out Effect (Fades Out & Moves Up Slightly) */
/* Fade-out Effect */
.dropdown-menu.fade-out {
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    visibility: hidden;
}

.flash-container {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    z-index: 1000;
  }
  
  .flash-message {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    opacity: 0.95;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .flash-message.notice { background-color: #4CAF50; } /* Green */
  .flash-message.alert { background-color: #FF5733; } /* Red */
  .flash-message.warning { background-color: #FFA500; } /* Orange */
  
  .close-flash {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-left: 10px;
  }
  
  @media screen and (max-width: 768px) {
    .logo{
        left: 90%;
    }

    .dropdown-menu {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        top: 61px;
        z-index: 991000 !important;
    }

    .dropdown-item {
        font-size: 20px;
    }
  }
.property-details-hero {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 400px; /* Adjust height as needed */
    background: url(/assets/property-hero-d6e9b31ea4359745cf5437943c45204e7b6f23c86a135b2b56b4491f3d43633b.jpg) center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.property-details-hero-text {
    color: white;
    width: 100%;
    height: 100%;
    font-size: 28px;
    align-content: flex-end;
}

.property-details-hero-text h1 {
    font-family: 'Happy Time', sans-serif;
    margin-bottom: -22px;
    font-size: 100px; /* Increase font size */
    font-weight: bold;
    line-height: 1.2; /* Ensures clean two-line spacing */
    text-align: left; /* Aligns text to the left */
    white-space: normal; /* Allows proper line breaking */
    word-break: break-word; /* Ensures wrapping on smaller screens */
    padding: 0px;
    padding-left: 75px; /* Keeps left alignment */
    letter-spacing: 2px;
    font-weight: unset;
    position: relative;
    z-index: 20;
}

.property-container {
    position: relative;
    top: 400px; /* Places it directly below the hero section */
    left: 0;
    width: 100%;
    min-height: calc(95vh - 430px); /* Ensure it fills remaining height */
    background: #A58E69; /* Matches Figma design */
    overflow: hidden; /* Prevents inner scrolling */
}

.property-section-one-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 30px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 30px;
}

.property-section-one-text p{
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px; /* Increase font size */
    white-space: normal; /* Allows proper line breaking */
    color: white;
}

.about-text {
    width: 40%;
    padding: 20px;
}

.about-text p {
    width: 100%;
}

.property-icon-container {
    position: relative;
    top: 355px; /* Places it directly below the hero section */
    left: 0;
    width: 100%;
    min-height: calc(75vh - 430px); /* Ensure it fills remaining height */
    background: #A58E69; /* Matches Figma design */
    overflow: hidden; /* Prevents inner scrolling */
    display: flex;
    justify-content: center; /* Centers the icon wrapper */
    align-items: center;
}

.property-icon-container-lower {
    position: relative;
    top: 355px; /* Places it directly below the hero section */
    left: 0;
    width: 100%;
    min-height: calc(75vh - 430px); /* Ensure it fills remaining height */
    background: #A58E69; /* Matches Figma design */
    overflow: hidden; /* Prevents inner scrolling */
    display: flex;
    justify-content: center; /* Centers the icon wrapper */
    align-items: center;
    padding-bottom: 30px;
}

.property-icon-wrapper {
    display: flex;
    justify-content: center; /* Centers icons */
    align-items: center;
    gap: 50px; /* Adjust spacing between icons */
    width: 80%; /* Ensures a reasonable width */
    max-width: 1200px; /* Prevents the icons from stretching too wide */
}

.property-icon {
    flex: 1; /* Ensures equal spacing */
    display: flex;
    align-items: center;
    text-align: center;
}

.property-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px; /* Space between image and text */
}

.property-icon p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: white;
    
    line-height: 1.5;
    padding-bottom: 20px;
    padding-left: 10px
}

.property-cta-container {
    position: relative;
    top: 355px; /* Places it directly below the hero section */
    left: 0;
    width: 100%;
    min-height: calc(75vh - 430px); /* Ensure it fills remaining height */
    background: #765F4B; /* Matches Figma design */
    overflow: hidden; /* Prevents inner scrolling */
    display: flex;
    justify-content: center; /* Centers the icon wrapper */
    align-items: center;
}

.property-cta-container a {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px; /* Increase font size */
    white-space: normal; /* Allows proper line breaking */
    /* padding-left: 75px; Keeps left alignment */
    position: relative;
    max-width: 300px;
    background-color: #ffffff5c;
    border-radius: 10px;
}

/* Gallery Container */
/* Ensure Gallery is placed below home-container */
.property-gallery-container {
    position: relative;
    padding: 0px;
    margin: 0px;
    top: 355px;
    width: 100%;
    overflow: hidden;
}

/* Set fixed height for consistency */
.gallery-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 500px;
}

/* Fix Slide Image Sizing */
.gallery-slide {
    min-width: 100%;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.gallery-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover; /* Ensures consistent size */
    display: block;
}

/* Show Active Slide */
.gallery-slide.active {
    display: block;
}

/* Fix Chevron Buttons Position */
.prev-btn, .next-btn {
    position: absolute;
    bottom: 30px; /* Moves chevrons above dots */
    left: 50%;
    transform: translateX(-50%);
    background: none; /* Removes background effect */
    color: white;
    border: none;
    font-size: 32px;
    cursor: pointer;
    z-index: 3;
}

/* Position left and right */
.prev-btn {
    left: 48%;
}
.next-btn {
    left: 52%;
}

/* Remove hover circle */
.prev-btn:hover, .next-btn:hover {
    background: none;
    color: rgba(255, 255, 255, 0.8);
}

/* Fix Dot Indicators */
.dot-container {
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    height: 8px;
    width: 8px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: white;
}

/* Full-width container with background */
.review-carousel-container {
    width: 100%;
    background-color: #d4c2a0; /* Custom background */
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 355px;
}

/* Carousel Wrapper (Chevrons + Cards) */
.carousel {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
}

/* Carousel Viewport */
.review-carousel {
    overflow: hidden;
    width: 100%;
}

/* Card Wrapper */
.review-wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

/* Individual Review Card */
.review-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px; /* 3 cards in view */
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 0 0 auto;
}

/* Stars */
.review-stars {
    font-size: 32px;
    color: #ffcc00;
    letter-spacing: 2px;
}

/* Review Title */
.review-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 5px;
    color: #888888;
}

/* Review Body */
.review-body {
    font-size: 16px;
    color: #9e9e9e;
    padding-top: 5px;
}

/* Review Footer */
.review-footer {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

/* Profile Info */
.reviewer-info {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: #555;
}

/* Date */
.review-date {
    font-size: 12px;
    color: gray;
}

/* Chevron Buttons */
.review-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: black;
    opacity: 0.7;
    transition: 0.3s;
    z-index: 10;
}

.review-carousel-btn:hover {
    opacity: 1;
}

/* Positioning */
.review-prev {
    left: -50px;
    color: white;
}

.review-next {
    right: -50px;
    color: white;
}

.property-amenities-container {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust based on needs */
    background: url(/assets/property-amenities-7f415a6504c3f3ca7e310e10dbebb94cd12c75ef72d8dfda2896d8b64df54e7b.jpg) center/cover no-repeat; /* Background image */
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align content to the right */
    top: 355px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.property-amenities-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: normal; /* Align text to right side */
    padding-right: 50px; /* Adjust spacing from right edge */
}

/* Content Box */
.property-amenities-content {
    max-width: 600px; /* Limit text width */
    padding: 20px;
    border-radius: 10px;
    padding-left: 100px;
}

.property-amenities-content h2 {
    font-family: 'Happy Time', sans-serif;
    font-size: 48px;
    margin-bottom: 5px;
    margin-top: 5px;
    font-style: italic;
    letter-spacing: 1px;
    font-weight: unset;
    text-align: left;
    color: white;
}

/* Paragraph */
.property-amenities-content p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: white;
    text-align: left;
    line-height: 1.5;
}

.property-amenities-content .btn {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    white-space: normal;
    position: relative;
    max-width: 300px;
    border-radius: 10px;
}

.property-amenities-content .btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 768px) {
    .property-details-hero {
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
        position: relative;
        width: auto;
    }

    .property-details-hero-text h1 {
        font-family: 'Happy Time', sans-serif;
        font-size: 35px;
        font-weight: bold;
        line-height: 1.0;
        /* text-align: left; */
        white-space: normal;
        word-break: break-word;
        padding: 0px;
        /* padding-left: 75px; */
        /* margin-bottom: 0px; */
        letter-spacing: 2px;
        font-weight: unset;
        position: relative;
        z-index: 20;
        max-width: 430px;
        top: 3px;
        width: auto;
        padding-left: 40px;
    }

    .bys-property-btn {
        position: relative;
        display: block;
        margin: 10px auto;
        text-align: center;
        
        top: -55px;
        z-index: 100;
        border-radius: 30px;
        color: black;
        background: white;
        font-family: 'Inter', sans-serif;
        font-weight: 300;
        width: 40%;
        z-index: 99999;
        padding: 10px;
        text-decoration: unset;
    }

    .bys-property-btn-2 {
        position: relative;
        display: block;
        margin: 10px auto;
        text-align: center;
        
        top: 182px;
        z-index: 100;
        border-radius: 30px;
        color: black;
        background: white;
        font-family: 'Inter', sans-serif;
        font-weight: 300;
        width: 40%;
        z-index: 99999;
        padding: 10px;
        text-decoration: unset;
    }

    .property-container {
        position: relative;
        
        left: 0;
        width: 100%;
        min-height: calc(95vh - 430px); /* Ensure it fills remaining height */
        background: #A58E69; /* Matches Figma design */
        overflow: hidden; /* Prevents inner scrolling */
        top: auto;
    }

    .about-text {
        padding: 0px !important;
        padding-bottom: 10px !important;
    }
    .about-text P{
        text-align: center;
    }

    .property-gallery-container{
        top: -691px;
        
    }

    .property-gallery-wrapper {
        height: 300px !important;
    }

    .property-gallery-slide {
        
        transition: opacity 0.5s ease-in-out;
        display: none;
    }

    .property-gallery-slide img {
        margin-top: -20px;
        margin-left: -20px;
        width: 110% !important;
        height: 115% !important;
        display: block;
        }

    /* Show Active Slide */
    .property-gallery-slide.active {
        display: block;
    }

    .left-button{
        position: relative;
        z-index: 9999;
        width: 100px;
        left: -255px;
        top: -100px;
    }

    .right-button{
        position: relative;
        z-index: 9999;
        width: 100px;
        height: 100px;
        left: 31px;
        top: -100px;
    }

    .prev-btn, .next-btn {
        width: 50px;
        height: 50px;
    }

    .property-icon-container {
        position: relative;
        top: 214px;
        left: 0;
        width: auto;
        
        background: #4B3C33; /* Matches Figma design */
        overflow: hidden; /* Prevents inner scrolling */
        display: flex ;
        justify-content: center; /* Centers the icon wrapper */
        align-items: center;
        padding-top: 30px;
        padding-bottom: 25px;
    }

    .property-icon-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        width: 100%;
    }

    .property-icon-wrapper-last {
            display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 100%;
    }

    .property-icon {
    flex: 1; /* Ensures equal spacing */
    display: flex;
    flex-direction: column; /* Stacks image and text */
    justify-content: center;
    align-items: center;
    text-align: center;
    }

    .property-icon img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        margin-bottom: 10px; /* Space between image and text */
    }

    .review-carousel-container {
        background-color: #d4c2a0;
        padding: 50px 0;
        display: flex
;
        justify-content: space-evenly;
        align-items: center;
        position: relative;
        top: -147px;
        WIDTH: -webkit-fill-available;
    }

    .review-carousel-btn {
        POSITION: absolute;
        /* top: 50%; */
        transform: translateY(-50%);
        /* transform: translateX(-8%); */
        background: none;
        border: none;
        font-size: 30px;
        cursor: pointer;
        color: white;
        opacity: 0.7;
        transition: 0.3s;
        z-index: 10;
    }

    .property-amenities-container {
        padding-top: 0px;
        padding-bottom: 0px;
        top: -147px;
        height: auto;
    }

    .property-amenities-content {
        /* max-width: 600px; */
        padding: 20px;
        border-radius: 10px;
        /* padding-left: 100px; */
    }

    .property-amenities-wrapper {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: normal;
        padding-right: 0px;
    }

    .property-amenities-content .btn {
        font-family: 'Inter', sans-serif;
        font-weight: 300;
        font-size: 16px;
        white-space: normal;
        position: relative;
        max-width: 300px;
    }

    .property-amenities-content h2 {
        font-family: 'Happy Time', sans-serif;
        font-size: 35px;
        margin-bottom: 5px;
        margin-top: 5px;
        font-style: italic;
        letter-spacing: 1px;
        font-weight: unset;
        text-align: left;
        color: white;
    }

    .property-container-enquire {
        position: relative;
        width: 92%;
        top: -90px;
        margin-bottom: -100px
    }

    .review-card {
        background: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        width: fit-content;
        min-height: 170px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex: 0 0 auto;
    }
}

@media screen and (min-width: 1440px) {
    .property-container {
    position: relative;
    top: 400px; /* Places it directly below the hero section */
    left: 0;
    width: 100%;
            min-height: 0 !important;
    background: #A58E69; /* Matches Figma design */
    overflow: hidden; /* Prevents inner scrolling */
}

    .property-icon-container {
        position: relative;
        top: 355px;
        left: 0;
        width: 100%;
        min-height: 0 !important;
        background: #A58E69;
        overflow: hidden;
        display: flex
    ;
        justify-content: center;
        align-items: center;
    }

    .property-icon-container-lower {
    position: relative;
    top: 355px;
    left: 0;
    width: 100%;
    min-height: 0 !important;
    background: #A58E69;
    overflow: hidden;
    display: flex
;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
}

.review-wrapper {
    display: flex
;
    gap: 55px !important;
    transition: transform 0.5s ease-in-out;
}

}
.field {
    margin-bottom: 15px;
  }
  
  .field label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .field input {
    padding: 8px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .actions {
    margin-top: 20px;
  }
  
  .actions input {
    padding: 10px 20px;
    background-color: #28a745;
    border: none;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
  }
  
.user-confirmation-hero {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 400px; /* Adjust height as needed */
    background: url(/assets/faq-1dfc2acb74612719d89ceac257f9662b807a058a4c0d499e196216efc00a6eec.jpg) center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.user-confirmation-hero-text {
    background: linear-gradient(to bottom,  
        rgba(35, 24, 15, 0.73) 0%,  /* Dark brown with 83% opacity */
        rgba(64, 64, 64, 0.1) 40%  /* Gray with 39% opacity */
    );
    color: white;
    width: 100%;
    height: 100%;
    /* padding: 20px; */
    font-size: 28px;
    align-content: flex-end;
}
.user-confirmation-hero-text h1 {
    font-family: 'Happy Time', sans-serif;
    margin-bottom: -22px;
    font-size: 100px; /* Increase font size */
    font-weight: bold;
    line-height: 1.2; /* Ensures clean two-line spacing */
    text-align: left; /* Aligns text to the left */
    max-width: 725px; /* Prevents title from stretching too wide */
    white-space: normal; /* Allows proper line breaking */
    word-break: break-word; /* Ensures wrapping on smaller screens */
    padding: 0px;
    padding-left: 100px; /* Keeps left alignment */
    letter-spacing: 2px;
    font-weight: unset;
    position: relative;
    z-index: 20;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
