
@import 'css/Hero-section.css';
@import 'css/app.css';
@import 'css/about-section.css';
@import 'css/whatsapp.css';
@import 'css/accommodation-section.css';
@import 'css/hotelAbout-section.css';
@import 'css/room.css';
@import 'css/Footer.css';
@import 'css/Dinner-menu-section.css';
@import 'css/get-in-touch.css';
@import 'css/rooms-avilable.css';
@import 'css/Room-booking-form.css';
@import 'css/nearbyloc-section.css';
















.text-header{
   font-weight: 600;
   font-family: 'Poppins', serif;
}

.text-subheader{
   font-weight: 400;
  font-size: 0.9rem;
   font-family: 'Poppins', serif;
}




































.btn-explore {
    border: 2px solid #01a2b8;
    background: transparent;
    text-decoration: none;
    color: white;
    padding: 10px 30px;
    font-size: 12px;
    letter-spacing: 3px;
    margin-top: 15px;
    transition: 0.3s ease;
}

.btn-explore:hover {
    background-color: #01a2b8;
    color: #fff;
}


.btn-explore-dark {
    border: 2px solid #01a2b8;
    background: transparent;
    text-decoration: none;
    color: rgb(0, 0, 0);
    padding: 10px 30px;
    font-size: 12px;
    letter-spacing: 3px;
    margin-top: 15px;
    transition: 0.3s ease;
}

.btn-explore-dark:hover {
    background-color: #01a2b8;
    color: #fff;
}

.btn-CHECK-dark {
    border: 2px solid #a78655;
    background: transparent;
    text-decoration: none;
    color: rgb(0, 0, 0);
    padding: 10px 30px;
    font-size: 12px;
    letter-spacing: 3px;
    margin-top: 15px;
    transition: 0.3s ease;
}

.btn-CHECK-dark:hover {
    background-color: #a78655;
    color: #fff;
}







/* This centers the entire nav on the screen */
  .breadcrumb-nav {
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center;     /* Vertical centering of elements */
    gap: 10px;               /* Space between text and dot */
    width: 100%;
    margin-top: 20px;        /* Adjust as needed */
    font-family: sans-serif;
  }

  .breadcrumb-item {
    font-size: 1rem;
    color: #333;
    margin: 0;               /* Removes default heading margins */
  }

  /* The bold "Rooms" text */
  .breadcrumb-item.active {
    font-weight: bold;
    color: #000;
  }

  /* The light blue dot */
  .dot {
    height: 8px;
    width: 8px;
    background-color: #78c2d4; /* Matching the image color */
    border-radius: 50%;
    display: inline-block;
  }








      .room-card {
            background: #fff;
            display: flex;
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            height: 200px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .room-card img {
            width: 350px;
            height: 100%;
            object-fit: cover;
        }

        .room-details {
            padding: 20px;
            flex-grow: 1;
        }

        .room-details h3 {
            margin-top: 0;
        }

        .room-price {
            padding: 20px;
            text-align: right;
            border-left: 1px solid #eee;
            min-width: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .price-amount {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .btn-add {
            background: #000;
            color: #fff;
            padding: 10px;
            border: none;
            margin-top: 10px;
            cursor: pointer;
            border-radius: 4px;
        }

        .booking-summary {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            height: fit-content;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .empty-state {
            color: #777;
        }

/* =========================
   TABLET (Below 992px)
========================= */
@media (max-width: 992px) {

    .room-card {
        height: auto;
    }

    .room-card img {
        width: 280px;
    }

}


/* =========================
   MOBILE (Below 768px)
========================= */
@media (max-width: 768px) {

    .room-card {
        flex-direction: column;
        height: auto;
    }

    .room-card img {
        width: 100%;
        height: 220px;
        border-radius: 8px 8px 0 0;
    }

    .room-details {
        padding: 15px;
    }

    .room-price {
        border-left: none;
        border-top: 1px solid #eee;
        text-align: left;
        align-items: flex-start;
        padding: 15px;
    }

    .price-amount {
        font-size: 1.4rem;
    }

    .btn-add {
        width: 100%;
        margin-top: 12px;
    }

}


/* =========================
   SMALL MOBILE (Below 480px)
========================= */
@media (max-width: 480px) {

    .room-details h3 {
        font-size: 16px;
    }

    .room-details p {
        font-size: 13px;
    }

    .price-amount {
        font-size: 1.2rem;
    }

}
:root {
  --primary-white: #ffffff;
  --accent-color: #78c2d4;
}

/* ============================= */
/* MAIN SECTION */
/* ============================= */
.review-hero-section {
  min-height: 100vh;
  background: url('Assets/boat_bg.jpg') no-repeat center center/cover;
  color: var(--primary-white);
}

.review-overlay {
  min-height: 100vh;
  background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(20,50,100,0.5));
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.review-container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* ============================= */
/* LEFT CONTENT */
/* ============================= */
.review-content-wrapper {
  flex: 1;
  position: relative;
}

.quote-icon {
  font-size: 80px;
  color: var(--accent-color);
  display: block;
  margin-bottom: 20px;
}

.review-text {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.author {
  font-weight: 600;
}

/* Slider */
.review-slide {
  display: none;
  animation: fadeIn 0.6s ease;
}

.review-slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================= */
/* STATS */
/* ============================= */
.review-stats-container {
  flex: 1;
  text-align: right;
}

.review-stat-item {
  margin-bottom: 40px;
}

.review-stat-item h2 {
  font-size: 3rem;
  font-weight: 300;
  margin: 0;
}

.review-stat-item p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================= */
/* DOTS */
/* ============================= */
.review-dots {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

.review-dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
}

.review-dot.active {
  background: var(--accent-color);
}

/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 992px) {

  .review-container {
    flex-direction: column;
    text-align: center;
  }

  .review-stats-container {
    text-align: center;
  }

  .review-text {
    font-size: 1.6rem;
  }

  .review-stat-item h2 {
    font-size: 2.5rem;
  }
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 576px) {

  .review-hero-section {
    min-height: auto;
  }

  .quote-icon {
    font-size: 50px;
  }

  .review-text {
    font-size: 1.2rem;
  }

  .review-stat-item h2 {
    font-size: 2rem;
  }

  .review-stat-item {
    margin-bottom: 25px;
  }

  .review-dots {
    justify-content: center;
  }
}



















/* Hero Section Wrapper */
.gallery-hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
}

/* Text Content Styling */
.hero-text {
    text-align: center;
    margin-bottom: 40px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.hero-text p {
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
}

.wave-icon {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* Image Container */
.hero-image-container {
    width: 100%;
    height: 500px; /* Adjust height as needed */
    overflow: hidden;
    position: relative;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers area without stretching */
    display: block;
}

/* Optional: Subtle Glass/Rail effect at the bottom */
.hero-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    border-top: 2px solid rgba(255,255,255,0.3);
    background: linear-gradient(transparent, rgba(0,0,0,0.1));
}







.location-container {
    display: flex;
    flex-wrap: wrap; /* Allows stacking on mobile */
    min-height: 100vh;
}

/* Text Section */
.content-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: #ffffff;
    text-align: center;
}

.inner-text {
    max-width: 500px;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.swirl-icon {
    margin-bottom: 30px;
}

p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.directions-btn {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    letter-spacing: 2px;
    border-bottom: 2px solid #4a90e2;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.directions-btn:hover {
    color: #4a90e2;
}

/* Map Section */
.map-side {
    flex: 1;
    background-color: #1a1a1a; /* Dark fallback */
    overflow: hidden;
    height: 100vh; /* Ensure the side has height */
}

.map-side img,
.map-side iframe,
.map-side .map-container,
.map-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover; /* For images */
    display: block;
    border: 0;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .location-container {
        flex-direction: column;
    }
    
    .map-side {
        height: 500px;
    }
}










/* Header Styles */
.contect-header {
    text-align: center;
    margin-bottom: 60px;
}

.contect-header h1 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.contect-header p {
    color: var(--label-color);
    margin-top: 0;
}

.contect-wave-icon {
    width: 30px;
    height: 10px;
    margin: 20px auto;
    border-bottom: 2px solid var(--accent-color);
    border-radius: 50%; /* Simplified wave effect */
}

/* Layout Container */
.contect-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

/* Image Section */
.contect-image-gallery {
    flex: 1;
    display: flex;
    gap: 20px;
}

.contect-image-box {
    flex: 1;
}

.contect-image-box img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Form Section */
.contect-form-container {
    flex: 1;
}

.contect-form-row {
    display: flex;
    gap: 20px;
}

.contect-input-group {
    flex: 1;
    margin-bottom: 35px;
    position: relative;
}

.contect-label {
    display: block;
    color: var(--label-color);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.contect-input, .contect-select, .contect-textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

/* Phone Input Special Handling */
.contect-phone-input {
    display: flex;
    align-items: center;
}

.contect-flag {
    margin-right: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

/* Submit Button */
.contect-submit-btn {
    margin-top: 20px;
    background: white;
    border: 1px solid var(--accent-color);
    padding: 15px 60px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.8rem;
    color: var(--text-color);
}

.contect-submit-btn:hover {
    background: var(--accent-color);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .contect-container {
        flex-direction: column;
    }
    .contect-image-gallery {
        order: 2;
    }
}











/* General Styles */
.hotel-footer1 {
  background-image: url('https://images.unsplash.com/photo-1561501900-3701fa6a0864?fm=jpg&q=60&w=3000&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8bHV4dXJ5JTIwaG90ZWx8ZW58MHx8MHx8fDA%3D'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-end; /* Aligns content to the bottom like the image */
  z-index: 10;
}

/* Dark Gradient Overlay for Text Readability */
.footer-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 100%);
  width: 100%;
  padding: 60px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.footer-column {
  flex: 1;
  padding: 0 20px;
}

/* Vertical lines for desktop */
.border-sides {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-column h3 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 8px 0;
  color: #e0e0e0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column; /* Stack vertically on mobile */
  }

  .footer-column {
    margin-bottom: 40px;
  }

  .border-sides {
    border: none; /* Remove vertical lines on mobile */
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* 5th Section - Facilities Display */
.facilities-section {
    background-color: #fff;
    color: #000;
}

.facility-img-container {
    height: 60vh;
    position: relative;
}

@media (min-width: 992px) {
    .facility-img-container {
        height: 100vh;
    }
}

.facility-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
    color: #fff;
    text-align: center;
}

.facility-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-item {
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    color: #a0a0a0;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 300;
    transition: var(--transition);
    text-align: center;
}

@media (min-width: 768px) {
    .facility-item {
        font-size: 1.3rem;
    }
}

.facility-item:first-child {
    border-top: 1px solid #e5e5e5;
}

.facility-item:hover{   
    color: #9c9c9c;
    font-weight: 600;
}

.facility-item.active {
    color: #048ab3;
    font-weight: 600;
}

/* Card Container */

.offers-section{
        min-height: 100vh;
}
.offer-card {
    text-align: center;
    background: transparent;
    border: none;
}

/* Image and Title Overlay */
.offer-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1.2; /* Adjust to match image proportions */
}

.offer-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4); /* Dark semi-transparent bar */
    padding: 20px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.offer-overlay h4 {
    color: #fff;
    margin: 0;
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

/* Bottom Text Section */
.offer-footer-content {
    padding: 30px 20px;
}

.offer-footer-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 60px; /* Keeps cards aligned if text length varies */
}

/* Explore Button */
.explore-link {
    text-decoration: none;
    color: #333;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 5px;
}

.explore-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40%;
    width: 20%;
    height: 2px;
    background-color: #4b8994; /* Match your wavy line color */
}

.explore-link:hover {
    color: #4b8994;
}

/* Gallery Section */
.gallery-section {
    background-color: #f8f9fa;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.instagram-link {
    color: #fff;
    font-size: 3rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: #e4405f;
}

/* Review Popup */

.review-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: auto;
    min-width: 120px;
    max-width: 220px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
    transition: all 0.3s ease;
    padding: 10px 14px;
    font-size: 0.92rem;
}

.review-popup.expanded {
    width: 220px;
    height: auto;
    max-height: 320px;
    overflow-y: auto;
}

.review-content {
    padding: 10px 0 6px 0;
    position: relative;
}

.review-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: auto;
    min-width: 120px;
    max-width: 220px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
    transition: all 0.3s ease;
    padding: 10px 14px;
    font-size: 0.92rem;
}
.review-content h6 {
    margin-bottom: 6px;
    color: #333;
    font-size: 1rem;
}

.review-content p {
    font-style: italic;
    color: #666;
    margin-bottom: 8px;
    font-size: 0.92rem;
}

.review-content span {
    font-weight: bold;
    color: #4b8994;
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
}

.review-details {
    display: none;
}

.review-popup.expanded .review-details {
    display: block;
}

/* Scroll Indicator - Mouse Icon */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    animation: bounce 2s infinite;
}

.mouse-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

/* Mouse wheel/scroll indicator */
.mouse-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Sub Title */
.sub-title {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 80px;
    opacity: 0.9;
}
    .review-popup {
        bottom: 10px;
        left: 10px;
        right: auto;
        width: auto;
        max-width: 90vw;
    }
    .review-popup.expanded {
        width: auto;
        max-width: 90vw;
        height: 250px;
    }
    
    .hero-text-area {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: clamp(1.2rem, 9vw,8rem);
        letter-spacing: 3px;
        font-weight: 600;
    }
    
    .about-section .fs-4 {
        font-size: 1.1rem !important;
        line-height: 1.6;
    }
    
    .feature-text-overlay {
        padding: 2rem 1.5rem;
    }
    
    .feature-text-overlay h2 {
        font-size: 1.2rem;
    }
    
    .accommodation-section {
        padding: 50px 0;
    }
    
    .room-card-overlay h4 {
        font-size: 1rem;
    }
    
    .facility-img-overlay {
        padding: 1.5rem;
    }
    
    .facility-item {
        font-size: 1rem;
        padding: 15px 0;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .close-overlay {
        top: 20px;
        right: 20px;
        font-size: 30px;
    }
    
    .overlay-nav-links li a {
        font-size: clamp(1.5rem, 8vw, 3rem);
    }
    
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-content {
        border-radius: 10px;
    }
    
    .footer-section {
        padding: 30px 0 15px;
    }
    
    .footer-social a {
        margin-right: 20px;
        font-size: 1.2rem;
    }




















.accommodation-modern-section {
    background: #fff;
    color: #222;
    padding: 60px 0;
}
.accom-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
.accom-desc {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    color: #444;
}
.accom-stats {
    font-size: 1.1rem;
    color: #b59d5b;
    gap: 2.5rem;
}
.accom-stat i {
    margin-right: 8px;
    font-size: 1.3rem;
    vertical-align: middle;
}
.accom-img-wrap {
    border: 1.5px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 2rem;
}
.accom-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    margin-left: -60px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}
.accom-card-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #b59d5b;
    display: inline-block;
    padding-bottom: 0.2rem;
}
.accom-card-desc {
    color: #555;
    margin-bottom: 1.2rem;
}
.accom-card-stats span {
    color: #222;
    font-size: 1rem;
    font-weight: 400;
}
.btn-accom {
    background: #b59d5b;
    color: #fff;
    border: none;
    transition: background 0.2s;
}
.btn-accom:hover {
    background: #a08a4a;
    color: #fff;
}
@media (max-width: 991px) {
    .accom-card {
        margin-left: 0;
        margin-top: 2rem;
    }
}
