/* --- 1. Basic Setup & Resets --- */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

/* --- 2. Header & Navigation --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.logo img {
    height: 50px;
    width: auto;
}

nav {
    flex-grow: 1;
}

nav ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #007bff; /* Subtle color change on hover */
}

/* --- 3. Hero Cards (Desktop) --- */
.hero-links {
    display: flex;
    height: 500px; 
    gap: 20px; /* Adds space between the cards */
    padding: 20px 5%; /* Gives the cards breathing room on the left/right edges */
}

.hero-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    /* --- New Border & Corner Styles --- */
    border: 3px solid #fdfdfd; /* Adjust the color/thickness as needed */
    border-radius: 12px; /* Gives the slightly rounded corners */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Optional: Adds a subtle shadow to make them pop */
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}

/* Dark overlay so white text is readable */
.card-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); 
}

.hero-card span {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* Hover Effect */
.hero-card:hover .card-bg {
    transform: scale(1.1);
}

/* --- 4. Content Sections --- */
.intro-text {
    padding: 80px 5%; /* Side padding for mobile */
    text-align: center;
    background-color: #fff;
}

.intro-text p {
    /* Limit width to ~80 characters and center the block */
    max-width: 75ch; 
    margin: 0 auto;
    font-size: 1.25rem;
}

.info-rows {
    padding: 60px 5%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    /* Center the entire column container */
    align-items: center; 
}

.row {
    /* Limit the width of each row to ~80 characters */
    max-width: 100ch;
    width: 100%; /* Ensures it stays responsive on small screens */
}

.row h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    border-left: 4px solid #333;
    padding-left: 20px;
}

.row p {
    font-size: 1.1rem;
    color: #666;
}

hr {
    max-width: 75ch;
    border: 0;
    border-top: 1px solid #eee;
    margin: 40px auto; /* Centered with vertical spacing */
}

/* --- 5. Footer --- */
footer {
    background: #fdfdfd;
    padding: 40px 5%;
    text-align: center;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #888;
}

/* --- Banner Section Styles --- */
.banner {
    width: 100%;
    height: 50vh; /* Takes up half the viewport height */
    min-height: 400px; /* Ensures it doesn't get too small on weird screen sizes */
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.banner-content {
    text-align: center;
    color: #fff;
    padding: 0 5%;
}

.banner-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-content p {
    font-size: 1.25rem;
    max-width: 75ch; /* Keeping your 80-character limit! */
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

/* Minimalist Button */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #fff;
    transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
    background-color: transparent;
    color: #fff; /* Button turns transparent with a white border on hover */
}

.policy-banner {
	width: 100%;
	height: 25vh; /* Takes up half the viewport height */
	min-height: 200px; 
	display: flex;
    text-indent: 30%;
}
.list-align-left{
	align-items: left;
}


/* Container sizing and general font settings */
.info-page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: inherit; /* Inherits the font from your existing website */
  color: #333;
  line-height: 1.6;
}

.info-main-title {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 2.5rem;
  text-align: center;
}

/* Quick Facts Grid (What, Why, When, etc.) */
.quick-facts-grid {
  display: grid;
  /* Automatically adjusts columns based on screen size */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.fact-card {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 5px solid #0056b3; /* Accent color - change to match your brand */
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.fact-card h3 {
  margin-top: 0;
  color: #0056b3; /* Accent color */
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fact-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

/* Detailed Information Section (Text + Image) */
.detailed-info-section {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.info-content {
  flex: 1 1 400px; /* Allows text to grow and shrink responsively */
}

.info-content h2 {
  margin-top: 0;
  color: #1a1a1a;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-image-container {
  flex: 1 1 400px;
}

.info-image-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: block;
}

/* Booking Button Styles */
.booking-action {
  text-align: center;
  margin-top: 2rem;
  padding-bottom: 3rem;
}

.btn-book-now {
  display: inline-block;
  background-color: #0056b3; /* Accent color */
  color: #ffffff;
  padding: 1rem 3rem;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 86, 179, 0.2);
}

.btn-book-now:hover {
  background-color: #004494; /* Darker shade for hover state */
  color: #ffffff;
  transform: translateY(-2px); /* Slight lift effect */
}

/* General Wrapper */
.page-layout-wrapper {
  font-family: inherit;
  color: #333;
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  height: 400px; /* Adjust banner height here */
  /* Replace the URL below with your actual background image */
  background-image: url('https://placehold.co/1920x600');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 4rem;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Darkens the image so text is readable */
}

.hero-title {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 3rem;
  margin: 0;
  padding: 0 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* 50/50 Split Sections */
.split-section {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 4rem auto;
  align-items: center;
  padding: 0 1rem;
  gap: 3rem;
}

.split-text {
  flex: 1 1 400px;
}

.split-text h2 {
  margin-top: 0;
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.split-image {
  flex: 1 1 400px;
}

.split-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: block;
}

/* Booking Button */
.booking-action {
  text-align: center;
  margin: 2rem 0 5rem 0;
}

.btn-book-now {
  display: inline-block;
  background-color: #0056b3; 
  color: #ffffff;
  padding: 1rem 3rem;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 86, 179, 0.2);
}

.btn-book-now:hover {
  background-color: #004494;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Horizontally Scrolling Feedback Section */
.feedback-section {
  background-color: #f8f9fa;
  padding: 4rem 1rem;
}

.feedback-title {
  text-align: center;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 2rem;
  color: #1a1a1a;
}
.feedback-scroller {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  
  /* 1. Change 'mandatory' to 'proximity' so it doesn't fight the JS */
  scroll-snap-type: x proximity; 
  
  /* 2. Add smooth scrolling at the CSS level as a backup */
  scroll-behavior: smooth; 
  
  /* 3. Ensure it doesn't wrap (otherwise there's no scroll) */
  flex-wrap: nowrap;
}

.feedback-card {
  /* 4. Ensure cards don't shrink to fit the screen */
  flex: 0 0 300px; 
  scroll-snap-align: start;
}
.feedback-text {
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
}

.feedback-author {
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  text-align: right;
}

 .iframe-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    padding: 20px;
  }
  /* Optional: make iframe responsive */
  iframe {
    max-width: 100%;
    border: none;
  }
  
/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .split-section {
    gap: 2rem;
  }

  /* Forces text to always appear above the image on mobile devices */
  .reverse-layout .split-image {
    order: 2;
  }
  .reverse-layout .split-text {
    order: 1;
  }
}
/* --- 6. MOBILE STYLES --- */
/* --- 6. MOBILE STYLES --- */
@media (max-width: 768px) {
    header {
        position: relative; /* Allows absolute positioning for the mobile menu */
        flex-direction: row; /* Keep logos and nav inline horizontally */
        justify-content: space-between;
        padding: 20px;
        gap: 20px;
    }

    /* Style the hamburger button */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10;
        margin: 0 auto; /* Centers the button within the nav container element */
    }

    /* Hamburger bars */
    .menu-toggle span {
        width: 100%;
        height: 3px;
        background-color: #333;
        transition: all 0.3s ease;
    }

    /* Hide the menu by default on mobile and position it vertically */
    nav ul.nav-menu {
        display: none; 
        flex-direction: column;
        align-items: center;
        gap: 15px;
        position: absolute;
        top: 100%; /* Drops right beneath the header wrapper */
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px 0;
        border-bottom: 1px solid #eee;
        z-index: 9;
    }

    /* When JavaScript adds the .active class, show the menu */
    nav ul.nav-menu.active {
        display: flex;
    }
    
    /* Optional: Animate hamburger into an 'X' when active */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* ... Keep your remaining mobile rules below (.hero-links, .banner, etc.) ... */
	.hero-links {
        display: flex;
        flex-direction: column; /* Stacks the cards vertically */
        gap: 15px; /* Keeps a nice gap between stacked cards */
        height: auto;
        padding: 20px 5%;
    }

    .hero-card {
        display: flex;
        flex: none; /* FIX: Stops the desktop 'flex: 1' from forcing them side-by-side */
        width: 100% !important;
        height: 200px !important; /* Set a reasonable explicit height for mobile */
        min-height: 200px !important;
    }

    .hero-card span {
        font-size: 1.5rem; /* Slightly smaller text so it fits mobile screens nicely */
    }
}

/* Ensure the toggle button is hidden completely on Desktop screens */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}