﻿@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: #000;
}

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 {
  
  font-weight: 400;
  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: #FFB74D;
}

.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: #00e5a0;
  text-decoration: none;
  font-weight: 400;
  font-size: 25px;
}

.header-right a:hover {
  color: #FFB74D;
}
.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: #2F5D9D;
  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%;
  background: rgba(0, 0, 0, 0.3);
}

/* Frosted Glass Text Box */
.hero-content {
  color: #fff;
  max-width: 1250px;
  padding: 40px;
  border-radius: 20px;
 
 
}

/* Title */
.hero-content h1 {
  font-size: 64px;
  font-weight: 800;
  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: #2e5a99;
  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;

  /* ✅ Add border & rounded corners */
  border: 2px solid #e5e5e5;
  border-radius: 10px;
}

.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: 12px 15px;
  
  /* ✅ Add box style for each field */
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 8px;

  min-width: 180px;
}

.res-field em {
  font-size: 20px;
  color: #2F5D9D;
}

.res-field .label {
  font-size: 18px;
  color: #555;
  text-transform: uppercase;
  font-weight: 600;
}

.date-input {
  border: none;
  background: none;
  font-size: 18px;
  font-weight: 600;
  color: #233153;
  cursor: pointer;
  padding: 6px 0;
  width: 100%;
  appearance: none;
}

.date-input:focus {
  outline: none;
}

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: #2e5a99;
  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: #00c391;
  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 #FFD700; /* Yellow border on top */
  border-bottom: 3px solid #FFD700; /* Yellow border on bottom */
}


.accessibility-banner a {
  color: #FFD700; /* Gold tone */
  font-weight: 700;
  text-decoration: none;
  margin-left: 6px;
}

.accessibility-banner a:hover {
  text-decoration: underline;
}

.accessibility-banner em {
  color: #FFD700;
  margin-left: 8px;
  margin-right: 4px;
}

.welcome-section {
  padding: 50px 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;
  margin-top:50px;
}

.welcome-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: #233153;
  margin: 20px 0 16px;
}

.welcome-text p {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 32px;
  background: #2e5a99;
  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: #2e5a99;
  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: #233153;
 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: #000;
  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: #000;
  line-height: 1.6;
}

/* Tetradic Colors */
/* Custom Color Scheme */
.deepblue { color: #2F5D9D; }
.tealgreen { color: #00A17A; }
.gold { color: #FFB74D; }
.lavender { color: #8E44AD; }

/* 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: 1200px;
  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: #000;
  line-height: 1.8;
  margin-bottom: 28px;
}

.btn-primary {
  display: inline-block;
  background: #2e5a99;
  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: #000;
  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: #2e5a99;
  color: #fff;
  padding: 10px 26px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-room:hover {
  background: #004986;
}
.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: #ffeb00;
  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: #ffeb00;
  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 {
  color: #ffeb00;
  margin-bottom: 10px;
  font-weight: 600;
}
.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: #B0C4DE;
}
.footer-bottom a {
  color: #FFD369;
  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: #f8f9fc;
  padding: 100px 20px;
  font-family: 'Montserrat', sans-serif;
  color: #233153;
  margin-top:-115px;
}

.hotelamenities-container {
  max-width: 1400px;
  margin: auto;
}

.hotelamenities-header {
  text-align: center;
  margin-bottom: 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;
}

.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: #233153;
}

.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:#2e5a99;
}

@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;

  /* ✅ Add border and rounded corners */
  border: 2px solid #e5e5e5;
  border-radius: 10px;
}

/* ✅ 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;

  /* ✅ Add box style for each field */
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 15px;
  transition: box-shadow 0.3s ease;
}

/* ✅ Hover effect for better interactivity */
.innerres-field:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ✅ 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;
  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;
}

/* ✅ No custom arrow for date inputs (keep native icon) */
input[type="date"].innerres-input {
  appearance: auto;
}

/* ✅ Button Styling */
.innerres-btn {
  background: #2e5a99;
  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: #233153;
  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: #2F5D9D;
  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: #2e5a99;
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.3s;
  font-weight: 600;
}

.directions-area form button:hover {
  background: #00C391;
}

/* 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;
  }
}




/* 1. Contact Header Section */
.contactpage-header-section {
  background: #f8f9fc;
  padding: 100px 20px;
  margin-top:-115px;
}

.contactpage-header {
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
}

.contact-subtitle {
  font-size: 17px;
  text-transform: uppercase;
  color: #00A17A;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.contact-title {
  font-size: 40px;
  font-weight: 700;
  margin: 10px 0;
  color: #233153;
}

.contact-desc {
  font-size: 18px;
  color: #555;
  max-width: 1250px;
  margin: 0 auto;
  line-height: 1.7;
}

/* 2. Main Contact Info Section */
.contact-section-hero {
  background: #f8f9fc; /* Light grey background */
  padding: 50px 20px;
  margin-top:-80px;
}

.contact-wrapper-hero {
  max-width: 1280px;
  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.1);
  overflow: hidden;
}

.contact-info-box {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-box h2 {
  font-size: 2.6rem;
  color: #233153; /* Deep blue */
  margin-bottom: 15px;
}

.contact-info-box p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-details-area {
  background: #e4edf2; /* Light teal background */
  padding: 20px;
  border-left: 5px solid #00A17A; /* Teal border */
  margin-bottom: 25px;
  border-radius: 10px;
}

.contact-details-area h4 {
  color: #233153; /* Deep blue for headings */
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-details-area ul {
  list-style: none;
  padding-left: 0;
  color: #333;
}

.contact-details-area ul li {
  margin-bottom: 12px;
  font-size: 1rem;
}

.contact-details-area a {
  color: #00A17A; /* Teal links */
  font-weight: 600;
  text-decoration: none;
}

.contact-details-area a:hover {
  color: #005f5c; /* Darker teal on hover */
  text-decoration: underline;
}

/* 3. Right Side Image */
.contact-image-box {
  flex: 1;
  background: #e4edf2; /* Light grey background */
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* 4. Responsive Design */
@media (max-width: 992px) {
  .contact-wrapper-hero {
    flex-direction: column;
  }

  .contact-image-box {
    height: 300px;
  }

  .custom-contact-title {
    font-size: 2rem;
  }

  .custom-contact-description {
    font-size: 1rem;
  }

  .contact-info-box h2 {
    font-size: 2rem;
  }
}



/* 🌐 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: 100px 20px;
  background: #f8f9fc; /* Layout-matching soft background */
  color: #1a1a1a;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top:-115px;
}

.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: #233153;
  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: #f5f5f5; /* Light gray background to match section styles */
  border-top: 1px solid #ddd;
    margin-top:-120px;
}

.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: #2e5a99; /* 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 */
}
