﻿ * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lora', serif;
}

body {
    background-color:#5941bd;
    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;
	text-decoration:none;
}

.top-right a:hover {
    color: #ffd700;
    transform: scale(1.1);
}

/* Logo Area */
.logo-area {
    position: relative;
    display: inline-block;
    padding: 7px;
    
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5), 0px 0px 15px rgba(255, 215, 0, 0.6); /* Dual shadows for depth */
    
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo-area:hover {
    transform: scale(1.2); /* Enlarges on hover */
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.7), 0px 0px 20px rgba(255, 215, 0, 0.9); /* Intense glow */
}

.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: 85px;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 20px 0;
    text-align: center;
	margin: 20px 0px 15px 0px;
}

.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: #ffd700;
}

/* 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:0px;
        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 */

/* Dropdown Menu */
.desktop-nav .dropdown {
    position: relative;
}

.desktop-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f4f4f4; /* Change this color to your preferred background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    z-index: 10;
	border-radius:5px;
}

.desktop-nav .dropdown-menu li {
    padding: 5px 20px;
}

.desktop-nav .dropdown-menu li a {
    text-decoration: none;
    color: #004d30;
    display: block;
}

.desktop-nav .dropdown-menu li a:hover {
    background-color: #004d30; 
	border-radius:5px;/* Optional hover background */
}

/* 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; /* Same as desktop dropdown */
    list-style: none;
    padding: 10px 0;
    margin: 0;
	border-radius:5px;
}

.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 */
}



/* SLIDER & BASE COLORS UPDATED TO MATCH SPARK BY HILTON */

.futuristic-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(to bottom, #532fa1, #3d1f7c);
}

.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);
}

/* DARK FADE OVERLAY ON ALL SLIDES */
.fade-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    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;
}

.content h1 {
    font-size: 3rem;
    color: #fddc00;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

.content p {
    font-size: 1.2rem;
    margin: 15px 0;
    color: #ffffff;
}

.cta-btn {
    padding: 10px 25px;
    color: #532fa1;
    background: #fddc00;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.3s ease, background 0.3s ease;
    font-size: 1rem;
    font-weight: bold;
}

.cta-btn:hover {
    transform: translateY(-3px);
    background: #ffeb3b;
}

/* NAVIGATION BUTTONS */
.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 3;
}

.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: #fddc00;
    color: #532fa1;
}

/* DOTS BELOW SLIDER */
.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #fddc00;
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
    .futuristic-slider {
        height: 50vh;
        margin-top: 300px;
    }

    .content h1 {
        font-size: 25px;
    }

    .content p {
        font-size: 15px;
    }

    .cta-btn {
        font-size: 0.9rem;
        padding: 8px 20px;
    }

    .slide {
        background-size: contain;
        background-repeat: no-repeat;
        height: 100%;
    }

    .dots {
        bottom: 15px;
    }

    .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: #fb8b03;
    margin-bottom: 15px;
	font-weight:bold;
}

.about-section h1 {
    font-size: 2.5rem;
    color: #18085e;
    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);
}

.about-text .read-more-content {
    display: none;
}

.about-text.expanded {
    max-height: none;
    overflow: visible;
}

.about-text.expanded .read-more-content {
    display: inline;
}

.read-more-btn {
    padding: 10px 20px;
        background: #fb8d13;
    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: var(--hover-color);
    border-color: var(--hover-color);
}

.read-more-content {
    display: none;
    margin-top: 20px;
}

.well2 {
    font-size: 1.3rem;
    color: #18085e;
    margin-top: 10px;
	font-weight:bold;
}

.read-more-content p {
    font-size: 1rem;
    margin-bottom: 15px;
}


: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(62 40 154);
    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 Slider Section */
.unique-room-slider {
    background: var(--light-gray);
    padding: 60px 20px;
    text-align: center;
}

.unique-slider-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #18085e;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Unique Room Cards */
.unique-rooms-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 0 auto;
    width: 90%;
}

.unique-room-card {
    display: flex;
    flex-direction: column;
    background: var(--background-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unique-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

/* Unique Room Image */
.unique-room-image img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #eaeaea;
}

/* Unique Room Details */
.unique-room-details {
    padding: 20px;
    text-align: left;
}

.unique1 {
    font-size: 1.5rem;
        color: #18085e;
    margin-bottom: 10px;
	font-weight:bold;
}

.unique-room-details .unique-price {
    font-size: 1.2rem;
   color: #f38912;
    font-weight: bold;
    margin-bottom: 15px;
}

.unique-room-details .unique-description {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.unique-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.unique-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.unique-features li em {
        color: #f38912;
    margin-right: 10px;
}

/* Unique Book Now Button */
.unique-book-btn {
    padding: 10px 20px;
    background: #f38912;
    
    color: #fff;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    text-align: center;
	text-decoration:none;
}

.unique-book-btn:hover {
    background: var(--hover-color);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .unique-rooms-container {
        grid-template-columns: 1fr;
    }

    .unique-room-details {
        text-align: center;
    }

    .unique-book-btn {
        width: 100%;
    }
}


: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: #f38912;
    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(62 40 154);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    animation: slideInFromLeft 1s ease-out;
}

.map-heading-modern {
    text-align: center;
    color: var(--modern-accent-color);
    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(62 40 154);
    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: var(--modern-accent-color);
    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: var(--modern-accent-color);
    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, #7862d0, #0f033e);
    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, #0b4fe1b8, #2196F3);
    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: #200784; /* 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, #f2f0f9); /* Light lavender background */
    text-align: center;
    color: #333; /* Neutral dark gray for text */
}

.new-facility-title {
    font-size: 3rem;
    color: #532fa1; /* Spark purple */
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
}

.new-facility-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #fddc00; /* Spark yellow accent */
    margin: 15px auto;
}

/* 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: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    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(0, 0, 0, 0.15);
}

/* Icon Background */
.icon-background {
    background: linear-gradient(145deg, #532fa1, #3d1f7c); /* Spark purple gradient */
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: #fff;
    position: relative;
    border-bottom: 5px solid #eee;
}

.facility-box-creative:hover .icon-background {
    background: linear-gradient(145deg, #3d1f7c, #fddc00); /* Purple to Yellow on hover */
    color: #532fa1;
}

/* Facility Information */
.facility-info {
    padding: 30px;
    text-align: center;
}

.facility-info h3 {
    font-size: 1.6rem;
    color: #532fa1; /* Spark purple */
    margin-bottom: 15px;
}

.facility-info p {
    font-size: 1.1rem;
    color: #444; /* Neutral gray for descriptions */
    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 - Spark by Hilton Themed */
.facility-section {
    padding: 60px 20px;
    background: #f7f5fb; /* Light lavender/gray background */
    text-align: center;
}

.facility-container {
    max-width: 1200px;
    margin: 0 auto;
}

.facility-title {
    font-size: 2.5rem;
    color: #532fa1; /* Spark purple for title */
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    font-weight: bold;
}

.facility-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #fddc00; /* Spark yellow underline */
    margin: 10px auto;
    border-radius: 2px;
}

/* Facilities Grid - 3 columns */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Facility Column */
.facility-column {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    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(83, 47, 161, 0.25); /* Subtle purple glow */
}

/* Facility Category Title */
.facility-column h3 {
    font-size: 1.6rem;
    color: #532fa1; /* Spark purple */
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #fddc00; /* Spark yellow */
    padding-bottom: 8px;
}

/* Facility List */
.facility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-list li {
    font-size: 1.1rem;
    color: #3d1f7c; /* Dark purple for text */
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.facility-list li em {
    font-size: 1.5rem;
    color: #532fa1; /* Spark purple icons */
    margin-right: 10px;
}

.facility-list li:hover {
    background-color: #ede5fb; /* Soft purple hover background */
    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;
    }
}



: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: #f7f5fb; /* Light lavender background */
    color: #333; /* Neutral text color */
    text-align: center;
}

/* Main Title Styling */
.main-title {
    font-size: 2.8rem;
    color: #532fa1; /* Spark purple */
    margin-bottom: 50px;
    position: relative;
    font-weight: bold;
    text-decoration: none;
}

.main-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #fddc00; /* Spark yellow 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: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    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(83, 47, 161, 0.2); /* Subtle purple glow */
}

.attraction-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.attraction-info {
    padding: 20px;
}

.attraction-info h3 {
    font-size: 1.8rem;
    color: #532fa1; /* Spark purple */
    margin-bottom: 10px;
    font-weight: bold;
}

.attraction-info p {
    font-size: 1.1rem;
    color: #444; /* Slightly lighter neutral */
}

.distance {
    font-size: 1rem;
    color: #fddc00; /* Spark yellow */
    margin-bottom: 15px;
}

/* What's Nearby List */
.section-title {
    font-size: 2.2rem;
    color: #532fa1; /* Spark purple */
    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: 20px;
}

.nearby-category h3 {
    font-size: 1.6rem;
    color: #532fa1; /* Spark purple */
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #fddc00; /* Spark yellow underline */
    padding-bottom: 5px;
}

.nearby-item {
    font-size: 1.2rem;
    color: #333;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.nearby-item i,
.nearby-item em {
    font-size: 1.8rem;
    color: #532fa1; /* Spark purple icons */
    margin-right: 10px;
}

/* 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: 30px 20px;
    background: linear-gradient(to bottom, #f5f5f5, #ffffff); /* Clean white/gray background */
    color: #333;
}

.futuristic-contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.futuristic-contact-info {
    flex: 1;
    color: #2d2d2d; /* Neutral dark for body text */
}

.futuristic-contact-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #4B2E83; /* Spark Purple */
    text-decoration: none;
    font-weight: bold;
}

.futuristic-info-block {
    margin-bottom: 30px;
}

.futuristic-info-block h2,
.futuristic-info-block h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #FFD100; /* Spark Yellow for headings */
}

.futuristic-info-block p {
    font-size: 1.2rem;
    margin: 5px 0;
    color: #4B2E83; /* Spark Purple text */
}

.futuristic-info-block a {
    color: #FFD100; /* Yellow links */
    text-decoration: none;
    font-weight: 500;
}

.futuristic-info-block a:hover {
    color: #f7b500; /* Deeper golden shade on hover */
}

/* Right Side: Image Styling */
.futuristic-image-block {
    flex: 1;
}

.contact-image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 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(0, 0, 0, 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.4rem;
    }

    .futuristic-info-block h2,
    .futuristic-info-block h3 {
        font-size: 1.5rem;
    }

    .futuristic-info-block p {
        font-size: 1rem;
    }
}
}
/* Reusable SEO Link Styles */
.seo-link {
    color: #05212B; /* Dark blue for the default text color */
    font-weight: bold;
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 2px solid transparent; /* Underline effect placeholder */
}

.seo-link:hover {
    color: #2B81A2; /* Gold color on hover */
    
     /* Subtle glowing effect */
	 text-decoration: none; 
}

/* Secondary Style for Different Contexts */
.seo-link-secondary {
    color: #2B81A2; /* Light blue for the default text color */
    font-weight: normal;
    border-bottom: 1px dashed #83SFC0; /* Dashed underline effect */
	 text-decoration: none; 
}

.seo-link-secondary:hover {
    color: #FF8C00; /* Orange color on hover */
    border-bottom-color: #FF8C00; /* Change dashed underline to orange */
    background-color: rgba(255, 140, 0, 0.1); /* Subtle background highlight */
    text-shadow: 0 0 6px rgba(255, 140, 0, 0.6); /* Slight glow effect */
	 text-decoration: none; 
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .seo-link,
    .seo-link-secondary,.seo-link2 {
        font-size: 1rem; /* Adjust font size for smaller screens */
    }

    .seo-link:hover,
    .seo-link-secondary:hover,.seo-link2:hover {
        text-shadow: none; /* Remove glow effect on smaller devices */
    }
}


/* Modern Location Section */
.modern-location-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background: #f7f5fb; /* Soft lavender / off‑white */
    color: #333; /* Neutral text */
}

.modern-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    background-color: #ffffff; /* White container */
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.location-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-title {
    font-size: 2.8rem;
    color: #532fa1; /* Spark purple */
    margin-bottom: 20px;
    text-transform: uppercase;
    text-decoration: none;
}

.location-description {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #444; /* Dark neutral for body text */
}

/* Coordinates Box */
.coordinates-box {
    background-color: rgba(83, 47, 161, 0.1); /* Very light purple tint */
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.coordinates-title {
    font-size: 1.8rem;
    color: #532fa1; /* Purple for section title */
    margin-bottom: 15px;
}

.coordinate {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #532fa1; /* Purple text */
}

.coordinate em {
    font-size: 24px;
    margin-right: 10px;
    color: #fddc00; /* Spark yellow icon */
}

/* Directions Form */
.directions-form {
    margin-top: 20px;
}

.input-field {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 2px solid #532fa1; /* Purple border */
    background-color: #ffffff;
    color: #333;
    font-size: 1rem;
}

.directions-btn {
    width: 100%;
    padding: 15px;
    background-color: #532fa1; /* Purple button */
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.directions-btn:hover {
    background-color: #3d1f7c; /* Darker purple on hover */
    color: #ffffff;
}

/* Right Side: Image */
.location-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-image .image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-image .image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-container {
        flex-direction: column;
        padding: 30px;
    }

    .location-image {
        margin-top: 30px;
    }
}

/* Default link style for .cgsl */
.cgsl {
    color: #005f3c; /* Deep green, matching the La Quinta color scheme */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Emphasize the link */
    transition: color 0.3s ease, text-decoration 0.3s ease; /* Smooth transition */
}

/* Hover effect for .cgsl */
.cgsl:hover {
    color: #ffb347; /* Gold for hover effect */
    text-decoration: None; /* Underline on hover */
}


/* Business Name Title */
.cgs2 {
    color: #fff; /* Spark deep purple for titles */
    font-size: 1.6rem;
    font-weight: bold;
	text-decoration:none;
}

/* General Text (description, address, phone) */
.gen {
    color: #fff; /* Neutral dark gray */
    font-size: 1rem;
    line-height: 1.6;
	text-decoration:none;
}

/* Phone Number Link Styling */
.gen a {
    color: #fddc00; /* Spark yellow */
    text-decoration: none;
    font-weight: 500;
	text-decoration:none;
}

.gen a:hover {
    color: #fff; /* Hover to deep purple */
  text-decoration:none;
}




/* Sitemap Section */
.sitemap-section {
    padding: 80px 20px;
    background: #f3f1f9; /* Light lavender/neutral background */
    color: #333333;
    text-align: center;
}

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-title {
    font-size: 3rem;
    color: #5A2D91; /* Spark purple */
    margin-bottom: 20px;
    font-weight: 700;
    text-decoration: none;
}

.sitemap-subtitle {
    font-size: 1.5rem;
    color: #7B4FA3; /* Lighter purple for subhead */
    margin-bottom: 50px;
}

.sitemap-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sitemap-block {
    background-color: #5A2D91; /* Solid Spark purple background */
    padding: 40px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sitemap-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.sitemap-block h2 {
    font-size: 1.8rem;
    color: #FFD700; /* Spark gold */
    margin-bottom: 15px;
}

.sitemap-block ul {
    list-style: none;
    padding: 0;
}

.sitemap-block ul li {
    margin-bottom: 15px;
}

.sitemap-block ul li a {
    font-size: 1.2rem;
    color: #ffffff; /* White for link text */
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.sitemap-block ul li a i {
    margin-right: 10px;
    font-size: 1rem;
    color: #FFD700; /* Spark gold chevron icon */
}

.sitemap-block ul li a:hover {
    color: #FFF176; /* Lighter gold hover */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sitemap-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sitemap-links {
        grid-template-columns: 1fr;
    }
}




/* FAQ Section with Spark Logo Colors */
.faq-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f9f6fd, #fffafc); /* Light lavender to soft cream */
    color: #5A2D91; /* Spark purple */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: #FFD700; /* Spark gold */
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: #5A2D91; /* Spark purple */
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-title {
    font-size: 3rem;
    font-weight: bold;
    color: #5A2D91; /* Spark purple */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-subtitle {
    font-size: 1.4rem;
    color: #555; /* Neutral gray for contrast */
    margin-bottom: 50px;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
}

.faq-item {
    background: #ffffff; /* Pure white background */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #FFD700; /* Spark gold border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.faq-item h2 {
    font-size: 1.8rem;
    color: #5A2D91; /* Spark purple */
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFD700; /* Spark gold underline */
}

.faq-item p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-item a {
    color: #5A2D91; /* Spark purple */
    text-decoration: none;
    font-weight: bold;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.faq-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700; /* Spark gold underline */
    transition: width 0.3s ease;
}

.faq-item a:hover {
    color: #FFD700; /* Gold on hover */
}

.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;
    }
}


.well {
	font-size: 19px;
	margin-bottom:40px;
	color:#000;
	text-decoration:none;
    }
.well3 {
	font-size: 16px;
	margin-bottom:40px;
	color:rgba(0, 77, 48, 0.85);
	text-decoration:none;
    }
	
.well5 {
	font-size: 19px;
	margin-bottom:40px;
	color: rgb(35 109 137);
	text-decoration:none;
    }
	
	

.common-hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 550px; /* 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-top: 120px;
    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;
    }
}

 /* Highlighted Attraction / Feature Section — Spark by Hilton Theme */
.highlighted-feature-section {
    padding: 80px 20px;
    background: #f7f5fb; /* very light lavender / off‑white */
    color: #333333;
    text-align: center;
}

.highlighted-feature-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 40px;
}

.feature-header {
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #ece6f9, #e1d2f5);
    border-radius: 15px;
}

.feature-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #5A2D91; /* Spark purple */
}

.feature-subtitle {
    font-size: 1.3rem;
    color: #7B4FA3; /* lighter purple accent */
}

.feature-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.feature-image {
    flex: 1;
    max-height: 300px;
    overflow: hidden;
}

.feature-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.feature-description {
    flex: 1;
    text-align: left;
}

.feature-description ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.feature-description ul li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #444;
    display: flex;
    align-items: flex-start;
}

.feature-description ul li strong {
    color: #5A2D91; /* purple for emphasis */
    margin-right: 8px;
}

.feature-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.feature-cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #5A2D91; /* Spark purple */
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.feature-cta-btn:hover {
    background: #3d1f7c; /* darker purple */
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .feature-content {
        flex-direction: column;
    }
    .feature-title {
        font-size: 2rem;
    }
    .feature-subtitle {
        font-size: 1.1rem;
    }
}

	
	
	
	/* 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;
}

