﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Rubik:wght@400;500;700&display=swap');

/* Reset & Base Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
background: linear-gradient(135deg, #2F5D9D, #4DB6AC, #FFB74D);
  color: #333;
}

h1, h2, h3, h4 {
  font-family: 'Rubik', sans-serif;
  color: #222;
}

/* ========== Topbar ========== */
.topbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 8px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(rgba(47, 93, 157, 0.85), rgba(47, 93, 157, 0.85)); /* soft overlay of deep blue */
  color: #fff;
  font-size: 16px;
  z-index: 999;
}

.topbar a {
  color: #fff;
  margin-right: 15px;
  text-decoration: none;
  transition: color 0.3s;
}

.topbar a:hover {
  color: #FFB74D; /* warm gold highlight */
}

.topbar-right span {
  margin-left: 20px;
  display: inline-block;
}

.topbar em {
  margin-right: 6px;
}
/* Regular Active */
.main-menu li a.active {
  color: #00A17A;
  font-weight: bold;
  position: relative;
}
.main-menu li a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00A17A;
}

/* Sticky Active */
.sticky-menu li a.sticky-active {
  color: #ff0000;
  font-weight: bold;
  position: relative;
}
.sticky-menu li a.sticky-active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FFD700;
}


/* Responsive Topbar Fix */
@media screen and (max-width: 991px) {
  .topbar {
    position: relative;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    gap: 8px;
	color: #fff;
   background-color: #fdfdfd;
  }
  .topbar a {
  color: #fff;

}

  .topbar-left {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
	
  }

  .topbar-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }

  .topbar-right span {
    margin: 0;
    font-size: 16px;
	
  }

  .topbar::after {
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin-top: 8px;
  }
}

/* Transparent Header - Screenshot Inspired */
.main-header.transparent-header {
  position: absolute;
  top: 20px;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 100px;
  width: auto;
}

.header-center .main-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.header-center .main-menu li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-center .main-menu li a:hover {
  color: #fffcfc;
}

.header-right {
  display: flex;
  align-items: center;
  color: #00e5a0; /* headset green */
  font-size: 15px;
  font-weight: 600;
  gap: 10px;
}

.header-right i {
  font-size: 30px;
}


.header-right a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 24px;
}

.header-right a:hover {
  color: #F00;
}
.main-menu li {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;   /* ✅ attach right below the parent link */
  left: 0;
  background: rgba(0, 0, 0, 0.85);
  padding: 10px 0;
  list-style: none;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  min-width: 200px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  display: block;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu li a:hover {
 color: #fff;
  border-radius: 4px;
}

/* ✅ Keep dropdown open when hovering over it */
.dropdown:hover .dropdown-menu {
  display: block;
    opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Sticky Header - Separate Styling */
.sticky-header {
  position: fixed;
  top: -100px;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 999;
  transition: top 0.4s ease-in-out;
  font-family: 'Montserrat', sans-serif;
  padding: 15px 0;
}

.sticky-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-logo {
  height: 60px;
  width: auto;
}

.sticky-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.sticky-menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sticky-menu li a:hover {
  color: #FFB74D;
}

.sticky-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-right i {
  color: #2F5D9D;
  font-size: 30px;
}

.sticky-right a {
  color: #2F5D9D;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

.sticky-right a:hover {
  color: #FFB74D;
}

/* --- Dropdown for Sticky Header --- */
.sticky-menu li {
  position: relative;
}

.sticky-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;  /* attaches directly below Things To Do link */
  left: 0;
  background: rgba(47, 93, 157, 0.95);
  padding: 10px 0;
  list-style: none;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  z-index: 1000;

  /* Optional: Smooth dropdown animation */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-dropdown-menu li {
  padding: 8px 20px;
}

.sticky-dropdown-menu li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  display: block;
  transition: all 0.3s ease;
}

/* Hover Effects */
.sticky-dropdown-menu li a:hover {
 
  color: #FFB74D;
  border-radius: 4px;
  padding-left: 25px; /* slight hover slide */
}

/* ✅ Show dropdown on hover */
.sticky-dropdown:hover .sticky-dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  font-size: 30px;
  color: #3366a6;
  z-index: 1001;
}

/* Slide-in Mobile Menu (Left - Brand Styled) */
.mobile-menu-left {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  max-width: 360px;
  height: 100vh;
  background: 
  linear-gradient(to bottom, rgba(47, 93, 157, 0.85), rgba(44, 106, 170, 0.9)),
  url('../images/new/sketch.png') no-repeat;
background-size: cover;
background-position: 7% center; /* move image left or right */

  color: #fff;
  z-index: 1000;
  transition: left 0.4s ease;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.mobile-menu-left.open {
  left: 0;
}

.mobile-menu-inner {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

/* Logo + Close */
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.mobile-header img {
  height: 90px;
}

.mobile-close {
  background: none;
  border: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* Navigation List */
.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.mobile-nav li {
  margin: 40px 0;
}

.mobile-nav li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.mobile-nav li a span {
  font-size: 20px;
  color: #FFB74D;
}

.mobile-nav li a:hover {
  color: #FFB74D;
}

/* CTA Section */
.mobile-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.book-btn {
  background: #FFB74D;
  padding: 14px;
  border-radius: 30px;
  color: #2F5D9D;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s;
}

.book-btn:hover {
  background: #ffc769;
}

.mobile-phone {
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.mobile-phone i {
  margin-right: 8px;
  color: #FFB74D;
}
/* Mobile Dropdown */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-menu {
  display: none;
  list-style: none;
  padding-left: 20px;
  margin-top: 10px;
  border-left: 2px solid rgba(255, 255, 255, 0.2);

 
  border-radius: 6px;
}

/* Show dropdown on hover */
.mobile-dropdown:hover .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown-menu li {
  margin: 15px 0;
}

.mobile-dropdown-menu li a {
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-dropdown-menu li a:hover {
  color: #FFB74D;
}

/* Optional: rotate chevron icon on hover */
.mobile-dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

/* Responsive Trigger */
@media (max-width: 1024px) {
  .mobile-toggle {
    display: block;
  }

  .main-header nav,
  .header-right,
  .sticky-header nav,
  .sticky-right {
    display: none !important;
  }
}

@media (max-width: 1024px) {
	
  .mobile-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 120px;
    z-index: 1001;
    font-size: 26px;
    background: none;
    border: none;
   
  }
.sticky-header {
  display: none !important;
}

  .main-header .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
	margin-top:60px;
	background:#fff;
  }

  .logo-img {
    height: 60px; /* smaller for mobile */
  }

  .header-center,
  .header-right {
    display: none;
  }

  .sticky-header .sticky-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }

  .sticky-logo {
    height: 50px;
  }

  .sticky-center,
  .sticky-right {
    display: none;
  }
}


/* ========== Hero Slider ========== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  background: #001f3f;
}

/* Overlay Text Wrapper */
.hero-overlay {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 8%;
}

/* Frosted Glass Text Box */
.hero-content {
  color: #fff;
  max-width: 650px;
  padding: 40px;
  border-radius: 20px;
 
 
}

/* Title */
.hero-content h1 {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

/* Description */
.hero-content p {
  font-size: 20px;
  margin: 20px 0 30px;
  color: #f0f0f0;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Call To Action Button */
.hero-btn {
  background: #8e44ad;
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(0, 229, 160, 0.5);
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #ffffff;
  color: #2f5d9d;
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.3);
}

/* ========== Background Slides ========== */
.hero-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Gradient Overlay on Each Slide */
.slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.45));
  z-index: 1;
}

@keyframes arrowPulseLeft {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-8px); }
}
@keyframes arrowPulseRight {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(8px); }
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;        /* No background */
  border: none;
  font-size: 50px;
  color: #fff;                    /* Pure white arrow */
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.hero-slider:hover .nav {
  opacity: 1;
}

.nav.prev {
  left: 30px;
}
.nav.next {
  right: 30px;
}

/* Hover pulse */
.nav.prev:hover {
  animation: arrowPulseLeft 1s ease-in-out infinite;
}
.nav.next:hover {
  animation: arrowPulseRight 1s ease-in-out infinite;
}



/* ========== Responsive ========== */
@media (max-width: 768px) {
	.hero-slider {
 
  height: 50vh;
 
}
  .hero-content {
    padding: 30px 25px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-overlay {
    padding-left: 0;
    justify-content: center;
  }

  .nav {
    padding: 10px 0px;
    font-size: 34px;
  }

  .hero-btn {
    padding: 10px 24px;
    font-size: 15px;
  }
}
.reservation-bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -70px;
  z-index: 10;
  background: #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  width: 85%;
  max-width: 1400px;
  
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
}

.reservation-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.res-field {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
  padding: 0 15px;
  border-right: 1px solid #eee;
  min-width: 180px;
}

.res-field:last-of-type {
  border-right: none;
}

.res-field em {
  font-size: 20px;
  color: #2F5D9D;
}

.res-field .label {
  font-size: 18px;
  color: #555;
  text-transform: uppercase;
  font-weight: 600;
}

/* ✅ Style date inputs & selects the same */
.date-input {
  border: none;
  background: none;
  font-size: 18px;
  font-weight: 600;
  color: #233153;
  cursor: pointer;
  padding: 6px 0;
  width: 100%;
  appearance: none; /* hides default arrow for select/date in Chrome */
}

.date-input:focus {
  outline: none;
}

/* ✅ Add small arrow for select fields only */
select.date-input {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140 140"><polygon points="0,0 140,0 70,90" fill="%23666"/></svg>') no-repeat right 10px center;
  background-size: 12px;
  padding-right: 24px;
}

.res-btn {
  background: #232224;
  color: #fff;
  padding: 16px 32px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
}

.res-btn:hover {
  background: #F00;
  box-shadow: 0 6px 18px rgba(0, 229, 160, 0.4);
}

/* ✅ Mobile Styles */
@media (max-width: 1024px) {
  .reservation-bar {
    position: relative !important;
    left: 0 !important;
    transform: none !important;
    bottom: 0 !important;
    margin: 30px auto 0;
    width: 95%;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    gap: 16px;
  }

  .reservation-bar .container {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .res-field {
    flex: 1 1 100%;
    border: none;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  .res-btn {
    flex: 1 1 100%;
    margin-top: 20px;
    font-size: 16px;
  }
}



.accessibility-banner {
  background: linear-gradient(to right, #233153, #2F5D9D); /* Deep blue gradient */
  color: #fff6e6;
  text-align: center;
  padding: 12px 20px;
  font-size: 20px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
     border-top: 3px solid #ff5454;
    border-bottom: 3px solid #d2d2d0;
}


.accessibility-banner a {
  color: #fff; /* Gold tone */
  font-weight: 700;
  text-decoration: none;
  margin-left: 6px;
}

.accessibility-banner a:hover {
  text-decoration: underline;
}

.accessibility-banner em {
  color: #fff;
  margin-left: 8px;
  margin-right: 4px;
}

.welcome-section {
  padding: 80px 0;
  background: #fdfdfd;
  font-family: 'Montserrat', sans-serif;
}

.container.welcome-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.welcome-image {
  flex: 1;
  max-width: 50%;
}

.welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.welcome-text {
  flex: 1;
  max-width: 50%;
}

.subheading {
  font-size: 16px;
  font-weight: 600;
  color: #00e5a0;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.welcome-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: #233153;
  margin: 20px 0 16px;
}

.welcome-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 32px;
  background: #8e44ad;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.cta-btn:hover {
  background: #732d91;
  transform: translateY(-2px);
}


/* Smooth transition styles */
.welcome-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.6s ease-in-out;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.welcome-image {
  flex: 1;
  max-width: 50%;
  opacity: 1;
  transition: all 0.6s ease-in-out;
}

.welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.welcome-text {
  flex: 1;
  max-width: 50%;
  transition: all 0.6s ease-in-out;
}

/* Expanded State */
.welcome-section.expanded .welcome-image {
  max-width: 0;
  opacity: 0;
  visibility: hidden;
}

.welcome-section.expanded .welcome-text {
  max-width: 100%;
  flex: 1 1 100%;
}

.readmore-content {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.readmore-content.show {
  display: block;
  opacity: 1;
}

.cta-btn {
  margin-top: 24px;
  padding: 14px 32px;
  background: #F00;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.read-less-btn {
  background: #2F5D9D;
  margin-top: 20px;
}
.read-less-btn:hover {
  background: #244f85;
}
@media (max-width: 992px) {
  .container.welcome-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 0 20px;
  }

  .welcome-image {
    max-width: 100%;
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 0.3s ease;
  }

  .welcome-image img {
    height: auto;
    border-radius: 8px;
  }

  .welcome-text {
    max-width: 100%;
    width: 100%;
    transition: all 0.3s ease;
  }

  .subheading {
    font-size: 14px;
  }

  .welcome-text h2 {
    font-size: 28px;
  }

  .welcome-text p,
  .readmore-content p {
    font-size: 16px;
    line-height: 1.5;
  }

  .cta-btn,
  .read-less-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }

  .readmore-content {
    margin-top: 16px;
  }
}

/* Section Styling */
.amenities-section {
  padding: 30px 20px;
  background-color: #fdfdfd;
  text-align: center;
}

.section-title h2 {
  font-size: 40px;
 
   color: #ff0101;
 font-weight: 800;
  text-transform: uppercase;
}

.subheading {
  font-size: 14px;
  color: #00A17A;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

 .section-description {
  font-size: 19px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}


/* Grid Layout */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Amenity Cards */
.amenity-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  transition: transform 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  position: relative;
}

.amenity-card:hover {
  transform: translateY(-8px);
}

/* Icon Wrapper with Bubble Shape */
.icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50% 45% 40% 55% / 60% 55% 45% 50%;
  background: transparent;
  border: 2px solid currentColor;
  transition: all 0.4s ease;
}

/* Faded Large Icon */
.faded-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 58px;
  color: currentColor;
  opacity: 0.08;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: all 0.4s ease;
}

/* Solid Small Icon */
.solid-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 40px;
  color: currentColor;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.4s ease;
}

.amenity-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
  font-weight:500;
}

.amenity-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* --- Original Amenity Colors --- */

/* Gold */
.amenity-card.gold .solid-icon { color: #FFD700; }
.amenity-card.gold .faded-icon { color: rgba(255, 215, 0, 0.1); }

/* Deep Blue */
.amenity-card.deepblue .solid-icon { color: #00408B; }
.amenity-card.deepblue .faded-icon { color: rgba(0, 64, 139, 0.1); }

/* Teal Green */
.amenity-card.tealgreen .solid-icon { color: #008080; }
.amenity-card.tealgreen .faded-icon { color: rgba(0, 128, 128, 0.1); }

/* Lavender */
.amenity-card.lavender .solid-icon { color: #967BB6; }
.amenity-card.lavender .faded-icon { color: rgba(150, 123, 182, 0.1); }


/* --- New Amenity Colors --- */

/* Coral */
.amenity-card.coral .solid-icon { color: #FF7F50; }
.amenity-card.coral .faded-icon { color: rgba(255, 127, 80, 0.1); }

/* Forest Green */
.amenity-card.forestgreen .solid-icon { color: #228B22; }
.amenity-card.forestgreen .faded-icon { color: rgba(34, 139, 34, 0.1); }

/* Slate Blue */
.amenity-card.slateblue .solid-icon { color: #6A5ACD; }
.amenity-card.slateblue .faded-icon { color: rgba(106, 90, 205, 0.1); }

/* Ruby Red */
.amenity-card.rubyred .solid-icon { color: #9B111E; }
.amenity-card.rubyred .faded-icon { color: rgba(155, 17, 30, 0.1); }

/* Hover Effect */
.amenity-card:hover .solid-icon {
  transform: translate(-50%, -55%) scale(1.1);
  color: #000;
}

.amenity-card:hover .faded-icon {
  opacity: 0.30;
}





.attractions-section {
  padding: 30px 20px;
  font-family: 'Montserrat', sans-serif;
  background: #f8f9fc;
  position: relative;
  overflow: hidden;
}

.attractions-container {
  max-width: 1500px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.attractions-description {
  flex: 1;
  text-align: left;
}

.attractions-description .subheading {
  font-size: 14px;
  color: #00A17A; /* Teal Green */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-weight: 600;
}

.attractions-description h2 {
  font-size: 36px;
  color: #233153; /* Deep Blue */
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.attractions-description p {
  font-size: 20px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 28px;
}

.btn-primary {
  display: inline-block;
  background:#f42929;
  color: #fff;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
  font-weight: 600;
}
.btn-primary:hover {
  background: #004986;
}

/* Attraction Grid */
.attractions-grid {
  flex: 1;
  display: flex;
  gap: 20px;
  position: relative;
}

.attractions-grid .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.attraction-card {
  position: relative;
  width: 100%;
  padding-top: 120%;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.attraction-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 161, 122, 0.4);
}

/* Card Label Overlay */
.card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 183, 77, 0.95); /* Golden Accent */
  color: #233153;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 16px;
  text-align: left;
}

/* Custom stagger spacing */


.col-right .card-3 {
  margin-top: 80px;
}

/* Decorative background flare */
.attractions-container::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle at center, rgba(0, 161, 122, 0.1), transparent);
  z-index: 0;
  pointer-events: none;
}
/* Background Images for Attraction Cards */
.card-1 {
  background-image: url('../images/attraction2.jpg'); /* Hollywood Casino Columbus */
}
.card-2 {
  background-image: url('../images/attraction4.jpg'); /* Columbus Zoo & Aquarium / Scioto Grove Metro Park */
}
.card-3 {
  background-image: url('../images/attraction3.jpg'); /* Ohio Stadium */
}
.card-4 {
  background-image: url('../images/attraction1.jpg'); /* Optional Fourth Image */
}

/* Responsive */
@media (max-width: 992px) {
  .attractions-container {
    flex-direction: column;
    align-items: center;
  }
  .attractions-grid {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 15px;
  }
  .attractions-grid .col {
    flex: 1 1 calc(50% - 15px);
  }
  .col-left .card-2,
  .col-right .card-3 {
    margin-top: 20px;
  }
  .btn-primary {
    width: 100%;
    text-align: center;
  }
  .attractions-description {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .attraction-card {
    padding-top: 60%;
  }
}
.rooms-section {
  padding: 30px 20px;
  background: #f8f9fc;
  font-family: 'Montserrat', sans-serif;
  color: #233153;
  text-align: center;
  position: relative;
}

.section-header .subheading {
  font-size: 14px;
  color: #00A17A;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
}
.section-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}
.section-header p {
  font-size: 20px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
}

.rooms-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.room-card {
  display: flex;
  flex: 1 1 45%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
  max-width: 520px;
  z-index:1;
}
.room-card:hover {
  transform: translateY(-8px);
}

.room-img {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-card:hover .room-img img {
  transform: scale(1.05);
}

/* Diagonal style */
.room-img.diag-left {
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}
.room-img.diag-right {
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.room-content {
  flex: 1;
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.room-content h4 {
  font-size: 24px;
  margin-bottom: 15px;
}
.room-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}
.room-features li {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.room-features li em {
  margin-right: 10px;
  color:#8e44ad;
}

.btn-room {
  background: #09090a;
  color: #fff;
  padding: 10px 26px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-room:hover {
  background: #F00;
}
.rooms-section::before {
  content: '';
  position: absolute;
  bottom: 1%;
  right: 0;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle at center, rgba(0, 161, 122, 0.1), transparent);
  z-index: 0;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {
  .rooms-row {
    flex-direction: column;
    align-items: center;
  }
  .room-card {
    flex-direction: column;
    max-width: 100%;
  }
  .room-img.diag-left,
  .room-img.diag-right {
    clip-path: none;
  }
}


.explore-section {
  padding: 30px 20px;
  background: #fdfdfd;
  font-family: 'Montserrat', sans-serif;
}

.section-header.center-align {
  text-align: center;
  margin-bottom: 40px;
}

.section-header .subheading {
  font-size: 14px;
  color: #00A17A;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 32px;
  color: #233153;
  font-weight: 700;
}

.explore-container {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
  
}

.explore-half {
  flex: 1 1 300px;
}

.iframe-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 992px) {
  .explore-container {
    flex-direction: column;
    gap: 30px;
  }
  

}
.coming-soon-box {
  background: #ffffff;
  border: 2px dashed #00A17A;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  color: #233153;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.coming-soon-box em {
  font-size: 90px;
  color:#8e44ad;
  margin-bottom: 16px;
}

.coming-soon-box h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.coming-soon-box p {
  font-size: 18px;
  color: #666;
  max-width: 400px;
  margin: 0 auto;
}
.footer-section {
  background: linear-gradient(to right, #233153, #2F5D9D); /* Deep Blue gradient */
  color: #F9F9F9;
  padding: 80px 25px 60px;
  position: relative;
  overflow: hidden;
  font-size:18px;
   line-height: 1.6;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('../images/new/sketch.png') no-repeat center center/cover;
  opacity: 0.06;
  z-index: 0;
}

.footer-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
}

/* Top Area */
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 2px solid #FFB74D;
  padding-bottom: 25px;
}
.footer-logo-img {
  height: 100px;
  filter: drop-shadow(0 0 4px #FFB74D);
}
.footer-social a {
  margin: 0 12px;
  font-size: 1.5rem;
  color: #fff;
  transition: 0.3s ease;
}
.footer-social a:hover {
  color: #8E44AD;
  transform: scale(1.2);
}

/* Middle Area */
.footer-middle {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
  gap: 50px;
  flex-wrap: wrap;
}
.footer-address,
.footer-links {
  flex: 1;
  min-width: 280px;
}
.footer-hotel-name {
  font-size: 1.8rem;
  color: #ffb1b1;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  text-decoration:none;
}
.footer-description {
  font-size: 17px;
  line-height: 1.6;
  color: #E0E0E0;
}
.footer-links h3 {
  
  margin-bottom: 10px;
  font-weight: 600;
  color:#FFFFFF;
}
.footer-links ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.footer-links ul li a {
  color: #FFFFFF;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links ul li a:hover {
  color: #00E5A0;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 30px;
  color: #fff;
}
.footer-bottom a {
  color: #fff;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #F9F871;
}

/* Phone & Website Links */
.footer-phone-link,
.footer-link {
  color: #ffeb00;
  text-decoration: none;
  font-weight: 500;
}
.footer-phone-link:hover,
.footer-link:hover {
  color: #F9F871;
}

/* Icon consistency */
.footer-description em,
.footer-address em {
  color: #FFD369;
  margin-right: 6px;
}

/* Link dots */
.footer-links ul li {
  position: relative;
  padding-left: 25px;
}
.footer-links ul li::before {
  content: '\f111';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 0.5rem;
  color: #ffeb00;
}

/* Scroll Animations */
.footer-section.animate-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: none;
}
.footer-section.footer-in {
  animation: fadeInUp 0.8s ease forwards;
}
.footer-section.footer-out {
  animation: fadeOutDown 0.6s ease forwards;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeOutDown {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(60px); }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top,
  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-links ul {
    grid-template-columns: 1fr 1fr;
  }
  .footer-social {
    margin-top: 20px;
  }
  .footer-address,
  .footer-links {
    text-align: left;
  }
  .footer-logo-area {
    margin-bottom: 20px;
  }
}





.hotelamenities-section {
  background: white;
  padding: 60px 20px;
  font-family: 'Montserrat', sans-serif;
  color: #233153;
}

.hotelamenities-container {
  max-width: 1400px;
  margin: auto;
}

.hotelamenities-header {
  text-align: center;
  margin-top: 50px;
}

.hotelamenities-subtitle {
  font-size: 17px;
  color: #00A17A;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.hotelamenities-title {
  font-size: 40px;
  margin: 10px 0;
  font-weight: 700;
  color: #ff0101;
}

.hotelamenities-desc {
  font-size: 18px;
  color: #555;
  max-width: 1500px;
  margin: 0 auto;
  line-height: 1.6;
}

.hotelamenities-block {
  margin-bottom: 60px;
}

.hotelamenities-heading {
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 600;
  color: #233153;
  position: relative;
  text-align:left;
}

.hotelamenities-heading.accessible {
  color: #8E44AD;
}

.hotelamenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px 30px;
  list-style: none;
  padding: 0;
}

.hotelamenities-grid li {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  font-size: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hotelamenities-grid li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hotelamenities-grid li em {
  color: #00A17A;
  margin-right: 12px;
  font-size: 18px;
}

.hotelamenities-heading.accessible + .hotelamenities-grid li em {
  color: #8E44AD;
}

@media (max-width: 768px) {
  .hotelamenities-title {
    font-size: 26px;
  }

  .hotelamenities-heading {
    font-size: 20px;
  }

  .hotelamenities-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero Section */
.innerhero-section {
  position: relative;
  width: 100%;
  height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.innerhero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 76, 117, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 1;
}
.innerhero-overlay {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
  z-index: 2;
}
.innerhero-content {
  color: #fff;
  max-width: 1200px;
}
.innerhero-content h5 {
  font-size: 18px;
  color: #FFD369;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.innerhero-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  text-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

/* ✅ Inner Reservation Bar Container */
.inner-reservationbar {
  background: #fff;
  margin: -70px auto 40px;
  padding: 30px 20px;
  width: 90%;
  max-width: 1300px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  font-family: 'Montserrat', sans-serif;
  position: relative;
  z-index: 5;
}

/* ✅ Layout for Inner Reservation Elements */
.innerres-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ✅ Each field block */
.innerres-field {
  flex: 1;
  min-width: 180px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

/* ✅ Icons above labels */
.innerres-field em {
  font-size: 20px;
  color: #2F5D9D;
}

/* ✅ Labels (CHECK-IN, CHECK-OUT, etc.) */
.innerres-label {
  font-size: 16px;
  color: #555;
  font-weight: 600;
  text-transform: uppercase;
}

/* ✅ Inputs (date + select share this style) */
.innerres-input {
  border: none;
  background: none;
  font-size: 18px;
  font-weight: 600;
  color: #233153;
  padding: 6px 5px;
  cursor: pointer;
  width: 100%;
 }

/* ✅ Remove blue outline when focused */
.innerres-input:focus {
  outline: none;
}

/* ✅ Custom arrow ONLY for select dropdowns */
select.innerres-input {
  appearance: none; /* removes browser’s default arrow */
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140 140"><polygon points="0,0 140,0 70,90" fill="%23233153"/></svg>') no-repeat right 10px center;
  background-size: 12px;
  padding-right: 24px; /* gives room for arrow */
}

/* ✅ No custom arrow for date inputs (keep native icon) */
input[type="date"].innerres-input {
  appearance: auto; /* keeps browser native calendar icon */
}

/* ✅ Button Styling */
.innerres-btn {
  background: #8e44ad;
  color: #fff;
  padding: 16px 32px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
}

.innerres-btn:hover {
  background: #00c391;
  box-shadow: 0 6px 18px rgba(0, 229, 160, 0.4);
}

/* ✅ Responsive (Tablet/Mobile) */
@media (max-width: 1024px) {
  .inner-reservationbar {
    margin: 30px auto;
    padding: 25px 15px;
    width: 95%;
    border-radius: 12px;
  }

  .innerres-container {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .innerres-field {
    width: 100%;
    min-width: unset;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
  }

  .innerres-btn {
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    padding: 14px;
  }

  .innerres-label {
    font-size: 14px;
  }

  .innerres-input {
    font-size: 16px;
  }
}

.thingsdo-section {
  background: #f8f9fc;
  padding: 100px 20px;
  font-family: 'Montserrat', sans-serif;
  color: #233153;
  margin-top:-115px;
}
.thingsdo-container {
  max-width: 1300px;
  margin: auto;
}
.thingsdo-header {
  text-align: center;
  margin-bottom: 60px;
}
.thingsdo-subtitle {
  font-size: 17px;
  text-transform: uppercase;
  color: #00A17A;
  font-weight: 600;
  letter-spacing: 1.5px;
}
.thingsdo-title {
  font-size: 40px;
  font-weight: 700;
  margin: 10px 0;
}
.thingsdo-desc {
  font-size: 18px;
  color: #555;
  max-width: 1500px;
  margin: 0 auto;
  line-height: 1.7;
}

.thingsdo-cards-grid {
	
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}
.thingsdo-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease-in-out;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.thingsdo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}
.icon-circle {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #00A17A;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.card-culture .icon-circle { background: #2F5D9D; }
.card-dining .icon-circle { background: #F39C12; }
.card-airport .icon-circle { background: #8E44AD; }

.card-content h4 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 600;
}
.card-content ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.card-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 19px;
  color: #444;
}
.card-content ul li::before {
  content: '\f111';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 6px;
  color: #00A17A;
}
@media (max-width: 768px) {
  .thingsdo-title {
    font-size: 28px;
  }
  .thingsdo-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .icon-circle {
    margin-bottom: 12px;
  }
}
.thingsdo-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .thingsdo-cards-grid {
    grid-template-columns: 1fr;
  }
}


.locationpage-header-section {
  background: #f8f9fc;
  padding: 100px 20px;
  margin-top: -115px;
}

.locationpage-header {
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
}

.location-subtitle {
  font-size: 17px;
  text-transform: uppercase;
  color: #00A17A;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.location-title {
  font-size: 40px;
  font-weight: 700;
  margin: 10px 0;
  color: #233153;
}

.location-desc {
  font-size: 18px;
  color: #555;
  max-width: 1250px;
  margin: 0 auto;
  line-height: 1.7;
}


.location-section-hero {
  background: #f8f9fc;
 padding: 30px 20px;
 margin-top:-60px;
}

.location-wrapper-hero {
  max-width: 1300px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  overflow: hidden;
}

.location-info-box {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info-box h2 {
  font-size: 2.4rem;
  color: #ff0101;
  margin-bottom: 15px;
  font-weight: 700;
}

.location-info-box p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
}

.coordinates-area,
.directions-area {
  background: #ecf3f9;
  padding: 20px;
  border-left: 5px solid #ffcf38;
  margin-bottom: 25px;
  border-radius: 10px;
}

.coordinates-area h4,
.directions-area h4 {
  color: #ff0101;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.coordinates-area ul {
  list-style: none;
  padding-left: 0;
  color: #333;
}

.coordinates-area ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.directions-area form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.directions-area form button {
  width: 100%;
  padding: 12px;
  background: #ff0101;
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.3s;
  font-weight: 600;
}

.directions-area form button:hover {
  background: #ffb1b1;
}

/* Map */
.location-map-box {
  flex: 1;
  background: #e4edf2;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .location-wrapper-hero {
    flex-direction: column;
  }

  .location-map-box {
    height: 300px;
  }
}

/* Enhanced CSS with improved aesthetics and responsiveness */

/* --- General & Desktop Styles --- */

/* Main Wrapper for the entire component */
.contact-page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px;
    margin-top: -40px; /* Kept as per original code */
}

/* Top Section: 3 distinct containers */
.contact-top-section {
    display: flex;
    justify-content: center; /* Use center for better alignment when wrapping */
    gap: 25px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1 1 300px; /* Allow cards to grow, shrink, and set a base width */
    max-width: 400px; /* Prevent cards from getting too wide on large screens */
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #ff0101;
    transition: width 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.info-card:hover::before {
    width: 8px;
}

.info-card .icon {
    font-size: 2rem;
    color: #ff0101;
    width: 70px;
    height: 70px;
    flex-shrink: 0; /* Prevent icon from shrinking */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.info-card:hover .icon {
    background: rgba(74, 144, 226, 0.2);
    transform: scale(1.1);
}

.info-card .text {
    flex: 1;
}

.info-card h4 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.info-card p,
.info-card a {
    margin: 0;
    font-size: 1.05rem;
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-word; /* Prevents long text like emails from overflowing */
}

.info-card a:hover {
    color: #4a90e2;
}

/* Section Headings */
.section-heading {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-heading h2 {
    font-size: 2.2rem;
    color: #ff0101;
    margin-bottom: 10px;
    display: inline-block;
}

.section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ffb1b1;
    margin: 0 auto;
    border-radius: 2px;
}

/* Bottom Section: Image and Map containers */
.contact-bottom-section {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.image-container {
    flex: 1 1 50%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover .contact-image {
    transform: scale(1.05);
}

.map-container {
    flex: 1 1 50%;
    min-height: 500px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 144, 226, 0.03);
    pointer-events: none;
    z-index: 1;
    transition: background 0.3s ease;
}

.map-container:hover::before {
    background: rgba(74, 144, 226, 0);
}

/* --- Responsive Design --- */

/* For smaller Desktops and large Tablets */
@media (max-width: 1024px) {
    .contact-bottom-section {
        flex-direction: column; /* Stack image and map vertically */
    }

    .image-container, .map-container {
        min-height: 400px; /* Reduce height for stacked layout */
    }
}

/* For standard Tablets */
@media (max-width: 768px) {
    .contact-page-wrapper {
        gap: 30px;
        padding: 15px;
    }

    .info-card {
        flex-basis: 100%; /* Each card takes full width, creating a single column */
        max-width: 100%;
    }

    .section-heading h2 {
        font-size: 2rem;
    }
}

/* For Mobile Phones */
@media (max-width: 576px) {
    .section-heading h2 {
        font-size: 1.8rem;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .info-card .icon {
        margin-bottom: 15px; /* Increase space between icon and text */
    }

    .image-container, .map-container {
        min-height: 250px; /* Further reduce height for mobile screens */
    }

    .map-container iframe {
    width: 100%;
    height: 320px;
    border: none;

}

}




/* 🌐 Sitemap Section – Days Inn Grove City */
.sitemap-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f8f9fc, #ffffff);
    text-align: center;
    margin-top:-115px;
}

.sitemap-container {
    max-width: 1250px;
    margin: 0 auto;
}

.sitemappage-header {
  text-align: center;
  margin-bottom: 60px;
}

.sitemap-subtitle {
  font-size: 17px;
  text-transform: uppercase;
  color: #00A17A;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.sitemap-title {
  font-size: 40px;
  font-weight: 700;
  margin: 10px 0;
  color: #233153;
}

.sitemap-desc {
  font-size: 18px;
  color: #555;
  max-width: 1250px;
  margin: 0 auto;
  line-height: 1.7;
}


.sitemap-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.sitemap-block {
    background: #fff;
    border-radius: 14px;
    padding: 35px 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sitemap-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.sitemap-block h2 {
    font-size: 22px;
    font-weight: 600;
    color: #00A17A;
    margin-bottom: 20px;
}

.sitemap-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-block ul li {
    margin-bottom: 14px;
}

.sitemap-block ul li a {
    font-size: 20px;
    color: #2F5D9D;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.sitemap-block ul li a em {
    margin-right: 10px;
    color: #00A17A;
    font-size: 14px;
}

.sitemap-block ul li a:hover {
    color: #004870;
}

/* 📱 Responsive */
@media (max-width: 1024px) {
    .sitemap-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sitemap-links {
        grid-template-columns: 1fr;
    }

    .sitemap-title {
        font-size: 28px;
    }

    .sitemap-subtitle {
        font-size: 16px;
    }
}




/* ✅ FAQ Section – Days Inn Grove City Theme */
.faq-section {
  padding: 0px 20px;
  padding-bottom: 80px;
  background: white; /* Layout-matching soft background */
  color: #1a1a1a;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.faq-title {
  margin-bottom: 50px;
}


.faq-title a {
  font-size: 3rem;
  font-weight: 700;
  color: #233153; /* Main Heading Color */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
}

.faq-subtitle {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 50px;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: left;
}

.faq-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e0ebef;
  box-shadow: 0 8px 20px rgba(35, 49, 83, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(35, 49, 83, 0.12);
}

.faq-item h2 {
  font-size: 1.8rem;
  color: #ff0101;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px dashed #FFD369; /* Yellow-Gold underline */
}

.faq-item p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.75;
  margin-bottom: 10px;
}

.faq-item a {
  color: #00A17A; /* Accent Green */
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.faq-item a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FFD369;
  transition: width 0.3s ease;
}

.faq-item a:hover {
  color: #FFD369;
}

.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.5rem;
  }

  .faq-item p {
    font-size: 1rem;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  max-width: 900px;
  width: calc(100% - 40px);
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.6s ease, opacity 0.6s ease;
  font-family: 'Montserrat', sans-serif;
  z-index: 10000;
}
.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-icon {
  width: 28px;
  height: 28px;
}
.cookie-text {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}
.cookie-text a {
  color: #00A17A;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
}
.btn-decline {
  background: #eee;
  color: #555;
}
.btn-decline:hover {
  background: #ddd;
}
.btn-accept {
  background: #00A17A;
  color: #fff;
}
.btn-accept:hover {
  background: #008765;
}
.cookie-btn:active {
  transform: scale(0.95);
}

/* Mobile responsiveness */
@media (max-width:600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-buttons {
    justify-content: center;
    margin-top: 12px;
  }
}
#backToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: transparent;
  color: #FFD700;
  
  border: 2px solid #FFD700;
  font-size: 40px;
  padding: 12px 16px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  animation: floatUpDown 2s ease-in-out infinite;
}

#backToTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#backToTopBtn:hover {
  background: rgba(0, 161, 122, 0.1);
  color: #FFD700;
  border-color: #FFD700;
  transform: scale(1.1);
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}


.attraction-wrap {
  padding: 100px 20px;
  background-color: white; /* Light gray background to match section styles */
  margin-top: -100px;
}

.attraction-box {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
}

.attraction-image {
  flex: 1 1 400px;
}

.attraction-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.attraction-content {
  flex: 1 1 600px;
}

.attraction-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #002643; /* Dark navy blue */
  margin-bottom: 20px;
}

.attraction-content p {
  font-size: 1rem;
  color: #444444; /* Dark gray for readability */
  line-height: 1.7;
  margin-bottom: 15px;
}

.attraction-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #8e44ad; /* Main CTA blue */
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.attraction-btn:hover {
  background-color: #00e5a0; /* Darker blue for hover effect */
}



/* =================================================================
   Global Variables & Consolidated "Attractions" Styles
   ================================================================= */

:root {
    --primary-color: rgb(30, 58, 138);
    --accent-color: #fbdf4a;
}

/* =========================================
 *  Nearby Attractions Section
 * ========================================= */

.attractions-container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 40px 20px;
    background-color: white;
}

.attractions-container .category {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 1;
}

.attractions-container .category:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.attractions-container .category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 4px solid var(--accent-color);
}

.attractions-container .category-header {
    padding: 20px;
    background-color: #ff0101;
    color: white;
    text-align: center;
}

.attractions-container .category-header h2, .title2 {
    color: white;
    margin: 0;
    font-size: 24px;
}

.attractions-container .attraction-list {
    padding: 20px;
}

.attractions-container .attraction {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.attractions-container .attraction:last-child {
    border-bottom: none;
}

.attractions-container .attraction-info {
    flex: 1;
}

.attractions-container .attraction-name, .title3-attraction {
    margin-bottom: 4px;
    font-size: 16px;
    color: #333;
}

.attractions-container .attraction-type {
    color: #000;
}

.attractions-container .attraction-distance {
    background-color: #ff0101;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    min-width: 70px;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.attractions-container .attraction:hover .attraction-distance {
    background-color: #ff0101;
    transform: scale(1.05);
}

/* =========================================
 *  <<< NEW RESPONSIVE ADJUSTMENTS >>>
 * ========================================= */

/* Tablet View (devices up to 992px wide) */
@media (max-width: 992px) {
    .attractions-container {
        gap: 25px; /* Reduce the space between cards */
        padding: 30px 15px; /* Reduce overall padding for the section */
    }
}

/* Mobile View (devices up to 768px wide) */
@media (max-width: 768px) {
    .attractions-container {
        /* The key change: switch to a single-column layout for mobile */
        grid-template-columns: 1fr; 
        gap: 30px; /* This now controls the vertical space between stacked cards */
        padding: 20px 10px; /* Further reduce padding for small screens */
    }

    .attractions-container .category-header h2, .title2 {
        font-size: 22px; /* Make card titles slightly smaller */
    }
    
    .attractions-container .attraction-name, .title3-attraction {
        font-size: 15px; /* Adjust font size for readability */
    }
    
    /* Make the distance badge slightly smaller to fit better */
    .attractions-container .attraction-distance {
        padding: 4px 10px;
        font-size: 13px;
    }
    
    .attractions-container .category:hover {
        transform: translateY(-5px); /* Reduce hover effect slightly for a better feel */
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }
}


/* =========================================
 *  Hero-style Attractions Section
 * ========================================= */
.attraction-title-block {
    text-align: center;
    padding: 40px 20px 50px;
    background: white;
    color: var(--accent-color);
}

.attraction-section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #ff0101;
}

.attraction-subtitle {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    color: black;
}

.attraction-highlight {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out, transform 1.5s ease-in-out;
    transform: scale(1.05);
    opacity: 0;
}

.bg-layer.active {
    opacity: 1;
    transform: scale(1);
}

.attraction-overlay {
    position: relative;
    z-index: 3;
    display: flex;
    height: 100%;
    width: 100%;
}

.attraction-row {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 40px 15px;
    color: #fff;
    cursor: pointer;
    position: relative;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.attraction-row:last-child {
    border-right: none;
}

.attraction-row:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.attraction-row.active {
    background: rgba(30, 58, 138, 0.4);
    transform: translateY(-5px);
}

.attraction-row .type {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    opacity: 0.85;
    font-weight: 600;
}

.attraction-row h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    color: yellow;
}

.attraction-icon {
    font-size: 30px;
    margin-bottom: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.attraction-row:hover .attraction-icon {
    transform: scale(1.2) translateY(-5px);
    opacity: 1;
}

/* =========================================
 *  Effects & Particles
 * ========================================= */

.particles, .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float-shape 20s infinite linear;
}
.shape-1 { width: 100px; height: 100px; border: 2px solid #fff; border-radius: 50%; top: 10%; left: 10%; }
.shape-2 { width: 60px; height: 60px; border: 2px solid #fff; top: 70%; left: 80%; transform: rotate(45deg); animation-delay: -5s; }
.shape-3 { width: 80px; height: 80px; border: 2px solid #fff; border-radius: 20px; top: 40%; left: 85%; animation-delay: -10s; }


/* =========================================
 *  <<< NEW & IMPROVED RESPONSIVE ADJUSTMENTS >>>
 * ========================================= */

/* Tablet View (e.g., iPads in portrait mode) */
@media (max-width: 992px) {
    .attraction-section-title {
        font-size: 40px; /* Slightly smaller title for tablets */
    }

    .attraction-subtitle {
        font-size: 16px; /* Adjust subtitle size */
    }
}

/* Mobile View (e.g., smartphones) */
@media (max-width: 768px) {
    .attraction-title-block {
        padding: 30px 15px 40px; /* Reduce padding on smaller screens */
    }
    
    .attraction-section-title {
        font-size: 32px; /* Make title significantly smaller for mobile */
        letter-spacing: 2px;
    }
    
    .attraction-highlight {
        height: auto; /* Allow the container to grow with the content */
    }
    
    .attraction-overlay {
        flex-direction: column; /* This is the key change: Stack the columns vertically */
    }
    
    .attraction-row {
        flex-basis: 300px; /* Give each row a minimum height */
        border-right: none; /* Remove the vertical border */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Add a horizontal border */
    }

    .attraction-row:last-child {
        border-bottom: none; /* Remove the border from the last item */
    }
    
    .attraction-row:hover {
        transform: translateY(0); /* Optional: disable hover movement on mobile */
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    }
    
    /* Hide decorative shapes on mobile to improve performance and reduce clutter */
    .floating-shapes {
        display: none;
    }
}


/* =========================================
 *  ANIMATION KEYFRAMES
 * ========================================= */
@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

@keyframes float-shape {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}











/* Scoped styles for the room-types section */
    .room-types {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        padding: 60px 0;
        text-align: center;
        color: #333;
    }

    .room-types .container {
        width: 100%;
        max-width: 100%; /* Use full width */
        margin: 0 auto;
        padding: 0 20px; /* Add some padding on the sides */
        box-sizing: border-box; /* Ensures padding is included in the width */
    }

    .room-types .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px; /* Adjusted margin */
        color: white;
        position: relative;
        display: inline-block;
        padding-bottom: 10px;
    }

    .room-types .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background-color: #ff0101;
        border-radius: 2px;
    }
    
    .room-types .room-filter-buttons {
        margin-bottom: 40px;
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .room-types .filter-btn {
        background-color: transparent;
        color: #fff;
        border: 2px solid #fff;
        padding: 10px 25px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 50px;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
        -webkit-appearance: none;
    }
    
    .room-types .filter-btn:hover {
        background-color: #ff0101;
        border-color: #ff0101;
        transform: translateY(-3px);
    }
    
    .room-types .filter-btn.active {
        background-color: #ff0101;
        border-color: #ff0101;
        color: #fff;
    }

    .room-types .room-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); /* Min width of cards */
        gap: 30px;
    }

    .room-types .room-card {
        background-color: #ffffff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
        display: flex;
        flex-direction: column;
    }
    
    .room-types .room-card.hidden {
        display: none;
    }

    .room-types .room-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    }

    .room-types .room-image {
        position: relative;
        overflow: hidden;
        height: 250px; 
    }

    .room-types .room-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .room-types .room-card:hover .room-image img {
        transform: scale(1.1);
    }

    .room-types .room-info {
        padding: 25px;
        text-align: left;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .room-types .room-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin: 0 0 10px 0;
        color: #2c3e50;
    }

    .room-types .room-details {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #555;
        flex-grow: 1;
        margin: 0;
    }