﻿ * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lora', serif;
}

body {
    background-color:#004d30;
    color: #333;
    overflow-x: hidden;
    font-family: 'Lora', serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 600;
}

p, a, li {
    font-family: 'Lora', serif;
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
	
}


/* Wrapper for Back to Top Button and Social Icons */
.back-to-top-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none; /* Hidden by default */
    grid-template-columns: repeat(2, 1fr); /* 2 items per row in the grid */
    grid-gap: 10px; /* Space between grid items */
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Back to Top Button */
.back-to-top {
    background: linear-gradient(135deg, #ffcc33, #ff9933); /* Matches your layout's gradient */
    color: #05212B; /* Dark blue for icon color */
    padding: 15px;
    border-radius: 50%; /* Circular button */
    font-size: 20px; /* Icon size */
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

/* Hover effect for Back to Top Button */
.back-to-top:hover {
    background: linear-gradient(135deg, #e68a00, #cc7000); /* Slightly darker gradient */
    color: #ffffff; /* White icon color on hover */
    transform: scale(1.1); /* Slightly enlarges on hover */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

/* Social Media Icons */
.social-media-icons a {
    background: linear-gradient(135deg, #05212B, #2B81A2); /* Dark blue gradient for social icons */
    color: #ffffff;
    padding: 15px;
    border-radius: 50%; /* Circular icons */
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none; /* Remove underline from links */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

/* Hover effect for Social Media Icons */
.social-media-icons a:hover {
    background: linear-gradient(135deg, #e68a00, #cc7000); /* Matches back-to-top hover color */
    transform: scale(1.1); /* Slightly enlarges on hover */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}



/* Adjust grid layout for smaller screens */
@media (max-width: 480px) {
    .back-to-top-wrapper {
        grid-template-columns: 1fr; /* Stack items vertically */
    }
}


/* Top Bar */
.top-bar {
    background-color: transparent;
    padding: 10px 0;
    font-size: 14px;
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-left a {
    color: #fff;
    font-size: 18px;
    transition: transform 0.3s ease;
	text-decoration: none;
    
}

.top-left a:hover {
    color: #ffd700;
    transform: scale(1.1);
}

.top-right a {
    color: #fff;
    font-size: 18px;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.top-right a:hover {
    color: #ffd700;
    transform: scale(1.1);
}

/* Logo Area */
/* Logo Area Styling */
.logo-area {
    position: relative;
    display: inline-block;
    font-size: 28px; /* You can increase this value for a larger text */
    text-align: center;
    font-weight: 800; /* Bold text */
    background-color: #ece8e8; /* Off-white background */
    padding: 7px;
    box-shadow: 0px 8px 20px rgb(0 0 0 / 70%), 0px 0px 15px rgba(255, 215, 0, 0.6); /* Shadow effect */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth transitions */
    text-decoration: none; /* Ensures no underline */
}

/* Optional: Hover Effect for Interactivity */
.logo-area:hover {
    transform: scale(1.1); /* Slight zoom on hover */
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.8), 0px 0px 20px rgba(255, 215, 0, 1); /* Enhance shadow effect */
}


.logo {
    width: 180px;
    height: auto;
    filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.6)); /* Light outer glow */
    transition: filter 0.4s ease, transform 0.4s ease;
}

.logo:hover {
    filter: drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.9)); /* Brighter glow on hover */
    transform: rotate(2deg); /* Small tilt effect */
}

/* Additional Background Behind Logo */
.logo-background {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent);
    border-radius: 50%;
    z-index: -1; /* Places behind the logo */
    animation: pulse 2s infinite ease-in-out;
}

/* Animation for the Background Pulse */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

/* Main Header */
.main-header {
    position: absolute;
    top: 104px;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 10px 0;
    text-align: center;
	margin: 20px 0px 15px 0px;
	background-color:#257694
}

.desktop-nav {
    text-align: center;
    width: 100%;
}

.desktop-nav .nav-links {
    list-style: none;
    display: inline-flex;
    justify-content: center;
    gap: 30px;
}

.desktop-nav .nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.desktop-nav .nav-links li a:hover {
    color: white;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff; /* Clean white background */
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for elegance */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

/* Logo */
.sticky-header .logo {
    width: 150px;
    height: auto;
    transition: width 0.3s ease;
    position: absolute;
    left: 10px;
}

/* Hamburger Menu for Mobile */
.sticky-header .hamburger {
    display: none; /* Hidden by default */
    font-size: 24px;
    cursor: pointer;
    color: #333; /* Neutral dark gray for the menu icon */
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Navigation Links */
.sticky-header .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.sticky-header .nav-links li {
    position: relative;
}

.sticky-header .nav-links li a {
    text-decoration: none;
    color: #333333; /* Neutral dark gray for links */
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 5px 10px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Hover Styling */
.sticky-header .nav-links li a:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #FFB347, #FFCC33); /* Gold-orange gradient for hover */
    border-radius: 5px; /* Rounded corners for hover effect */
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.5); /* Subtle glow effect */
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    /* Hamburger Menu Visible */
    .sticky-header .hamburger {
        display: block; /* Show hamburger menu for mobile */
    }

    /* Hide Navigation Links */
    .sticky-header .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background: #ffffff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Dropdown shadow */
        padding: 20px;
        border-radius: 0 0 10px 10px;
        width: 200px;
    }

    /* Show Navigation Links When Active */
    .sticky-header .nav-links.active {
        display: flex;
    }

    .sticky-header .nav-links li {
        margin-bottom: 10px;
    }
}

/* Active Link Style */
.sticky-header .nav-links li a.active {
    color: #FFB347;
    font-weight: bold;
    border-bottom: 2px solid #FFCC33; /* Matching logo gradient for active underline */
}

/* Subtle Glow Animation */
.sticky-header:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Slight glow on hover */
}


/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.mobile-menu ul {
    list-style-type: none;
    padding: 0;
}

.mobile-menu ul li {
    margin: 20px 0;
}

.mobile-menu ul li a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.mobile-menu ul li a:hover {
    transform: scale(1.1);
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    margin-top: 10px;
    position: relative;
    z-index: 100;
}

/* Media Queries */
@media (min-width: 820px) and (max-width: 1180px) {
    .desktop-nav {
        display: none; /* Hide desktop menu */
    }

    .hamburger {
        display: block; /* Show hamburger for this size */
    }
}

@media (max-width: 820px) {
    .desktop-nav {
        display: none; /* Hide desktop menu */
    }

    .hamburger {
        display: block;
    }

    .top-bar-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .top-left {
        margin-bottom: 10px;
    }

    .top-right {
        margin-top: 10px;
    }

    .logo-area {
        margin-bottom: 15px;
    }

    .logo {
        width: 150px;
    }

    /* Sticky Header for Mobile */
    .sticky-header .hamburger {
        display: block;
    }

    .sticky-header .nav-links {
        display: none;
    }

    .hamburger {
        margin-top: 20px;
        display: block;
        text-align: center;
    }

    .sticky-header .logo {
        left: 10px; /* Move logo to the left for mobile */
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Sticky Header for Mobile */
@media (max-width: 820px) {
    .sticky-header {
        background-color: rgba(0, 0, 0, 0.9);
    }
}
/* Dropdown Menu */
.desktop-nav .dropdown {
    position: relative;
}

.desktop-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f4f4f4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    list-style: none;
    margin: 0;
    z-index: 10;
    border-radius:5px;
    
    /* --- Add these two lines --- */
    min-width: 100%; /* Ensures menu is at least as wide as its parent link */
    white-space: nowrap; /* Prevents text from wrapping to a new line */
}

.desktop-nav .dropdown-menu li {
    padding: 5px 20px;
}

.desktop-nav .dropdown-menu li a {
    text-decoration: none;
    color: black;
    display: block;
}

.desktop-nav .dropdown-menu li a:hover {
    background-color:#257694 ; 
	border-radius:5px;
}

/* Show dropdown on hover */
.desktop-nav .dropdown:hover .dropdown-menu {
    display: block;
}

/* Mobile Dropdown Menu */
.mobile-menu .dropdown .dropdown-menu {
    display: none;
    background-color: #ffd700;
    list-style: none;
    padding: 10px 0;
    margin: 0;
	border-radius:5px;
    
    /* --- Also add here for consistency on mobile --- */
    min-width: 100%;
    white-space: nowrap;
}

.mobile-menu .dropdown .dropdown-menu li {
    padding: 5px 20px;
}

.mobile-menu .dropdown .dropdown-menu li a {
    text-decoration: none;
    color:  #004d30;
    display: block;
}

.mobile-menu .dropdown:hover .dropdown-menu,
.mobile-menu .dropdown-menu.open {
    display: block;
}


.nav-links li a.active {
    color: #FFD700; /* Yellow color for active link */
    font-weight: bold; /* Optional: Make it bold */
     /* Optional: Add a bottom border to indicate it's active */
}



:root {
    --main-bg-gradient: linear-gradient(to bottom, #fff, #fff);
    --btn-hover-color: rgba(255, 215, 0, 0.8);
}

.futuristic-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: var(--main-bg-gradient);
}

.slider-container {
    display: flex;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    opacity: 0.7;
    transition: transform 0.5s ease, opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1.02);
}

.fade-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(93 69 185 / 14%);
    z-index: 1;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    padding: 0 20px; /* Ensure text fits on smaller screens */
}

.content h1 {
    font-size: 3rem;
    color: #ffd700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

.content p {
    font-size: 1.2rem;
    margin: 15px 0;
}

.cta-btn {
    padding: 10px 25px;
    color: white;
    background: #ff8c00;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.3s ease, background 0.3s ease;
    font-size: 1rem;
}

.cta-btn:hover {
    transform: translateY(-3px);
    background: var(--btn-hover-color);
}



/* Navigation Buttons */
.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.navigation button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 18px;
}

.navigation button:hover {
    background: var(--btn-hover-color);
}

/* Dots */
.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #ffd700;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .futuristic-slider {
        height: 100vh; /* Adjust the height for smaller screens */
    }

    .content h1 {
        font-size: 25px; /* Scale down the title */
    }

    .content p {
        font-size: 15px; /* Scale down the subtitle */
    }

    .cta-btn {
        font-size: 0.9rem; /* Smaller button */
        padding: 8px 20px;
    }

    .slide {
        background-size: contain; /* Ensure the image fits within the container */
        background-repeat: no-repeat;
        height: 100%; /* Maintain full height for better visibility */
    }

    .dots {
        bottom: 15px; /* Adjust position of dots for smaller screens */
    }

    .navigation button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


:root {
    --primary-color: #333; /* Dark gray for modern look */
    --accent-color: #ff7f50; /* Coral for vibrant accents */
    --background-color: #ffffff; /* Pure white for a clean layout */
    --text-color: #444; /* Neutral gray for readability */
    --hover-color: #ff4500; /* Bright orange-red for hover effects */
    --border-color: #ddd; /* Light gray for subtle borders */
}

/* Reservation and About Section Styling */
.reservation-and-about {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 5%;
    background: linear-gradient(to bottom, #fdfcfb, #f6f5f3); /* Soft gradient */
    gap: 40px;
    border: 10px solid var(--border-color); /* Border around the section */
    border-radius: 0px; /* Rounded corners for modern look */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

.container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Reservation Box */
.reservation-box {
    background: #f9f9f9; /* Light gray background for contrast */
    padding: 25px;
    border-radius: 10px;
    flex: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
    border: 1px solid var(--border-color); /* Subtle border */
	
}

.reservation-box h1 {
    font-size: 1.8rem;
    color: var(--primary-color); /* Dark gray heading */
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 0.9rem;
    color: var(--text-color); /* Neutral gray for labels */
    margin-bottom: 5px;
    font-weight: 500;
}


input,
select {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid var(--border-color); /* Subtle border */
    border-radius: 5px;
    background-color: #fff; /* White background for input fields */
    color: var(--text-color); /* Neutral gray text color */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
select:focus {
    border-color: var(--accent-color); /* Coral border on focus */
    box-shadow: 0 0 5px rgba(255, 127, 80, 0.5); /* Soft coral glow */
    outline: none;
}

.book-now-btn {
    background: var(--accent-color); /* Coral button */
    color: #fff;
    padding: 12px 20px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease, transform 0.2s ease;
	text-decoration: none;
	text-align:center;
}

.book-now-btn:hover {
    background: var(--hover-color);
    color: #fff;
    border-color: var(--hover-color); /* Hover effect for button border */
}


.about-section {
    flex: 2;
    padding: 20px;
   
}

.well1 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 15px;
	font-weight:bold;
}

.about-section h1 {
    font-size: 2.5rem;
    color: #115a72;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 1px 1px 2px var(--border-color); /* Subtle shadow for heading */
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-color);
}

/* About Text */
.about-text {
	 position: relative;
    padding-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    max-height: 4.5rem; /* Initially display only 3 lines */
    overflow: hidden;
    transition: max-height 0.5s ease;
    border: 2px dashed var(--primary-color); /* Dashed border for content */
    padding: 15px;
    border-radius: 10px;
    background: var(--background-color);
}

/* --- CSS for the Button and Container (Unchanged) --- */
.read-more-btn {
    padding: 10px 20px;
    background: #115a72;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    border: 2px solid var(--border-color); /* Button border */
    display: block;
}

.read-more-btn:hover {
    background: #65625d;
    border-color: #474543;
}

.read-more-content {
    display: none;
    margin-top: 20px;
}

/* --- CSS for Text Content (UPDATED) --- */

.well2 {
    font-size: 1.7rem;
    color: #115a72;
    margin-top: 10px;
    
    /* --- ADDED: Adjusts the spacing for the title's own lines (if it wraps) --- */
    line-height: 1.3; 
}

.read-more-content p {
    font-size: 18px;
    margin-bottom: 15px;

    /* --- ADDED: Gives vertical spacing between lines for better readability --- */
    /* A value of 1.6 is standard for good readability in body text. */
    line-height: 1.6; 
    
    /* --- ADDED: Creates space between the title ("Business Travel") and the paragraph text --- */
    margin-top: 10px; 
}


/* -- Other CSS from your previous code (for reference) -- */
.about-text .read-more-content {
    display: none;
}
.about-text.expanded {
    max-height: none;
    overflow: visible;
}
.about-text.expanded .read-more-content {
    display: inline;
}


:root {
    --primary-color: #2A2A2A; /* Deep charcoal for text and icons */
    --accent-color: #4CAF50; /* Fresh green for accents */
    --background-color: #FFFFFF; /* Pure white */
    --text-color: #4A4A4A; /* Neutral mid-gray for text */
    --hover-color: #388E3C; /* Darker green for hover effects */
    --light-gray: #F5F5F5; /* Subtle gray for section backgrounds */
    --box-shadow: rgba(0, 0, 0, 0.1); /* Soft shadow */
    --overlay-dark: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
}

/* Full-Screen Amenities Section */
.amenities-slider-section {
    width: 100%;
    background: var(--light-gray); /* Light gray background */
    padding: 60px 20px;
    overflow: hidden;
    position: relative;
}

.amenities-slider-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #18085e;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px var(--box-shadow); /* Subtle text shadow */
}

/* Slider Container */
.container-full {
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
}

.amenities-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Amenities Slider */
.amenities-slider {
    display: flex;
    gap: 25px;
    animation: scrollMarquee 25s linear infinite; /* Continuous scrolling */
}

.amenities-slide {
    flex: 0 0 calc(20% - 20px);
    background: linear-gradient(145deg, var(--background-color), var(--light-gray)); /* Soft white gradient */
    border: 1px solid var(--box-shadow); /* Subtle border */
    border-radius: 10px;
    box-shadow: 0 4px 10px var(--box-shadow); /* Light shadow */
    text-align: center;
    padding: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    cursor: pointer;
}

.amenities-slide:hover {
    transform: translateY(-5px); /* Gentle lift effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Enhanced shadow on hover */
}

/* Icon Styles */
.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
	background: rgb(37 118 148);
    
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--background-color);
}

.icon-wrapper em {
    font-size: 2rem;
    color: var(--background-color); /* White icons */
}

/* Amenities Text */
.amenities-slide p {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-color); /* Neutral text color */
    margin: 10px 0 0;
}

/* Overlay for Amenity Details */
.amenities-info-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.amenities-info-overlay.active {
    display: flex;
}

/* Information Content */
.info-content {
    background: var(--background-color); /* White background */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 90%;
    max-width: 500px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15); /* Depth */
    position: relative;
}

.close-btn {
    background: var(--primary-color); /* Deep charcoal */
    border: none;
    color: #fff;
    font-size: 1.5rem;
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
}

.close-btn:hover {
    background: var(--hover-color); /* Darker green */
}

.info-title {
    font-size: 1.8rem;
    color: var(--primary-color); /* Deep charcoal */
    margin-bottom: 15px;
    text-transform: uppercase;
}

.info-details {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Marquee Animation */
@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 6)); /* Adjust for the number of slides */
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .amenities-slider-section {
        padding: 40px 0;
    }

    .amenities-slider-title {
        font-size: 2rem; /* Slightly smaller title */
    }

    .amenities-slide {
        flex: 0 0 calc(50% - 10px); /* Show 2 slides at a time */
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .icon-wrapper i {
        font-size: 1.5rem;
    }
}
:root {
    --primary-color: #004d30; /* Deep forest green */
    --accent-color: #4CAF50; /* Soft green */
    --background-color: #FFFFFF; /* White */
    --text-color: #2C2C2C; /* Dark gray */
    --hover-color: #388E3C; /* Darker green for hover effects */
    --light-gray: #F9F9F9; /* Subtle gray for background */
    --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Soft shadow */
}





/* ===== Unique Room Cards (Cyberweb) ===== */
.cw-rooms{
  --cw-accent:#0b5672;      /* accent (orange) */
  --cw-primary:#18085e;     /* headings (navy) */
  --cw-card:#ffffff;
  --cw-bg:#f7f8fb;
  --cw-text:#273044;
  --cw-dim:#667085;

  padding:64px 16px;
  background:var(--cw-bg);
  font-family: inherit;
}
.cw-rooms__title{
  text-align:center;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--cw-primary);
  font-size: clamp(28px,4vw,44px);
  margin:0 0 32px;
}
.cw-rooms__grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap:28px;
  max-width:1200px; margin:0 auto;
}

/* ---------- Wider options ---------- */
/* XL container (~1400px wide) */
.cw-rooms--xl .cw-rooms__grid{
  max-width:1400px;
  grid-template-columns: repeat(auto-fit, minmax(360px,1fr));
  gap:32px;
}
.cw-rooms--xl { padding-left:24px; padding-right:24px; }
.cw-rooms--xl .cw-room__media{ aspect-ratio:16/9; }

/* Full-bleed (edge to edge, with safe gutters) */
.cw-rooms--full{ padding-left:0; padding-right:0; }
.cw-rooms--full .cw-rooms__grid{
  max-width:none; width:min(100vw, 1600px);
  margin-left:auto; margin-right:auto;
  padding-left:clamp(12px, 4vw, 32px);
  padding-right:clamp(12px, 4vw, 32px);
  grid-template-columns: repeat(auto-fit, minmax(380px,1fr));
  gap:clamp(20px, 2.5vw, 36px);
}
.cw-rooms--full .cw-room__media{ aspect-ratio:16/9; }

/* ---------- Card ---------- */
.cw-room{
  position:relative; border-radius:22px; overflow:hidden;
  background:var(--cw-card);
  box-shadow: 0 18px 38px rgba(16,24,40,.08);
  isolation:isolate; transform: translateZ(0);
}
.cw-room::before{
  content:""; position:absolute; inset:-1px; z-index:-1; border-radius:24px;
  background: conic-gradient(from 180deg, #ffdcae, var(--cw-accent), #6ea8ff, var(--cw-accent), #ffdcae);
  filter: blur(14px); opacity:.35; transition: opacity .3s ease;
}
.cw-room:hover::before{ opacity:.6; }

/* media */
.cw-room__media{ position:relative; overflow:hidden; aspect-ratio: 16/10; }
.cw-room__media img{
  width:100%; height:100%; object-fit:cover;
  transform:scale(1.03); transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .6s;
}
.cw-room:hover .cw-room__media img{ transform:scale(1.08); filter:saturate(1.05) contrast(1.02); }

/* arc highlight for uniqueness */
.cw-room__media::after{
  content:""; position:absolute; right:-90px; top:-90px;
  width:180px; height:180px; border-radius:50%;
  background: radial-gradient(closest-side, rgba(255,255,255,.9), rgba(255,255,255,0));
  mix-blend-mode: screen; pointer-events:none;
}

/* badge */
.cw-room__badge{
  position:absolute; left:14px; top:14px;
      background: linear-gradient(135deg, #ff606f, #4d1614);
  color:#fff; font-weight:700; font-size:18px;
  padding:7px 12px; border-radius:999px;
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
}

/* body */
.cw-room__body{ padding:18px 18px 20px; }
.cw-room__name{
  margin:0 0 6px; color:var(--cw-primary);
  font-size: clamp(18px,2.2vw,22px); font-weight:800;
}
.cw-room__tagline{
  margin:0 0 10px; color: #2f1a02; font-weight:700;
}
.cw-room__desc{
  margin:0 0 14px; color:var(--cw-text); line-height:1.55; font-size:.98rem;
}

.cw-room__features{
  list-style:none; padding:0; margin:0 0 18px;
  display:grid; grid-template-columns: 1fr 1fr; gap:10px 14px;
}
.cw-room__features li{
      color: #020b1f;; font-size:.95rem; display:flex; gap:10px; align-items:center;
}
.cw-room__features em{     color: #a91742; width:18px; text-align:center; }

/* book button with shine */
.cw-room__btn{
  display:inline-block; text-decoration:none; border:none; cursor:pointer;
  padding:12px 22px; border-radius:10px; font-weight:800;
  color:#fff; background:
    linear-gradient(100deg, rgba(255,255,255,.22) 0 40%, rgba(255,255,255,0) 60%) 0/200% 100%,
    linear-gradient(135deg, var(--cw-accent), #ff9d3c);
  transition: transform .2s ease, box-shadow .2s ease, background-position .8s ease;
  box-shadow: 0 10px 20px rgba(243,137,18,.25);
      background: linear-gradient(100deg, rgba(255, 255, 255, .22) 0 40%, rgba(255, 255, 255, 0) 60%) 0 / 200% 100%, linear-gradient(135deg, #b0a9a1, #272422);
}
.cw-room__btn:hover{ transform: translateY(-2px); background-position: -120% 0; }
.cw-room__btn:focus-visible{ outline:3px solid rgba(243,137,18,.35); outline-offset:3px; }

/* mobile */
@media (max-width: 480px){
  .cw-room__features{ grid-template-columns: 1fr; }
}







:root {
    --primary-color: #004d30;
    --accent-color: #FFD700;
    --text-color: #2C2C2C;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
}



.explore-attractions {
    background: var(--bg-light);
    padding: 60px 20px;
}

.section-heading {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tab {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    color: var(--primary-color);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.tab.active,
.tab:hover {
    background: var(--primary-color);
    color: var(--white);
}

.attraction-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.attraction-item {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 20px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-item.active {
    display: flex;
    animation: fadeIn 0.5s ease;
}

.image-wrapper {
    flex: 1;
}

.image-wrapper img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 10px var(--shadow-light);
    transition: transform 0.3s ease;
}

.image-wrapper img:hover {
    transform: scale(1.05);
}

.details-wrapper {
    flex: 2;
    text-align: left;
}

.nearby {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.details-wrapper p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .attraction-item {
        flex-direction: column;
        text-align: center;
    }

    .image-wrapper img {
        max-width: 100%;
    }

    .details-wrapper {
        text-align: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Scoped CSS Variables */
:root {
    --reviews-primary-color: #004d30; /* Deep Green */
    --reviews-accent-color: #FFD700; /* Gold */
    --reviews-background-dark: #004d30; /* Black */
    --reviews-text-color: #FFFFFF; /* White */
    --reviews-cube-shadow: rgba(0, 0, 0, 0.4); /* Shadow for cube */
}

.rotating-reviews-section {
    padding: 80px 5%;
    background: url('../images/review.jpg') no-repeat center center / cover;
    position: relative;
    text-align: center;
    color: var(--reviews-text-color);
    overflow: hidden;
}

.rotating-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
}

.section-titlereviews {
    font-size: 2.8rem;
    color: var(--reviews-accent-color);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}


.reviews-slider {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    perspective: 448px;
    position: relative;
}

.cube {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transition: transform 1s ease-in-out;
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #666461;
    color: var(--reviews-text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 6px 12px var(--reviews-cube-shadow);
}

.cube-face.front { transform: rotateY(0deg) translateZ(150px); }
.cube-face.back { transform: rotateY(180deg) translateZ(150px); }
.cube-face.left { transform: rotateY(-90deg) translateZ(150px); }
.cube-face.right { transform: rotateY(90deg) translateZ(150px); }

blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0 20px;
    position: relative;
}

blockquote p{
    font-size: 17px;
    font-style: italic;
    line-height: 1.6;
   
}

blockquote::before, blockquote::after {
    content: '"';
    font-size: 2.5rem;
    color: var(--reviews-accent-color);
}

.reviewer-info {
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .reviews-slider {
        width: 500px;
        height: 250px;
    }

    blockquote {
        font-size: 16px;
    }
}






/* Gallery Section */
.elegant-photo-gallery {
    padding: 60px 5%;
    background: var(--background-color);
    text-align: center;
    
}

.gallery-title {
    font-size: 3rem;
    color: #18085e;
    margin-bottom: 40px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Gallery Container */
.gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.gallery-main {
    width: 85%;
    height: 450px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--shadow-light);
    background: var(--background-color);
}

.main-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-in-out, box-shadow 0.3s ease;
}

.main-image::after {
    content: attr(data-caption);
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fd8901;
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.main-image:hover {
    transform: scale(1.03);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
}

.main-image:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* Thumbnails */
.gallery-thumbnails {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 85%;
}

.thumbnail {
    width: 110px;
    height: 110px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 3px solid transparent;
}

.thumbnail:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 20px var(--hover-highlight);
    border-color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-main {
        width: 100%;
        height: 350px;
    }

    .gallery-thumbnails {
        width: 100%;
        gap: 15px;
    }

    .thumbnail {
        width: 90px;
        height: 90px;
    }
}



/* For iPads (portrait and landscape) */
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .map-frame {
    margin-top: 180px;
    height: 400px;
  }
}

/* For Mobile Devices */
@media only screen and (max-width: 599px) {
  .map-frame {
    margin-top: 60px;
    height: 300px;
  }
}

:root {
    --modern-bg-gradient: linear-gradient(135deg, #FFFFFF, #F7F5F2); /* Subtle white-to-light beige gradient */
    --modern-primary-color: #004d30; /* Deep green for consistency */
    --modern-accent-color: #D4AF37; /* Warm gold for highlights */
    --modern-text-dark: #2C2C2C; /* Dark neutral gray for readability */
    --modern-shadow: rgba(0, 0, 0, 0.15); /* Softer shadow */
    --modern-hover-highlight: rgba(212, 175, 55, 0.7); /* Soft gold highlight for hover */
}
/* Section Styling */
.map-booking-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 60px 5%;
    background: var(--modern-bg-gradient);
    
    box-shadow: 0 15px 35px var(--modern-shadow);
}

/* Map Section */
.map-wrapper-modern {
    flex: 1;
    background: rgb(209 206 218);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    animation: slideInFromLeft 1s ease-out;
}

.map-heading-modern {
    text-align: center;
    color: #0e0010;
    margin-bottom: 20px;
}

.map-heading-modern h2 {
    font-size: 2rem;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0px 4px 8px var(--modern-shadow);
}

.map-heading-modern p {
    font-size: 1rem;
    margin-top: 5px;
    color: #fff;
}

.map-frame-modern {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 15px 25px var(--modern-shadow);
}

.map-frame-modern iframe {
    width: 100%;
    height: 400px;
    border: none;
    transition: transform 0.5s ease;
}

.map-frame-modern:hover iframe {
    transform: scale(1.05);
}

.explore-map-modern {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--modern-accent-color);
    color: var(--modern-primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px var(--modern-hover-highlight);
}

.explore-map-modern:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px var(--modern-hover-highlight);
}

/* Booking Section */
.booking-wrapper-modern {
    flex: 1;
    background: rgb(42 82 151 / 44%);
    color: var(--modern-text-dark);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    position: relative;
    animation: slideInFromRight 1s ease-out;
}

.booking-wrapper-modern h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0px 4px 8px var(--modern-shadow);
}

.booking-wrapper-modern p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #FFFFFF; /* Light text against dark green */
}

.booking-btn-modern {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.1rem;
    color: var(--modern-primary-color);
    background: #f4f3f0;
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 30px var(--modern-hover-highlight);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-btn-modern:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px var(--modern-hover-highlight);
}

/* Responsive Design */
@media (max-width: 768px) {
    .map-booking-modern {
        flex-direction: column;
    }

    .map-frame-modern iframe {
        height: 300px;
    }

    .explore-map-modern {
        bottom: 10px;
        right: 10px;
        padding: 10px 15px;
    }

    .booking-btn-modern {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

/* Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Video Container Styling */
.video-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 10px 20px var(--modern-shadow);
}

.video-container video {
    width: 100%;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
    }
}


.aligned-footer {
            background: linear-gradient(176deg, #257693, #230511);
    color: #4a4a4a; /* Dark gray for text */
    padding: 40px 5%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Top Row: Logo and Social Media */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-logo-wrapper {
    flex: 1;
    text-align: left;
    margin-bottom: 20px; /* Added margin for better spacing */
}

.footer-logo {
    max-width: 150px;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
}

.footer-social-icons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 20px; /* Added for spacing on smaller screens */
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
        background: radial-gradient(circle, #795548, #9E9E9E);
    border-radius: 50%;
    font-size: 1.2rem;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none; /* Ensure no underline */
}

.footer-social-icon:hover {
    transform: scale(1.2);
    box-shadow: 0px 8px 15px rgba(255, 204, 51, 0.8);
}

/* Footer Content */
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
}

/* Contact Section */
.footer-contact h4,
.footer-links h4,
.footer-policies h4 {
    font-size: 1.3rem;
    color: #ffffff; /* Gold for headers */
    margin-bottom: 15px;
    text-transform: uppercase; /* Optional for styling consistency */
    font-weight: bold; /* Emphasize property name */
}

.footer-contact p,
.footer-policies ul li {
    margin: 5px 0;
    color: #4a4a4a; /* Dark gray */
    color: #ffffff;
    font-size: 17px;
}

.contact-phone {
    color: #ffb347;
    text-decoration: none;
}

.contact-phone:hover {
    color: #222222;
    text-decoration: underline;
}

/* Quick Links */
.footer-links ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns for desktop */
    list-style: none;
    padding: 0;
    gap: 10px;
}

.footer-links ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px; /* Space for arrow */
}

.footer-links ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffb347;
    font-size: 1rem;
}

.footer-links ul a {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s ease;
}

.footer-links ul a:hover {
    color: #000000;
}

/* Footer Policies */
.footer-policies ul {
    list-style: none;
    padding: 0;
    line-height: 1.8;
}

/* Footer Bottom */
.footer-bottom {
    background: #243144; /* Dark gray */
    padding: 20px 0;
    margin-top: 30px;
    color: #ffffff; /* White for text */
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #ffcc33; /* Bright gold */
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}

a.title5 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none; /* removes underline */
    display: inline-block; /* allows margin to apply properly */
}

a.title5:hover {
    color: #ffa500; /* slightly different shade on hover */
    text-decoration: underline; /* optional: add underline on hover */
}
/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links ul {
        grid-template-columns: repeat(2, 2fr); /* Single column for mobile */
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
    }

    .footer-social-icons {
        justify-content: center;
        margin-top: 10px;
    }

    .footer-logo-wrapper {
        margin-bottom: 20px; /* Added spacing */
    }
}

/* New Facility Section */
.new-facility-section {
    padding: 30px 20px;
    background: radial-gradient(circle at center, #ffffff, #f5f7fa); /* Soft neutral backdrop */
    text-align: center;
    color: #2c2c2c; /* Neutral text */
}

.new-facility-title {
    font-size: 3rem;
    color: #0a2845; /* Deep navy for title */
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    font-weight: bold;
}

.new-facility-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #f5e9c9; /* Cream accent line */
    margin: 15px auto;
    border-radius: 2px;
}

/* Grid Styling */
.facility-grid-creative {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    justify-items: center;
}

/* Facility Box */
.facility-box-creative {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.facility-box-creative:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(10, 40, 69, 0.2); /* navy-tinted shadow */
}

/* Icon Background */
.icon-background {
    background: linear-gradient(145deg, #0a2845, #2b6f94); /* navy → mountain blue */
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: #f5e9c9; /* cream icon */
    border-bottom: 5px solid #eaeaea;
}

.facility-box-creative:hover .icon-background {
    background: linear-gradient(145deg, #2b6f94, #f5e9c9); /* blue to cream hover */
    color: #0a2845;
}

/* Facility Information */
.facility-info {
    padding: 30px;
    text-align: center;
}

.facility-info h3 {
    font-size: 1.6rem;
    color: #0a2845; /* Navy headings */
    margin-bottom: 15px;
    font-weight: bold;
}

.facility-info p {
    font-size: 1.1rem;
    color: #2c2c2c;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .facility-grid-creative {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .facility-grid-creative {
        grid-template-columns: 1fr;
    }

    .facility-box-creative {
        max-width: 100%;
    }

    .icon-background {
        padding: 20px;
    }
}

/* General Facilities Section */
.facility-section {
    padding: 60px 20px;
    background: #f5f7fa;
    text-align: center;
}

.facility-container {
    max-width: 1200px;
    margin: 0 auto;
}

.facility-title {
    font-size: 2.5rem;
    color: #0a2845;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    font-weight: bold;
}

.facility-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #f5e9c9;
    margin: 10px auto;
    border-radius: 2px;
}

/* Facilities Grid */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Facility Column */
.facility-column {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(10, 40, 69, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(10, 40, 69, 0.2);
}

/* Facility Category Title */
.facility-column h3 {
    font-size: 1.6rem;
    color: #0a2845;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #f5e9c9;
    padding-bottom: 8px;
}

/* Facility List */
.facility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-list li {
    font-size: 1.1rem;
    color: #2c2c2c;
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.facility-list li em {
    font-size: 1.5rem;
    color: #2b6f94; /* mountain blue icon */
    margin-right: 10px;
}

.facility-list li:hover {
    background-color: #e8f0f6; /* soft blue hover */
    border-radius: 5px;
    padding-left: 10px;
    transition: 0.3s ease-in;
}

/* Responsive Design */
@media (max-width: 768px) {
    .facility-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .facility-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* Hero Section - Enhanced Styling */
.amenities-hero {
    width: 100%;
    height: 450px;
    background: url('../images/singlebed.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
	
}
.things-hero {
    width: 100%;
    height: 450px;
    background: url('../images/map.jpg') center/cover no-repeat;
     position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.contact-hero{
    width: 100%;
    height: 450px;
    background: url('../images/contact1.jpg') center/cover no-repeat;
     position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.sitemap-hero{
    width: 100%;
    height: 450px;
    background: url('../images/sitemap.jpg') center/cover no-repeat;
     position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}


.faq-hero{
    width: 100%;
    height: 450px;
    background: url('../images/faq.webp') center/cover no-repeat;
     position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.reservation-hero{
    width: 100%;
    height: 450px;
    background: url('../images/old_town_spring.jpg') center/cover no-repeat;
     position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}



.wineary-hero{
    width: 100%;
    height: 450px;
    background: url('../images/wine.jpg') center/cover no-repeat;
     position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}



:root {
    --primary-color: #004d30; /* Deep green */
    --accent-color: #ffd700; /* Gold */
    --text-light: #ffffff;
    --overlay-gradient: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    
    --btn-hover-color: #ffc107;
}

/* General Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    background: var(--overlay-gradient), var(--hero-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    gap: 30px;
}

/* Content and Title */
.hero-content {
    max-width: 50%;
    color: var(--text-light);
    animation: fadeIn 1.5s ease-out;
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    color: var(--accent-color);
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.hero-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2rem;
    color: var(--primary-color);
    background: var(--accent-color);
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.5);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.hero-button:hover {
    transform: translateY(-5px);
    background: var(--btn-hover-color);
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.5);
}

/* Hero Graphic */
.hero-graphic {
    max-width: 40%;
    animation: slideInFromRight 1.5s ease-out;
}

.hero-graphic img {
    width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
	border-radius:10px;
}

.hero-graphic img:hover {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .hero-section1 {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center-align elements */
        text-align: center;
        padding: 20px 15px; /* Adjust padding */
        background-size: cover;
		        margin-top: 150px;
    }
}

/* General Section Styling for Mobile */
@media (max-width: 768px) {
    .hero-section {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center-align elements */
        text-align: center;
        padding: 20px 15px; /* Adjust padding */
        background-size: cover;
		   
    }

    /* Hero Content Wrapper */
    .hero-content-wrapper {
        flex-direction: column-reverse; /* Move image below content */
        width: 100%;
        gap: 20px;
    }

    /* Hero Content */
    .hero-content {
        width: 100%; /* Full width for proper alignment */
        text-align: center;
        padding: 0 10px; /* Add padding to avoid content touching edges */
    }

    .hero-title {
        font-size: 2.5rem; /* Scale down title size */
        margin-top: 15px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1rem; /* Scale down description */
        margin: 10px 0;
    }

    .hero-button {
        font-size: 1rem;
        padding: 12px 30px;
        margin: 15px auto; /* Center the button */
        width: auto; /* Remove forced width */
        max-width: 250px;
    }

    /* Hero Graphic */
    .hero-graphic {
        width: 100%;
        max-width: 300px; /* Limit graphic size */
        margin: 0 auto; /* Center the graphic */
    }

    .hero-graphic img {
        width: 100%;
        max-width: 300px; /* Maintain aspect ratio */
        display: block;
        margin: 0 auto;
    }
}

/* Additional Adjustments for Very Small Screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem; /* Further reduce title size */
    }

    .hero-description {
        font-size: 0.9rem; /* Further reduce description size */
        margin-bottom: 15px;
    }

    .hero-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .hero-graphic img {
        max-width: 200px;
margin-top: 150px;		/* Reduce image size further */
    }
}
:root {
    --primary-color: #004d30; /* Deep green */
    --accent-color: #ffd700; /* Gold */
    --background-light: #f9f9f9; /* Light gray background */
    --text-color: #333; /* Neutral gray text */
    --box-shadow: rgba(0, 0, 0, 0.1);
    --hover-color: #ff9900; /* Hover color for button */
}

/* Reservation Section */
.reservation-section {
    padding: 0px 20px;
    background: var(--background-light);
    text-align: center;
}

.reservation-container {
    max-width: 1600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 20px var(--box-shadow);
    border: 1px solid #ddd;
}

.reservation-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Form Row Styling */
.reservation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reservation-row .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.reservation-row .book-now-group {
    flex: 0.5; /* Adjust button size */
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.reservation-row .form-group label {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 5px;
    font-weight: 500;
}

.reservation-row .form-group input,
.reservation-row .form-group select {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
    color: var(--text-color);
    transition: all 0.3s ease;
    width: 100%;
}

.reservation-row .form-group input:focus,
.reservation-row .form-group select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    outline: none;
}

/* Button Styling */
.reservation-btn {
    width: 100%;
    padding: 15px 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background: var(--accent-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
	    margin-top: 20px;
}

.reservation-btn:hover {
    background: var(--hover-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 153, 0, 0.5);
}

@media (max-width: 768px) {
    .reservation-row {
        flex-direction: column; /* Stack the form elements vertically */
        gap: 15px;
    }

    .reservation-row .form-group {
        width: 100%; /* Full width for form fields */
    }

    .reservation-row .book-now-group {
        width: 100%; /* Full width for the button */
    }

    .reservation-btn {
        width: 100%; /* Full width button */
        font-size: 1.2rem; /* Adjust font size for better readability */
        padding: 15px; /* Increase padding for touch-friendly design */
    }
}





/* Main Section Styling */
.highlighted-attractions-section {
    padding: 80px 20px;
    background: #f8f9fb; /* Soft off-white for a bright, clean look */
    color: #2c2c2c; /* Neutral text color for readability */
    text-align: center;
}

/* Main Title Styling */
.main-title {
    font-size: 2.8rem;
    color: #0a2845; /* Deep navy for brand consistency */
    margin-bottom: 50px;
    position: relative;
    font-weight: bold;
    text-decoration: none;
}

.main-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #f5e9c9; /* Cream accent underline */
    display: block;
    margin: 15px auto;
    border-radius: 2px;
}

/* Top Attractions Section */
.top-attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.attraction-box {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(10, 40, 69, 0.1); /* navy-tinted shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    text-align: left;
}

.attraction-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(10, 40, 69, 0.2);
}

.attraction-info {
    padding: 20px;
}

.attraction-info h3 {
    font-size: 1.8rem;
    color: #0a2845; /* Deep navy for headings */
    margin-bottom: 10px;
    font-weight: bold;
}

.attraction-info p {
    font-size: 1.1rem;
    color: #2c2c2c; /* Neutral gray for descriptions */
}

.distance {
    font-size: 1rem;
    color: #2b6f94; /* Mountain blue for distance text */
    margin-bottom: 15px;
    font-weight: bold;
}

/* What's Nearby List */
.section-title {
    font-size: 2.2rem;
    color: #0a2845;
    margin-bottom: 40px;
}

.nearby-list-container {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 30px;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

/* Category Title Styling */
.nearby-category {
    margin-bottom: 25px;
}

.category-title {
    font-size: 1.6rem;
    color: #0a2845; /* Deep navy for titles */
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #f5e9c9; /* Cream underline */
    padding-bottom: 6px;
}

/* Nearby Items */
.nearby-item {
    font-size: 1.2rem;
    color: #2c2c2c; /* Neutral text color */
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.nearby-item i {
    font-size: 1.6rem;
    color: #2b6f94; /* Mountain blue for icons */
    margin-right: 10px;
    transition: color 0.3s ease;
}

.nearby-item:hover {
    color: #2b6f94;
}

.nearby-item:hover i {
    color: #0a2845;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-attractions-grid {
        grid-template-columns: 1fr;
    }

    .nearby-list-container {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.futuristic-contact-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%); /* Soft gradient background */
    color: #0a2845; /* Deep navy for text */
}

.futuristic-contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

/* Left Column: Info */
.futuristic-contact-info {
    flex: 1;
    color: #0a2845; /* Deep navy for readability */
}

.futuristic-contact-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #0a2845; /* Primary deep navy */
    font-weight: bold;
    text-decoration: none;
}

.futuristic-contact-title a {
    color: #0a2845;
    text-decoration: none;
    transition: color 0.3s ease;
}

.futuristic-contact-title a:hover {
    color: #2b6f94; /* Mountain blue on hover */
}

.futuristic-info-block {
    margin-bottom: 30px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(10, 40, 69, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.futuristic-info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(10, 40, 69, 0.2);
}

.futuristic-info-block h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2b6f94; /* Mountain blue headings */
    border-bottom: 2px solid #f5e9c9; /* Cream underline */
    padding-bottom: 5px;
}

.futuristic-info-block p {
    font-size: 1.2rem;
    margin: 5px 0;
    color: #2c2c2c; /* Neutral dark gray for text */
}

.futuristic-info-block a {
    color: #2b6f94; /* Mountain blue for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.futuristic-info-block a:hover {
    color: #0a2845; /* Deep navy hover */
}

/* Right Side: Image Styling */
.futuristic-image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(10, 40, 69, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(10, 40, 69, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .futuristic-contact-container {
        flex-direction: column;
    }

    .contact-image {
        margin-top: 30px;
    }

    .futuristic-contact-title {
        font-size: 2.3rem;
    }

    .futuristic-info-block h2 {
        font-size: 1.5rem;
    }

    .futuristic-info-block p {
        font-size: 1rem;
    }
}

/* Reusable SEO Link Styles */
.seo-link {
    color: #0a2845; /* Deep navy */
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.seo-link:hover {
    color: #2b6f94; /* Mountain blue on hover */
    border-bottom-color: #f5e9c9; /* Cream underline on hover */
    text-decoration: none;
}

.seo-link-secondary {
    color: #2b6f94; /* Mountain blue for secondary links */
    font-weight: normal;
    border-bottom: 1px dashed #f5e9c9; /* Cream dashed underline */
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.seo-link-secondary:hover {
    color: #0a2845; /* Deep navy on hover */
    border-bottom-color: #0a2845;
    background-color: rgba(245, 233, 201, 0.2); /* Cream glow effect */
    text-shadow: 0 0 6px rgba(10, 40, 69, 0.3);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .seo-link,
    .seo-link-secondary {
        font-size: 1rem;
    }

    .seo-link:hover,
    .seo-link-secondary:hover {
        text-shadow: none;
    }
}



/* Modern Location Section */
.modern-location-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f6f9 100%); /* Soft off-white to pale blue */
    color: #0a2845; /* Deep navy for primary text */
    text-align: left;
}

/* Main Container (Card) */
.modern-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 12px 45px rgba(10, 40, 69, 0.15); /* Soft navy shadow */
    transition: all 0.3s ease;
}

.modern-container:hover {
    box-shadow: 0 18px 60px rgba(10, 40, 69, 0.2);
    transform: translateY(-4px);
}

/* Left Column: Text Content */
.location-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Title */
.location-text h1 a {
    font-size: 2.6rem;
    color: #0a2845; /* Deep navy title */
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.location-text h1 a:hover {
    color: #2b6f94; /* Mountain blue hover effect */
}

/* Description */
.location-description {
    font-size: 1.2rem;
    margin-top: 15px;
    margin-bottom: 30px;
    color: #2c2c2c; /* Neutral gray for readability */
    line-height: 1.6;
}

/* Coordinates Box */
.coordinates-box {
    background-color: #eef5f9; /* Very light blue background */
    padding: 20px 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 6px 18px rgba(10, 40, 69, 0.08);
    border-left: 5px solid #2b6f94; /* Mountain blue accent stripe */
}

.coordinates-title {
    font-size: 1.8rem;
    color: #0a2845;
    margin-bottom: 15px;
    font-weight: bold;
    border-bottom: 2px solid #f5e9c9; /* Cream underline */
    padding-bottom: 6px;
}

.coordinate {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #2b6f94; /* Mountain blue text */
    font-size: 1.1rem;
}

.coordinate em {
    font-size: 22px;
    margin-right: 10px;
    color: #f5e9c9; /* Cream gold icon */
}

/* Directions Form */
.directions-form {
    margin-top: 25px;
}

.input-field {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 2px solid #2b6f94;
    background-color: #ffffff;
    color: #0a2845;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-field:focus {
    border-color: #0a2845;
    box-shadow: 0 0 10px rgba(43, 111, 148, 0.25);
    outline: none;
}

.directions-btn {
    width: 100%;
    padding: 15px;
    background-color: #2b6f94; /* Mountain blue button */
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.directions-btn:hover {
    background-color: #0a2845; /* Deep navy hover */
    transform: scale(1.03);
}

/* Right Side: Image */
.location-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-image .image {
    width: 100%;
    max-width: 480px;
    border-radius: 15px;
    box-shadow: 0 12px 35px rgba(10, 40, 69, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-image .image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(10, 40, 69, 0.25);
}

/* Responsive Design */
@media (max-width: 992px) {
    .modern-container {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }

    .location-text h1 a {
        font-size: 2.2rem;
    }

    .location-description {
        font-size: 1.1rem;
    }

    .coordinates-box {
        text-align: left;
    }

    .location-image {
        margin-top: 30px;
    }
}

/* Custom Link Style (.cgsl) */
.cgsl {
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.cgsl:hover {
    color: white;
    text-shadow: 0 0 6px rgba(245, 233, 201, 0.6); /* Cream glow effect */
    text-decoration: none;
}


/* Sitemap Section */
.sitemap-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #eef3f7 0%, #ffffff 100%); /* Soft light background */
    color: #0a2845;
    text-align: center;
}

/* Container */
.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Title */
.sitemap-title {
    font-size: 3rem;
    color: #0a2845; /* Deep navy for title */
    margin-bottom: 15px;
    font-weight: 700;
    text-decoration: none;
}

.sitemap-subtitle {
    font-size: 1.4rem;
    color: #2c2c2c; /* Neutral gray for subtitle */
    margin-bottom: 50px;
}

/* Links Grid (4 Cards) */
.sitemap-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: left;
}

/* Card Style */
.sitemap-block {
    background-color: #ffffff; /* White card background */
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(10, 40, 69, 0.1); /* Soft navy shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sitemap-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(10, 40, 69, 0.15); /* Stronger shadow on hover */
}

/* Card Heading */
.sitemap-block h2 {
    font-size: 1.8rem;
    color: #2b6f94; /* Mountain blue heading */
    margin-bottom: 15px;
    border-bottom: 2px solid #f5e9c9; /* Cream underline */
    display: inline-block;
    padding-bottom: 6px;
}

/* List */
.sitemap-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-block ul li {
    margin-bottom: 12px;
}

/* Links */
.sitemap-block ul li a {
    font-size: 1.1rem;
    color: #0a2845; /* Deep navy link color */
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.sitemap-block ul li a i {
    margin-right: 10px;
    font-size: 1rem;
    color: #2b6f94; /* Mountain blue icon */
    transition: color 0.3s ease;
}

.sitemap-block ul li a:hover {
    color: #2b6f94; /* Hover blue */
    transform: translateX(5px);
}

.sitemap-block ul li a:hover i {
    color: #f5e9c9; /* Cream icon on hover */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sitemap-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sitemap-links {
        grid-template-columns: 1fr;
    }

    .sitemap-block {
        padding: 25px;
    }

    .sitemap-title {
        font-size: 2.4rem;
    }

    .sitemap-subtitle {
        font-size: 1.2rem;
    }
}



/* FAQ Section – Edelweiss Lodge Ellicottville */
.faq-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8fafc, #ffffff); /* Soft neutral background */
    color: #0a2845; /* Deep navy text */
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Orbs */
.faq-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: #f5e9c9; /* Cream gold accent */
    border-radius: 50%;
    opacity: 0.25;
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 300px;
    height: 300px;
    background: #2b6f94; /* Mountain blue */
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

/* FAQ Container */
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* FAQ Title */
.faq-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0a2845; /* Deep navy */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Optional Subtitle */
.faq-subtitle {
    font-size: 1.4rem;
    color: #2c2c2c; /* Neutral gray */
    margin-bottom: 50px;
}

/* FAQ List Grid */
.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
}

/* FAQ Card */
.faq-item {
    background: #ffffff; /* White card */
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #f5e9c9; /* Cream gold border */
    box-shadow: 0 10px 25px rgba(10, 40, 69, 0.08); /* Soft navy shadow */
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 40, 69, 0.15);
}

/* FAQ Question */
.faq-item h2 {
    font-size: 1.8rem;
    color: #2b6f94; /* Mountain blue for headings */
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5e9c9; /* Cream gold underline */
}

/* FAQ Answer */
.faq-item p {
    font-size: 1.1rem;
    color: #2c2c2c; /* Neutral text color */
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Links */
.faq-item a {
    color: #0a2845; /* Deep navy */
    text-decoration: none;
    font-weight: bold;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.faq-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f5e9c9; /* Cream underline */
    transition: width 0.3s ease;
}

.faq-item a:hover {
    color: #2b6f94; /* Mountain blue on hover */
    transform: translateX(3px);
}

.faq-item a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .faq-title {
        font-size: 2.5rem;
    }

    .faq-item h2 {
        font-size: 1.6rem;
    }

    .faq-item p {
        font-size: 1rem;
    }
}

/* Supporting Text Styles */
.well {
    font-size: 19px;
    margin-bottom: 40px;
    color: #2b6f94; /* Mountain blue */
    text-decoration: none;
}

.well3 {
    font-size: 16px;
    margin-bottom: 40px;
    color: #0a2845; /* Deep navy */
    text-decoration: none;
}

.well5 {
    font-size: 19px;
    margin-bottom: 40px;
    color: #2b6f94; /* Mountain blue */
    text-decoration: none;
}

	

.common-hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px; /* Ensures a minimum height */
    width: 100%;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.common-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
    z-index: 1;
}

.common-hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    text-align: center;
}

.common-hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffcc00; /* Golden tone for title */
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

.common-hero-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.common-hero-button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    color: #05212B; /* Dark blue for button text */
    background-color: #ffcc00; /* Golden button background */
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.common-hero-button:hover {
    background-color: #e6b800; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 820px) {
    .common-hero-section {
        height: 350px;
margin-top:280px;		/* Reduced height for smaller screens */
    }
    .common-hero-title {
        font-size: 2rem;
    }

    .common-hero-description {
        font-size: 1rem;
    }

    .common-hero-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .common-hero-section {
        height: 350px; /* Reduced height for smaller screens */
    }
    .common-hero-title {
        font-size: 1.5rem;
    }

    .common-hero-description {
        font-size: 0.9rem;
    }

    .common-hero-button {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}

 /* Attraction Section */
.attraction-wrap {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  color: #0a2845;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main Container Card */
.attraction-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  background: #ffffff;
  border-radius: 15px;
  padding: 60px 50px;
  box-shadow: 0 10px 40px rgba(10, 40, 69, 0.1);
  gap: 50px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.attraction-box:hover {
  box-shadow: 0 15px 50px rgba(10, 40, 69, 0.15);
  transform: translateY(-5px);
}

/* Image Section (optional if you add an image later) */
.attraction-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.attraction-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(10, 40, 69, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(10, 40, 69, 0.2);
}

/* Text Content */
.attraction-content {
  flex: 1 1 550px;
  text-align: left;
}

/* Title */
.attraction-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #2b6f94;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.attraction-title::after {
  content: '';
  display: block;
  width: 90px;
  height: 4px;
  background-color: #f5e9c9;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Paragraph Text */
.attraction-content p {
  font-size: 1.1rem;
  color: #2c2c2c;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

/* CTA Button */
.attraction-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 36px;
  background: linear-gradient(90deg, #2b6f94 0%, #0a2845 100%);
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(10, 40, 69, 0.25);
  display: block;
  text-align: center;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

.attraction-btn:hover {
  background: linear-gradient(90deg, #0a2845 0%, #2b6f94 100%);
  color: #f5e9c9;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(10, 40, 69, 0.3);
}

.attraction-btn:active {
  transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 992px) {
  .attraction-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .attraction-content {
    text-align: center;
  }

  .attraction-content p {
    text-align: left;
  }

  .attraction-title {
    font-size: 2.3rem;
  }

  .attraction-title::after {
    margin: 10px auto;
  }
}

@media (max-width: 600px) {
  .attraction-btn {
    width: 100%;
    max-width: 100%;
  }
}


	
	
	
	/* Favicon-specific styles (optional and rarely needed) */
.favicon {
    width: 16px;
    height: 16px;
    display: inline-block;
    background-image: url('assets/images/favicon.png');
    background-size: cover;
}










/* Logo Section Styling */


/* Logo Link Styling */
.logo-link {
    text-decoration: none; /* Remove underline */
}

/* Overall Logo Text Styling */
.logo-text {
    font-family: 'Arial', sans-serif;
    font-weight: bold; /* Bold text */
    font-size: 6rem; /* Much larger text size for better visibility */
    color: #333; /* Dark grey color for text */
    letter-spacing: 5px; /* More spacing for a clean, modern look */
    text-transform: uppercase; /* Ensure the text is capitalized */
    display: inline-block;
    transition: all 0.3s ease;
    line-height: 1.2;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2); /* Soft shadow to make the text stand out */
}

/* Style for the top part - "EDELWEISS" */
.logo-top {
    display: block; /* Ensure "EDELWEISS" is on top */
    font-size: 4.5rem; /* Larger size for "EDELWEISS" */
    margin-bottom: 10px; /* Space between "EDELWEISS" and "LODGE" */
}

/* Style for the bottom part - "LODGE" */
.logo-bottom {
    display: block; /* Ensure "LODGE" is on the bottom */
    font-size: 3.5rem; /* Slightly smaller than "EDELWEISS" */
    margin-top: 10px;
}

/* Hover Effect */
.logo-text:hover {
    color: #f39c12; /* Gold color on hover to make it stand out */
    transform: scale(1.15); /* Increased zoom effect on hover for emphasis */
}

/* Responsiveness for Mobile, Tablet, PC, and all Devices */
@media (max-width: 768px) {
    .logo-text {
        font-size: 4rem; /* Slightly smaller on tablets */
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 3rem; /* Smaller for mobile screens */
    }
}

















