/* === General Styles & Reset === */
:root {
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;

    --color-primary-dark: #1E1E1E;
    /* Deep Blue/Grey for dark sections, headings */
    --color-secondary-light: #F8F9FA;
    /* Very Light Grey for body background, some sections */
    --color-accent: #FAEA34;
    /* Carrot Orange for CTAs, highlights */
    --color-accent-darker: #191919;
    /* Darker Orange for hover states */
    --color-text-dark: #343a40;
    /* Dark Grey for body text */
    --color-text-light: #FFFFFF;
    /* White for text on dark backgrounds */
    --color-text-muted: #6c757d;
    /* Muted grey for less important text */
    --color-border: #DEE2E6;
    /* Light grey for borders */
    --color-background-hero: #34495E;
    /* Specific dark for hero background */
    --color-whatsapp: #25D366;
    --color-whatsapp-darker: #1DAE54;
    --color-error: #e74c3c;
    /* Red for error messages */

    --container-width: 1200px;
    --padding-vertical-section: 80px;
    /* Increased padding for more whitespace */
    --padding-horizontal-container: 20px;
    --border-radius: 8px;
    --box-shadow-light: 0 4px 15px rgba(0, 0, 0, 0.08);
    --box-shadow-strong: 0 6px 20px rgba(0, 0, 0, 0.12);
    --transition-speed: 0.3s ease;
    --header-height: 75px;
    /* Updated to match HTML */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    /* Use variable */
    font-size: 16px;
    /* Base font size */
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-secondary-light);
    padding-top: var(--header-height);
    /* For fixed header */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--padding-horizontal-container);
    padding-right: var(--padding-horizontal-container);
}

/* Add clear focus states for accessibility */
a:focus,
button:focus,
.btn:focus,
.feature-box:focus,
.gallery-item:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Remove outline specifically for inputs as we add a custom focus style */
input:focus {
    outline: none;
}


/* === Header === */
header {
    background-color: var(--color-text-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 15px 20px; */
    /* Padding is now on the container inside */
    /* min-height: var(--header-height); */
    /* Height is on header */
    width: 100%;
    /* Ensure it takes full width of its parent container */
}

.logo {
    font-size: 1.8rem;
    /* Adjusted for better balance */
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-primary-dark);
}

.logo span {
    color: var(--color-accent);
}

/* Desktop Navigation */
#main-nav {
    display: block;
}

#main-nav ul {
    display: flex;
    list-style: none;
    align-items: center; /* Center all items vertically */
    margin: 0;
    padding: 0;
  }


  #main-nav ul li {
    display: flex;
    align-items: center;  /* Vertically center items */
    margin-left: 30px;
  }

/* Normal nav links */
#main-nav ul li a {
    text-decoration: none;
    color: var(--color-primary-dark);
    font-family: var(--font-primary);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: color var(--transition-speed);
    position: relative;
    line-height: 1;
    display: inline-flex;
    align-items: center;
  }

#main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-accent);
    transition: width var(--transition-speed);
}

#main-nav ul li a:hover::after,
#main-nav ul li a.active-link::after {
    width: 70%;
}

#main-nav ul li a:hover,
#main-nav ul li a:focus,
#main-nav ul li a.active-link {
    color: var(--color-primary-dark);
    outline: none;
}
/* Button style (Book Now) */
#main-nav ul li .btn {
  background-color: var(--color-accent);
  color: #000000;
  font-weight: 600;
  padding: 16px 16px;
  border-radius: 5px;
  transition: background-color var(--transition-speed), color var(--transition-speed);
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* Optional hover effect */
#main-nav ul li .btn:hover {
    background-color: var(--color-primary-dark);
    color: #fff;
  }
  #main-nav ul li .btn,
#main-nav ul li .btn-mobile-nav {
  margin-top: 0 !important;  /* Forcefully remove any top margin */
  margin-bottom: 0;
}

  /* Remove underline animation for button */
  #main-nav ul li .btn::after {
    display: none;
  }
   
/* Hamburger Menu Button */
#menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1010;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 25px;
}

#menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    color: #191919;
    background-color: var(--color-accent-darker);
    border: 1px solid var(--color-accent-darker);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 3px;
}

/* Add margin to create space between spans */
#menu-toggle span:not(:last-child) {
    margin-bottom: 4px;
    /* Adjust this value for more or less space */
}


#menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

#menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

#menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* Mobile Navigation Panel */
#mobile-nav {
    display: none;
    /* Controlled by JS */
    position: fixed;
    top: var(--header-height);
    left: 0;
    /* Start off-screen, will be changed by JS */
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: #1E1E1E;
    /* Dark with slight transparency */
    padding: 40px 20px;
    text-align: center;
    z-index: 999;
    transform: translateX(100%);
    /* Start off-screen to the right */
    transition: transform 0.4s ease-in-out;
    overflow-y: auto;
}

#mobile-nav.active {
    transform: translateX(0);
    /* Slide in */
    display: block;
    /* Ensure it's visible when active */
}

#mobile-nav ul {
    list-style: none;
}

#mobile-nav ul li {
    margin-bottom: 25px;
}

#mobile-nav ul li a {
    text-decoration: none;
    color: var(--color-text-light);
    font-size: 20px;
    font-family: var(--font-primary);
    font-weight: 500;
    transition: color var(--transition-speed);
}

#mobile-nav ul li a:hover,
#mobile-nav ul li a:focus {
    color: var(--color-accent);
    outline: none;
}

.btn-mobile-nav {
    margin-top: 20px;
    background-color: var(--color-accent);
    color: var(--color-text-light);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    display: inline-block;
}

.btn-mobile-nav:hover {
    background-color: var(--color-accent-darker);
}

/* === Hero Section === */
.hero {
    padding-bottom: 120px;
    /* Space for overlapping form */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/hero1.jpg') center/cover no-repeat;
    background-color: var(--color-background-hero);
    /* Fallback */
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-light);
    /* padding-top: var(--header-height); Removed as body already has padding-top */
    position: relative;
    z-index: 1;
    /* Behind the form */
}

.hero-content {
    max-width: 800px;
    padding: 0 var(--padding-horizontal-container);
}

.hero h1 {
    font-size: 4rem;
    /* 50px */
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--color-text-light);
    /* Ensure hero h1 is white */
}

.hero p {
    font-size: 1.25rem;
    /* 20px */
    margin-bottom: 30px;
    opacity: 0.9;
}

/* === Button Styles (General) === */
.btn {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-accent-darker);
    padding: 12px 30px;
    border-radius: 30px;
    /* More rounded */
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    transition: background-color var(--transition-speed), transform 0.2s ease, box-shadow var(--transition-speed);
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn:hover,
.btn:focus {
    background-color: var(--color-accent-darker);
    transform: translateY(-2px);
    color: var(--color-text-light);
    /* Ensure text color remains on hover */
    outline: none;
    /* Custom focus is handled by the global rule */
    box-shadow: var(--box-shadow-light);
}


/* === Availability Check Section - UI Enhancements === */
.availability-check {
    margin-top: -100px;
    /* Adjust overlap */
    position: relative;
    z-index: 10;
    /* Above hero */
    padding: 0;
    /* Container will have padding */
    background-color: transparent;
    /* Section itself is transparent */
}

.availability-check .container {
    background-color: var(--color-text-light);
    padding: 30px 40px;
    border-radius: 12px;
    /* Slightly larger radius for a softer look */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    max-width: 950px;
    /* Control the width of the form panel */
}


.availability-check h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-primary-dark);
    font-size: 1.75rem;
    /* 28px */
}

#availability-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* Center items if they don't fill the row */
    align-items: flex-end;
    /* Align items to the bottom */
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1 1 180px;
    /* Grow, shrink, base width */
    min-width: 160px;
    /* Minimum width before wrapping */
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: clamp(0.75rem, 1vw + 0.2rem, 0.9rem);
    color: #333;
    letter-spacing: 0.3px;
    font-family: var(--font-primary, "Segoe UI", sans-serif);
    line-height: 1.4;
  }
  

  .form-group input[type="date"],
.form-group input[type="number"],
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: clamp(10px, 2vw, 14px) clamp(12px, 4vw, 16px);
  font-size: clamp(0.875rem, 1vw + 0.2rem, 1rem);
  color: #333;
  background-color: var(--color-secondary-light, #f9f9f9);
  border: 1px solid var(--color-border, #ccc);
  border-radius: var(--border-radius, 6px);
  outline: none;
  transition: border-color var(--transition-speed, 0.3s),
              box-shadow var(--transition-speed, 0.3s);
}

/* Optional: Focus state */
.form-group input:focus {
  border-color: var(--color-accent, #007BFF);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

   

/* Style for input validation errors */
.form-group input.input-error {
    border-color: var(--color-error) !important;
    /* Ensure override */
    background-color: #fdeded;
    /* Light red background for error */
}

.form-group input.input-error:focus {
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2) !important;
    /* Red focus ring for error */
}


.form-group-submit {
    flex-basis: 100%;
    /* Make the button container take full width on smaller screens if needed */
    text-align: center;
    /* Center the button within its container */
    margin-top: 15px;
    /* Add some space above the button if it wraps */
}

/* WhatsApp Button Enhancements */
.btn-whatsapp {
    background-color: var(--color-whatsapp);
    width: auto;
    /* Let content define width, or set specific width if needed */
    padding: 12px 25px;
    display: inline-flex;
    /* Allows icon and text to align nicely */
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* Space between icon and text */
    border-radius: var(--border-radius);
    /* Consistent with other inputs */
    font-weight: 600;
    color: var(--color-text-light);
    /* Ensure text is white */
}

.btn-whatsapp i {
    font-size: 1.2em;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background-color: var(--color-whatsapp-darker);
    color: var(--color-text-light);
    transform: translateY(-2px);
    outline: none;
    /* Custom focus is handled by the global rule */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Error Message Styling */
.form-error-message {
    flex-basis: 100%;
    /* Span full width of the form */
    text-align: center;
    color: var(--color-error);
    font-size: 0.875rem;
    /* 14px */
    margin-top: 15px;
    font-weight: 500;
    /* display: none; is handled by JS */
}

.location-section {
    padding: var(--padding-vertical-section) 0;
    background-color: var(--color-secondary-light);
    /* Or var(--color-text-light) if you prefer */
}

.location-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two equal columns */
    gap: 40px;
    align-items: start;
    /* Align items to the start of the grid area */
}

.location-map-card,
.location-landmarks-card {
    background-color: var(--color-text-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-light);
}

.location-map-card h3,
.location-landmarks-card h3 {
    font-size: 1.5rem;
    /* 24px */
    color: var(--color-primary-dark);
    margin-bottom: 25px;
    text-align: center;
}

.map-embed-container {
    width: 100%;
    height: 400px;
    /* Adjust as needed, or make responsive */
    border-radius: calc(var(--border-radius) - 5px);
    /* Slightly smaller radius for inner element */
    overflow: hidden;
    /* Ensures iframe respects border-radius */
    background-color: #e9ecef;
    /* Placeholder background */
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-embed-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.landmark-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.landmark-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background-color: var(--color-secondary-light);
    /* Light background for each item */
    border-radius: calc(var(--border-radius) - 2px);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.landmark-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-strong);
}

.landmark-icon {
    font-size: 1.8rem;
    /* 28.8px */
    color: var(--color-accent);
    flex-shrink: 0;
    width: 50px;
    /* Give icon a fixed width for alignment */
    text-align: center;
}

.landmark-info h4 {
    font-size: 1.1rem;
    /* 17.6px */
    color: var(--color-primary-dark);
    margin-bottom: 5px;
}

.landmark-info p {
    font-size: 0.9rem;
    /* 14.4px */
    color: var(--color-text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* === Features Section === */
.features {
    padding: var(--padding-vertical-section) 0;
    background-color: var(--color-text-light);
    /* Base white background */
    /* Add your pattern image below. Replace 'images/feature-pattern.svg' with your actual pattern file. */
    background-image: url('img/pattern.svg');
    background-repeat: repeat;
    /* Or 'no-repeat', 'repeat-x', 'repeat-y' depending on your pattern */
    background-position: center;
    /* Or top left, etc. */
    margin-top: 60px;
    /* Space below overlapping form */
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 4rem;
    /* 36px */
    color: var(--color-primary-dark);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.125rem;
    /* 18px */
    color: var(--color-text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    background-color: rgba(255, 255, 255, 0.9);
    /* Slightly transparent white for better contrast over pattern */
    /* Light grey boxes on white section */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    border: 1px solid transparent;
    /* Prepare for potential border on hover/focus */
}

.feature-box:hover,
.feature-box:focus-within {
    /* Use focus-within for better accessibility */
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-strong);
    outline: none;
    /* Custom focus is handled by the global rule */
}

.feature-icon {
    font-size: 3.125rem;
    /* 50px */
    color: var(--color-accent);
    margin-bottom: 20px;
    line-height: 1;
    /* Prevents extra space */
}

.feature-box h3 {
    font-size: 1.375rem;
    /* 22px */
    margin-bottom: 15px;
    color: var(--color-primary-dark);
}

.feature-box p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* === About Section === */
.about {
    padding: var(--padding-vertical-section) 0;
    /* Replace 'placeholder-about-bg.jpg' with your desired background image */
    background-image: url('img/hero1.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    /* Creates a subtle parallax effect */
    position: relative;
    /* Needed for the overlay */
    color: var(--color-text-dark);
    /* Default text color for content inside */
}

.about-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Adjust the alpha (last value) for more or less transparency */
    /* Using a light overlay to make dark text on the card readable */
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.85));
    z-index: 1;
}

.about .container {
    position: relative;
    /* To sit on top of the overlay */
    z-index: 2;
    display: flex;
    justify-content: center;
    /* Center the card horizontally */
    align-items: center;
    /* Center the card vertically if section has enough height */
    min-height: 40vh;
    /* Give the section some height to show background */
}

.about-content-card {
    /* background-color: var(--color-text-light); */
    /* White card */
    padding: 40px 50px;
    /* Generous padding */
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-strong);
    max-width: 750px;
    /* Max width of the card */
    width: 90%;
    /* Responsive width */
    text-align: left;
    /* Default text alignment for card content */
}

.about-content-card h2 {
    font-size: 4rem;
    /* Slightly smaller for card context */
    color: var(--color-primary-dark);
    margin-bottom: 20px;
    text-align: center;
    /* Center the heading within the card */
}

.about-content-card p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--color-border);
}

.about-content-card .btn {
    display: block;
    /* Make button block to center it */
    width: fit-content;
    /* Adjust width to content */
    margin: 25px auto 0 auto;
    /* Center the button with some top margin */
}

.about h2 {
    color: white;
}

/* === Gallery Section === */
.gallery {
    padding: var(--padding-vertical-section) 0;
    background-color: var(--color-secondary-light);
    /* White background */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Slightly larger minmax */
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 280px;
    /* Slightly taller for better image display */
    position: relative;
    box-shadow: var(--box-shadow-light);
}

.gallery-item:focus-within {
    /* For keyboard navigation to the image if it's wrapped in a link */
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smoother zoom */
}

.gallery-item:hover img,
.gallery-item:focus img {
    /* Focus on image itself if it's focusable */
    transform: scale(1.1);
}

/* Facilities Section */
.facilities-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    /* Light grey background for the section */
    text-align: center;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Responsive grid */
    gap: 30px;
    /* Spacing between facility items */
    margin-top: 40px;
}

.facility-item {
    background-color: #ffffff;
    /* White background for cards */
    padding: 25px;
    border-radius: 12px;
    /* Rounded corners */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    /* Softer, modern shadow */
    text-align: left;
    /* Align text to the left within the card */
    display: flex;
    /* Use flexbox for icon and text alignment */
    align-items: flex-start;
    /* Align items to the top */
    gap: 20px;
    /* Space between icon container and details */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-item i {
    color: var(--color-accent);
}

.facility-item:hover {
    transform: translateY(-5px);
    /* Slight lift on hover */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    /* Enhanced shadow on hover */
}

/* Single Info Block for Facilities Section */
.facility-section-info {
    margin-top: 40px;
    /* Space above this info block, below the grid */
    margin-bottom: 30px;
    /* Space below this info block, above the button */
    padding: 20px;
    background-color: var(--color-accent);
    /* A slightly different light background */
    border-radius: 8px;
    text-align: center;
    /* Center the text */
    border: 1px solid #dde4eb;
    /* Light border */
}

.facility-section-info i.fa-lightbulb {
    display: block;
    /* Makes the icon take its own line */
    font-size: 2rem;
    /* Adjust size as needed */
    color: var(--color-accent);
    /* Use your primary color for the icon */
    margin-bottom: 10px;
    /* Space between icon and text */
    /* text-align is already center from the parent */
}

.facility-section-info p {
    margin: 0;
    /* Remove default paragraph margin */
    line-height: 1.6;
    font-size: 0.95rem;
    color: var(--text-color-light);
}

.facility-icon-container {
    background-color: var(--primary-color-light);
    /* Use a light shade of your primary color */
    color: var(--primary-color);
    /* Icon color */
    min-width: 60px;
    /* Fixed width */
    height: 60px;
    border-radius: 50%;
    /* Circular background for icon */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    /* Icon size */
    flex-shrink: 0;
    /* Prevent icon container from shrinking */
}

.facility-details h4 {
    font-size: 1.25rem;
    color: var(--text-color-dark);
    margin-top: 0;
    /* Remove default top margin */
    margin-bottom: 8px;
}

.facility-details p {
    font-size: 0.95rem;
    color: var(--text-color-light);
    line-height: 1.6;
    margin-bottom: 0;
    /* Remove default bottom margin */
}

/* === Testimonials Section === */
.testimonials {
    padding: var(--padding-vertical-section) 0;
    background-color: var(--color-secondary-light);
    /* Light grey background */
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-box {
    background-color: var(--color-text-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow-light);
    display: flex;
    flex-direction: column;
    border-left: 5px solid var(--color-accent);
    /* Accent line */
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--color-text-muted);
    flex-grow: 1;
    /* Ensures content pushes author down */
}

.testimonial-content p::before {
    content: "“";
    /* Opening quote */
    font-size: 2em;
    color: var(--color-accent);
    line-height: 0;
    margin-right: 5px;
    vertical-align: -0.3em;
    /* Adjust vertical alignment */
}

.testimonial-content p::after {
    content: "”";
    /* Closing quote */
    font-size: 2em;
    color: var(--color-accent);
    line-height: 0;
    margin-left: 5px;
    vertical-align: -0.3em;
    /* Adjust vertical alignment */
}

.testimonial-rating {
    margin-bottom: 15px;
    /* Space between stars and the quote */
    color: #FFD700;
    /* Gold color for stars */
    font-size: 1.1rem;
    /* Adjust size of stars if needed */
}

.testimonial-rating i {
    margin-right: 2px;
    /* Tiny space between stars */
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
    /* Pushes author to the bottom */
}

.author-image {
    width: 60px;
    /* Slightly larger */
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
    /* Prevent shrinking */
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--color-primary-dark);
    margin-bottom: 3px;
    /* Reduced margin */
    font-size: 1.1rem;
}

.author-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* === CTA Section === */
.cta {
    padding: var(--padding-vertical-section) 0;
    background-color: var(--color-accent);
    /* Fallback should likely be the dark color, not accent */
    /* Fallback */
    text-align: center;
    color: var(--color-accent-darker);
}

.cta h2 {
    font-size: 4rem;
    /* 36px */
    margin-bottom: 20px;
    color: var(--color-primary-dark);
    /* Ensure CTA h2 is white */
}

.cta p {
    font-size: 1.125rem;
    /* 18px */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta .btn {
    background-color: var(--color-accent-darker);
    color: var(--color-accent);
    font-size: 1.1rem;
    padding: 15px 35px;
}

.cta .btn:hover,
.cta .btn:focus {
    background-color: var(--color-accent-darker);
    color: var(--color-text-light);
}

/* === Footer === */
footer {
    background-color: var(--color-primary-dark);
    color: #bdc3c7;
    /* Lighter grey for general footer text */
    padding: var(--padding-vertical-section) 0 calc(var(--padding-vertical-section) / 2) 0;
}

.footer-container {
    display: grid;
    /* Updated for 3 columns: About (widest), Links, Contact */
    grid-template-columns: 1fr 1fr 1fr;
    /* All three columns will have equal width */
    /* First column is wider, next two are equal */
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.25rem;
    /* 20px */
    color: var(--color-text-light);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--color-accent);
}


.footer-col p,
.footer-col address {
    color: #ced4da;
    /* Default text color for paragraphs and address */
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 10px;
    /* Ensure consistent bottom margin */
}

.footer-col address {
    font-style: normal;
}


.footer-col ul {
    list-style: none;
    /* Removes bullet points */
    padding-left: 0;
    /* Removes default browser padding for lists */
}

.footer-col ul li {
    margin-bottom: 10px;
}

/* Change all link colors in the footer to accent color */
.footer-col a {
    color: var(--color-accent);
    text-decoration: none;
}

.footer-col ul li a,
.footer-col p a {
    /* Style links within paragraphs too */
    color: #bdc3c7;
    text-decoration: none;
}

.footer-col a:hover,
.footer-col a:focus {
    color: var(--color-secondary-light);
    padding-left: 5px;
    /* Subtle indent on hover */
    outline: none;
}

.footer-col ul li a:hover,
.footer-col ul li a:focus,
.footer-col p a:hover,
.footer-col p a:focus {
    color: var(--color-accent);
    outline: none;
}

.footer-col .logo {
    display: inline-block;
    /* Allows text-align:center on parent to work */
    text-align: center;
    /* Ensures content within this div is centered */
    /* This makes the div.logo (which contains the img) centered
       because its parent .footer-col has text-align: center on mobile.
       The div will shrink-to-fit the image. */
    margin-bottom: 15px;
    /* Add some space below the logo */
    width: 100%;
    /* Allow the container to span, then center image within */
}

.footer-col .logo img {
    display: inline-block;
    /* Override global display:block for text-align centering */
    vertical-align: middle;
    /* Good practice for inline-block images */
    /* Uses global .logo img styles (e.g., display: block, max-height, width: auto) */
    /* No specific override needed here for centering if the parent div.logo is centered. */
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    /* Add some space if it's under text */
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
     /* Slightly different from footer bg for contrast */
    border-radius: 50%;
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 1.125rem;
    /* 18px, for icons */
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.social-links a:hover,
.social-links a:focus {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    transform: translateY(-3px);
    outline: none;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    /* Increased padding */
    margin-top: 40px;
    /* Increased margin */
    border-top: 1px solid #34495e;
    /* Slightly more visible divider */
    font-size: 0.9rem;
    color: #95a5a6;
    /* Lighter for copyright */
}

/* Style for the map placeholder (optional, can be removed once map is embedded) */
.map-placeholder {
    background-color: #e9ecef;
    /* Light grey background */
    border-radius: var(--border-radius);
    min-height: 200px;
    /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === Responsive Design === */

@media (max-width: 992px) {

    /* Tablet and larger mobile */
    html {
        font-size: 15px;
    }

    :root {
        --header-height: 70px;
        --padding-vertical-section: 70px;
    }

    .hero {
        min-height: 60vh;
        padding-bottom: 110px;
        /* Adjust for form overlap */
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.15rem;
    }

    .availability-check {
        margin-top: -90px;
    }

    .availability-check .container {
        max-width: 700px;
        padding: 25px 30px;
    }

    #availability-form {
        gap: 15px;
    }

    .form-group {
        min-width: 150px;
    }

    .about-container {
        /* This class is no longer used in the new structure, can be removed or ignored */
    }

    .about {
        background-attachment: scroll;
        /* Disable parallax on mobile for performance */
    }

    .about-content-card {
        padding: 30px 25px;
    }

    .location-content-wrapper {
        grid-template-columns: 1fr;
        /* Stack location cards */
        gap: 30px;
    }
}


/* Medium Screens (Tablets) */
@media (max-width: 768px) {
    :root {
        --header-height: 65px;
        --padding-vertical-section: 60px;
    }

    body {
        padding-top: var(--header-height);
    }

    html {
        scroll-padding-top: var(--header-height);
    }

    .nav-container {
        padding-left: var(--padding-horizontal-container);
        padding-right: var(--padding-horizontal-container);
    }

    #main-nav {
        display: none;
    }

    #menu-toggle {
        display: flex;
    }

    /* Changed from block to flex */
    #mobile-nav {
        top: var(--header-height);
        height: calc(100vh - var(--header-height));
    }

    .hero {
        padding-bottom: 100px;
        min-height: auto;
        /* Let content define height more */
        padding-top: 40px;
        /* Add some top padding inside hero */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .availability-check {
        margin-top: -80px;
    }

    .availability-check .container {
        padding: 25px 20px;
    }

    .availability-check h2 {
        font-size: 1.5rem;
    }

    /* 24px */

    .features {
        margin-top: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Stack features */

    .section-title h2,
    .cta h2 {
        font-size: 2rem;
        /* Note: .about-content h2 is now .about-content-card h2, handled below */
    }

    /* 32px */

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .gallery-item {
        height: 220px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    #availability-form {
        flex-direction: column;
        /* Stack form elements */
        align-items: stretch;
        /* Make items full width */
    }

    .form-group {
        flex-basis: auto;
        /* Reset flex-basis */
        width: 100%;
    }

    .form-group-submit {
        width: 100%;
        margin-top: 20px;
    }

    .btn-whatsapp {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .about-content-card h2 {
        /* Responsive heading for about card */
        font-size: 1.8rem;
    }

    /* Location Section on Tablets */
    .location-map-card h3,
    .location-landmarks-card h3 {
        font-size: 1.4rem;
        /* Adjust heading size */
    }

    .map-embed-container {
        height: 350px;
        /* Reduce map height */
    }
}

/* Small Screens (Mobiles) */
@media (max-width: 576px) {
    html {
        font-size: 1.5rem;
    }

    :root {
        --padding-vertical-section: 50px;
        --header-height: 60px;
    }

    body {
        padding-top: var(--header-height);
    }

    html {
        scroll-padding-top: var(--header-height);
    }

    #mobile-nav {
        top: var(--header-height);
        height: calc(100vh - var(--header-height));
    }


    .hero h1 {
        font-size: 1.5rem;
    }

    /* Adjusted for smaller screens */
    .hero p {
        font-size: 1rem;
    }

    .hero {
        padding-bottom: 80px;
    }

    .availability-check {
        margin-top: -60px;
    }

    .availability-check .container {
        padding: 20px 15px;
        border-radius: 8px;
    }

    .availability-check h2 {
        font-size: 1rem;
    }

    .features {
        margin-top: 30px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 1.5rem;
    }

    .feature-box {
        padding: 25px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 200px;
    }

    .btn-whatsapp {
        font-size: .8rem;
    }

    .about-content-card {
        /* Further adjustments for small mobiles */
        padding: 25px 20px;
        width: 95%;
    }
}

/* Add a class to body when mobile nav is open to prevent scrolling */
.no-scroll {
    overflow: hidden;
}

/* Style for active navigation link (can be set by JavaScript on scroll) */
/*
#main-nav ul li a.active-link {
    color: var(--color-accent);
}
#main-nav ul li a.active-link::after {
    width: 70%;
}
*/

/* Ensure placeholder images are visible if real ones aren't loaded */
img[src*="placeholder"] {
    background-color: #e9ecef;
    /* Lighter placeholder background */
    border: 1px solid var(--color-border);
    min-height: 150px;
    /* Give some height to placeholders */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-style: italic;
}

img[src*="placeholder"]::after {
    content: attr(alt);
    /* Show alt text */
    font-size: 0.9em;
    padding: 10px;
}

/* Add this to your style.css, for example, within the Header section */
header .logo img {
    max-height: 62.5px;
    /* Adjust as needed to fit your header */
    width: auto;
    /* Maintain aspect ratio */
    display: block;
    /* Removes any extra space below the image */
}

/* === Move to Top Button === */
.move-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    /* Below mobile nav (999) but above most content */
    background-color: var(--color-accent);
    color: var(--color-accent-darker);
    /* Text color for the icon */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* Circular button */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    /* Size of the arrow icon */
    text-decoration: none;
    box-shadow: var(--box-shadow-light);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    /* Start slightly lower for slide-in effect */
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.move-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.move-to-top-btn:hover,
.move-to-top-btn:focus {
    background-color: var(--color-accent-darker);
    color: var(--color-text-light);
    /* Icon color on hover */
    outline: none;
    /* Custom focus is handled globally */
    transform: translateY(-2px);
    /* Slight lift on hover */
    box-shadow: var(--box-shadow-strong);
}

.banner-hero {
    position: relative;
background-color: var(--color-accent-darker); 
   /* background-image: url('img/pattern.svg');  */
    background-repeat: repeat;
    background-position: center;
    padding: 60px 20px; /* more vertical space on desktop, side padding too */
    min-height: 300px;
    color: #fff;
    overflow: hidden;
    text-align: center;
  }
  
  /* Optional image overlay */
  .banner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('img/hero1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
  }
  
  /* Optional content overlay */
  .banner-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
  }
  
  .banner-hero > * {
    position: relative;
    z-index: 2;
  }
  
  /* ✅ Responsive adjustments for smaller screens */
  @media (max-width: 768px) {
    .banner-hero {
      padding: 40px 15px;
      min-height: 220px;
    }
  
    .banner-hero h1 {
      font-size: 1.8rem;
      margin-bottom: 10px;
    }
  
    .banner-hero p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .banner-hero {
      padding: 30px 10px;
      min-height: 180px;
    }
  
    .banner-hero h1 {
      font-size: 1.5rem;
    }
  
    .banner-hero p {
      font-size: 0.95rem;
    }
  }
  


  .hero-dramatic {
    position: relative;
    height: 100vh;
    background-image: url('img/hero1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
  }
  
  /* Overlay for contrast */
  .hero-dramatic::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 30, 0.7);
    z-index: 0;
  }
  
  /* Abstract glow shape */
  .hero-dramatic::after {
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(250, 234, 52, 0.3), transparent 70%);
    filter: blur(120px);
    z-index: 1;
  }
  
  .hero-dramatic > * {
    position: relative;
    z-index: 2;
  }
  
  .hero-dramatic h1 {
    font-size: 4rem;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
  }
  
  .hero-dramatic p {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  }
  
  /* ✅ Tablet view (768px and down) */
  @media (max-width: 768px) {
    .hero-dramatic {
      padding: 0 15px;
      height: 80vh;
    }
  
    .hero-dramatic h1 {
      font-size: 2.5rem;
    }
  
    .hero-dramatic p {
      font-size: 1.2rem;
    }
  
    .hero-dramatic::after {
      width: 400px;
      height: 400px;
      filter: blur(100px);
    }
  }
  
  /* ✅ Mobile view (480px and down) */
  @media (max-width: 480px) {
    .hero-dramatic {
      padding: 0 10px;
      height: 70vh;
    }
  
    .hero-dramatic h1 {
      font-size: 1.8rem;
    }
  
    .hero-dramatic p {
      font-size: 1rem;
    }
  
    .hero-dramatic::after {
      width: 250px;
      height: 250px;
      filter: blur(80px);
    }
  }
  
  /* Room Types Section */
.room-types {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.room-types .section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.room-types .section-title h2 {
   
    color: var(--color-primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-types .section-title p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.room-types .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

.room-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.room-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-card.featured {
    border: 2px solid #f9e830;
    transform: scale(1.05);
}

.room-icon {
    font-size: 2.5rem;
    color: #f9e830;
    margin-bottom: 20px;
}

.room-price {
    margin: 20px 0;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.per-night {
    font-size: 0.9rem;
    color: #666;
}

.room-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.room-features li {
    margin: 10px 0;
    color: #666;
}

.room-features i {
    color: #f9e830;
    margin-right: 10px;
}

.capacity-info {
    text-align: center;
    margin: 40px auto;
    padding: 25px 40px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.capacity-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-accent);
}

.capacity-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.capacity-info p {
    font-size: 1.4rem;
    color: var(--color-primary-dark);
    margin: 0;
    font-weight: 500;
}

.capacity-info strong {
    color: var(--color-accent-darker);
    font-size: 1.6rem;
    font-weight: 700;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .room-types .section-title h2 {
        font-size: 2rem;
    }
    
    .room-types .section-title p {
        font-size: 1.1rem;
    }
    
    .capacity-info {
        padding: 20px 30px;
        margin: 30px auto;
    }
    
    .capacity-info p {
        font-size: 1.2rem;
    }
    
    .capacity-info strong {
        font-size: 1.4rem;
    }
}