
     

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

      body {
        font-family: "Montserrat", sans-serif;
        line-height: 1.6;
        color: #333;
      }
      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        font-family: "Oranienbaum", serif;
        font-weight: 400;
        font-style: normal;
      }
      .container {
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 20px;
      }

      /* Header Styles */
      .header {
        background: transparent;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        /* padding: 1.5rem 0; */
        transition: all 0.3s ease;
      }
      ol,
      ul {
        padding-left: 0;
      }

      /* Add a scrolled class that will be toggled with JavaScript */
      /* .header.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        position: fixed;
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      } */

      .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        font-size: 2rem;
        font-weight: bold;
        letter-spacing: 3px;
        height: 60px;
        transition: all 0.3s ease;
      }

      .logo img {
        filter: brightness(0) invert(1); /* Makes the logo white */
        transition: all 0.3s ease;
      }

      .header.scrolled .logo img {
        filter: none; /* Return to original color when scrolled */
      }

      .header-right {
        display: flex;
        align-items: center;
        gap: 2rem;
      }

      .phone {
        color: white;
        text-decoration: none;
        font-size: 1.1rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
      }

      .header.scrolled .phone {
        color: #2c3e50;
        text-shadow: none;
      }

      .menu-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
      }

      .menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background: white;
        margin: 5px 0;
        transition: 0.3s;
        box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
      }

      .header.scrolled .menu-btn span {
        background: #2c3e50;
        box-shadow: none;
      }

      /* Sidebar Styles */
      .sidebar {
        position: fixed;
        top: 0;
        right: -400px;
        width: 400px;
        height: 100vh;
        background: linear-gradient(135deg,  var(--btn-color); 0%,  var(--btn-color); 100%);
        color: white;
        padding: 2rem;
        transition: right 0.3s ease;
        z-index: 1001;
      }

      .sidebar.active {
        right: 0;
      }

      .sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* margin-bottom: 1.3rem; */
      }

      .sidebar-logo {
        font-size: 1.5rem;
        font-weight: bold;
        letter-spacing: 2px;
      }

      .close-btn {
        background: none;
        border: none;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        padding: 5px;
      }

      .sidebar-menu {
        list-style: none;
      }

      .sidebar-menu li {
        margin-bottom: 0.8rem;
      }

      .sidebar-menu a {
        color: white;
        text-decoration: none;
        font-size: 1.1rem;
        transition: color 0.3s;
      }

      .sidebar-menu a:hover {
        color: #74b9ff;
      }

      .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
      }

      .overlay.active {
        opacity: 1;
        visibility: visible;
      }

      /* Hero Section */
      .hero {
        height: 85vh;
        /*background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),*/
        /*  url("Side-view-aerial-look-at-dock-scaled.jpg");*/
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        position: relative;
      }

      .hero-content h1 {
        font-size: 3.5rem;
        /* margin-bottom: 1rem; */
        font-weight: 400;
      }

      .hero-content p {
        font-size: 1.3rem;
        max-width: 600px;
        margin: 1rem auto;
      }

      /* Search Bar */
      form.Search-bar {
        position: relative;
        margin: auto;
        /* justify-content: flex-end; */
        width: 100%;
        left: 0;
        right: 0;
        bottom: -300px;
        background: var(--white-color);
        border-radius: 10px;
        z-index: 2;
        box-shadow: 0px 0px 10px rgb(0 0 0 / 12%);
      }
      .datepicker__inner {
    padding: 0 5px;
}
      .Search-bar label {
        color: rgb(71, 71, 71);
      }
      form.Search-bar .col-3:first-child,
      form.Search-bar .checkbar {
        border-right: 1px solid #cccccc;
        /* display: flex; */
        text-align: start;
      }

      form.Search-bar .col-3 {
        /* padding-left: 16px; */
        /* padding-right: 16px; */
      }

      .col-3 {
        flex: 0 0 auto;
        width: 25%;
      }

      .dropdown-box {
        padding: 8px 0;
        color: #333;
        font-size: 14px;
        cursor: pointer;
      }

      .styled-select {
        font-size: 14px;
        border: none;
        border-radius: 6px;
        background-color: #fff;
        color: #333;
        cursor: pointer;
      }
      .styled-select:focus {
        outline: none;
      }

      .check-in,
      .check-out {
        margin-bottom: 10px;
        text-align: start;
      }

      form.Search-bar input[type="text"] {
        border: none;
        padding: 3px 0;
        width: 100%;
        font-size: 1rem;
        color: #333;
        background: transparent;
        outline: none;
      }

      .adult-box {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
      }

      .adult-box button {
        width: 25px;
        height: 25px;
        background-color: white;
        color: var(--btn-color);
        border: 1px solid var(--btn-color);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        cursor: pointer;
      }

      .adult-box input {
        width: 30px !important;
        text-align: center;
        margin: 0 10px;
      }

      .sub-btn {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 10px;
      }
      .search-field label {
        display: block;
        font-size: 0.8rem;
        color: #000000;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        font-weight: 600;
      }

      .search-field input,
      .search-field select {
        width: 100%;
        border: none;
        padding: 0.5rem 0;
        font-size: 1rem;
        color: #333;
        background: transparent;
        outline: none;
      }

      .guest-selector {
        display: flex;
        align-items: center;
        gap: 1rem;
      }

      .guest-type {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .counter-btn {
        background: var(--btn-color);
        color: white;
        border: none;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        cursor: pointer;
        font-size: 0.8rem;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s;
      }

      .counter-btn:hover {
        background: #6b00b4;
        transform: scale(1.1);
      }

      .search-btn {
        background-color: var(--btn-color);
        color: white;
        border: none;
        padding: 1rem 2rem;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1rem;
        font-weight: 600;
        transition: all 0.3s;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .search-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(83, 0, 140, 0.3);
      }

      /* Properties Section */
      .properties {
        padding: 3rem 0;
        /* background: #f8f9fa; */
      }

     
    

      /* Experience Section */
      .experience {
        padding: 6rem 0;
        background: white;
      }

      .experience-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(466px, 1fr));
        gap: 1rem;
        margin-top: 4rem;
      }

      .experience-card {
        /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
        padding: 1rem;
        /* border-radius: 20px; */
        text-align: start;
        transition: all 0.3s;
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
      }

      .experience-card:hover {
        transform: translateY(-5px);
        /* border-color: var(--btn-color); */
        /* box-shadow: 0 15px 40px rgba(83, 0, 140, 0.2); */
      }

      .experience-icon {
        /* width: 60px; */
        /* height: 60px; */
        /* background-color: var(--btn-color); */
        /* border-radius: 50%; */
        display: flex;
        /* align-items: start; */
        justify-content: start;
        margin: 0 auto 1.5rem;
        color: white;
        font-size: 1.5rem;
        transition: all 0.3s;
      }

      .experience-icon img.text-black {
        filter: brightness(0);
        transition: filter 0.3s ease;
      }

      /* .experience-card:hover .experience-icon {
        transform: scale(1.1);
        box-shadow: 0 5px 15px rgba(83, 0, 140, 0.3);
      } */

      .experience-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: #2c3e50;
        font-weight: 800;
      }

      .experience-card p {
        color: #000000;
        line-height: 1.8;
      }

      /* CTA Section */
      .cta {
        padding: 6rem 0;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
          url("Side-view-aerial-look-at-dock-scaled.jpg");
        background-size: cover;
        background-position: center;
        text-align: center;
        color: white;
        border-radius: 15px;
        margin-bottom: 2rem;
      }

      .cta h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        font-weight: 400;
        max-width: 850px;
        margin-left: auto;
        margin-right: auto;
      }

      .cta-btn1 {
        background-color: var(--btn-color);
        color: var(--white-color);
        padding: 12px 15px;
        /* border: 1px solid #004369; */
        border-radius: 7px;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.5s ease-in-out;
        font-weight: 600;
       
        width: 150px;
        position: relative;
        overflow: hidden;
        z-index: 1;
      }

     
      .cta-btn1:hover {
        color: white;
        background-color: var(--btn-hover-color);
      }

     

      /* Reviews Section */
      .reviews {
        padding: 6rem 0;
        background: #e9ecef;
      }

      .reviews-carousel {
        position: relative;
        max-width: 100%;
        margin: 2rem auto 0;
        overflow: hidden;
      }

      .swiper-container {
        width: 100%;
        padding: 30px 10px;
      }

      .swiper-wrapper {
        display: flex;
        align-items: stretch;
        padding-bottom: 25px;
      }

      .swiper-slide {
        height: auto;
        display: flex;
      }

      .review-card {
        width: 502px;
        background: white;
        padding: 2rem;
        border-radius: 20px;
        margin: 0 15px;
        text-align: center;
        position: relative;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        flex: 1;
      }

      .quote-icon {
        font-size: 3rem;
        color: var(--btn-color);
        line-height: 1;
        height: 40px;
        display: block;
      }

      .review-text {
        font-size: 14px;
        line-height: 1.8;
        color: #555;
        margin-bottom: 1rem;
        font-style: italic;
        flex-grow: 1;
      }

      .reviewer-name {
        font-size: 1rem;
        font-weight: 600;
        color: #2c3e50;
        /* margin-bottom: 0.1rem; */
      }

      .review-location {
        color: #000000;
        margin-bottom: 0.2rem;
        font-size: 13px;
      }

      .review-date {
        color: #000000;
        font-size: 13px;
      }

      .swiper-button-next,
      .swiper-button-prev {
        color: var(--btn-color);
       font-size: 12px;
        transition: all 0.3s;
        z-index: 10;
      }

      .swiper-button-prev {
        left: 10px;
      }

      .swiper-button-next {
        right: 10px;
        z-index: 10;
      }

      .swiper-button-next:hover,
      .swiper-button-prev:hover {
       
        
        transform: scale(1.1);
        box-shadow: 0 10px 30px rgba(15, 94, 128, 0.3);
      }

      .swiper-button-next:after,
      .swiper-button-prev:after {
        font-size: 12px;
        font-weight: bold;
      }

      .swiper-pagination-bullet {
        background: var(--btn-color);
        opacity: 0.5;
        width: 12px;
        height: 12px;
        transition: all 0.3s ease;
      }

      .swiper-pagination-bullet-active {
        opacity: 1;
        transform: scale(1.2);
      }

      /* About Section */
      .about-section {
        padding: 100px 0;
        background-color: var(--background-light);
      }

      .about-content {
        display: flex;
        align-items: center;
        gap: 60px;
      }

      .about-illustration {
        flex: 1;
        text-align: center;
      }

      .about-text {
        flex: 1;
      }

      .about-text h2 {
        font-size: 2.5rem;
        color: var(--text-dark);
        margin-bottom: 25px;
        font-weight: 400;
      }

      .about-text h3 {
        font-size: 1.5rem;
        color: var(--grey-dark);
        margin-bottom: 20px;
        font-weight: 400;
      }

      .about-text p {
        color: var(--grey-dark);
        line-height: 1.8;
        margin-bottom: 25px;
        font-size: 1.05rem;
      }

      .learn-more {
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.85rem;
        transition: all 0.3s ease;
        border-bottom: 1px solid transparent;
        padding-bottom: 5px;
      }

      .learn-more:hover {
        color: var(--grey-dark);
        border-bottom: 1px solid var(--grey-dark);
        transform: translateX(5px);
      }

      /* Benefits Section */
      .benefits {
        position: relative;
        min-height: 400px;
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
          url("Side-view-aerial-look-at-dock-scaled.jpg");
        background-size: cover;
        background-position: center;
        background-attachment: scroll; /* Removed parallax effect */
        display: flex;
        align-items: center;
      }

      .benefits-overlay {
        width: 100%;
        padding: 4rem 0;
      }

      .benefits-title {
        text-align: center;
        font-size: 2.5rem;
        color: white;
        margin-bottom: 3rem;
        font-weight: 400;
      }

      .benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 4fr);
        gap: 3rem;
        /* max-width: 100px; */
        margin: 0 auto 3rem;
        justify-content: center;
      }

      .benefit-item {
        text-align: center;
        color: white;
      }

      .benefit-icon {
        width: 80px;
        height: 80px;
        /* background: rgba(255, 255, 255, 0.2); */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        transition: all 0.3s;
      }

      .benefit-item h3 {
        font-size: 1.3rem;
        font-weight: 500;
      }

      /* Add fade-in animation for benefits content */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .benefits .container {
        animation: fadeInUp 1s ease-out forwards;
      }

      /* Parallax effect removed */

      .book-now-btn {
        display: block;
        margin: 0 auto;
      }

      /* Attractions Section */
      .attractions {
        padding: 6rem 0;
        background: #f8f9fa;
      }

      .attractions-subtitle {
        text-align: center;
        font-size: 0.9rem;
        /* color: #ff7043; */
        letter-spacing: 2px;
        margin-bottom: 1rem;
        font-weight: 600;
      }

      .attractions-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        margin-top: 4rem;
      }

      .attraction-card {
        height: 450px;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }

       .attraction-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .attraction-card img {
      transition: all 0.5s ease;
    }

    /* Apply filter to all images by default when attractions-grid is in hover state */
    .attractions-grid:hover .attraction-card img,
    .attractions-grid.hover-active .attraction-card img {
      filter: brightness(0.5) saturate(0) contrast(1.2) blur(20px);
      /* transform: scale(0.95); */
    }

    /* Remove filter from the hovered image */
    .attraction-card:hover img {
      filter: none !important;
      transform: scale(1.05);
    }

    /* Active touch state for mobile */
    .attraction-card.active-touch img {
      filter: none !important;
      transform: scale(1.05);
    }

      .attraction-card.dining {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
          url("Side-view-aerial-look-at-dock-scaled.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      .attraction-card.places {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
          url("Side-view-aerial-look-at-dock-scaled.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      .attraction-card.activities {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
          url("Side-view-aerial-look-at-dock-scaled.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      .attraction-card.shopping {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
          url("Side-view-aerial-look-at-dock-scaled.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      .attraction-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: linear-gradient(rgba(0, 0, 0, 0.7), transparent);
        padding: 2rem 2rem 3rem;
        color: white;
        z-index: 2;
      }

      .attraction-card h3 {
        font-size: 1.8rem;
        font-weight: 600;
        margin: 0;
        position: absolute;
        top: 25px;
        left: 30px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .sidebar {
          width: 100vw;
          right: -100vw;
        }

        .hero-content h1 {
          font-size: 2.5rem;
        }

        .search-bar {
          flex-direction: column;
          margin: 0 20px;
        }

        .search-field {
          min-width: auto;
        }

        .guest-selector {
          justify-content: space-between;
        }

        .section-title {
          font-size: 2rem;
        }

        .properties-grid {
          grid-template-columns: 1fr;
          padding: 0 20px;
        }

        .experience-grid {
          grid-template-columns: 1fr;
          padding: 0 20px;
        }
      }
      /* Responsive Design */
      @media (max-width: 768px) {
        .sidebar {
          width: 100vw;
          right: -100vw;
        }

        .hero-content h1 {
          font-size: 2.5rem;
        }

        .search-bar {
          flex-direction: column;
          margin: 0 20px;
        }

        .search-field {
          min-width: auto;
        }

        .guest-selector {
          justify-content: space-between;
        }

        .section-title {
          font-size: 2rem;
        }

        .properties-grid {
          grid-template-columns: 1fr;
          padding: 0 20px;
        }

        .experience-grid {
          grid-template-columns: 1fr;
          padding: 0 20px;
        }

        .cta h2 {
          font-size: 2rem;
          padding: 0 20px;
        }

        .benefits-grid {
          grid-template-columns: 1fr;
          gap: 2rem;
          padding: 0 20px;
        }

        .benefits-title {
          font-size: 2rem;
          padding: 0 20px;
        }

        .attractions-grid {
          grid-template-columns: 1fr;
          padding: 0 20px;
        }

        .attraction-card {
          height: 300px;
        }
      }

      @media (max-width: 1024px) {
        .attractions-grid {
          grid-template-columns: repeat(2, 1fr);
        }

        .review-card {
          width: 100%;
        }
      }

      @media (min-width: 1024px) {
        .review-card {
          width: 502px;
        }
      }
      label {
        font-size: 10px;
        font-weight: 700;
        color: black;
      }
