﻿@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(4deg, #7eb7d8, #fff18f, #ffd90f);
  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: #FFD700;
  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: #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: #ffffff;
  text-decoration: none;
      font-weight: 600;
  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%;
}

/* Frosted Glass Text Box */
.hero-content {
  color: #fff;
  max-width: 100%;
  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: #004986;
  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: 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: #004986;
  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: #0e0d0e;
  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: #004986;
  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;
  text-align: center;
}

.section-title h2 {
  font-size: 40px;
 
   color: #233153;
 font-weight: 800;
  text-transform: uppercase;
}

.subheading {
  font-size: 14px;
 color: #004986;
  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;
}

/* 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: rgb(0 73 134);
  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: #004986;
  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;
  margin-top: -40px;
}

.section-header .subheading {
  font-size: 14px;
      color: rgb(0 73 134);
  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:#004986;
}

.btn-room {
  background: #004986;
  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: #e5cc12;
  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;
  }
}





/* --- AMENITIES SECTION --- */
.hotelamenities-section {
  background: #f8f9fc;
  padding: 70px 20px;
  color: #000000;
}

.hotelamenities-container {
  max-width: 1400px;
  margin: auto;
}

.hotelamenities-header {
  text-align: center;
  margin-top: 50px;
}

.hotelamenities-subtitle {
  font-size: 17px;
  color: #004986;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.hotelamenities-title {
  font-size: 40px;
  margin: 10px 0;
  font-weight: 700;
  color: #004986;
}

.hotelamenities-desc {
  font-size: 18px;
  color: #000000;
  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: #004986;
  position: relative;
  text-align: left;
}

.hotelamenities-heading.accessible {
  color: #004986;
}

.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: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  font-size: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  color: #000000;
}

.hotelamenities-grid li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 73, 134, 0.15);
}

.hotelamenities-grid li em {
  color: #004986;
  margin-right: 12px;
  font-size: 18px;
}

.hotelamenities-heading.accessible + .hotelamenities-grid li em {
  color: #004986;
}

@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: 710px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.innerhero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Deep Blue gradient blending with dark to ensure readability */
  background: linear-gradient(to bottom, rgba(0, 73, 134, 0.6), 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: #ffffff;
  max-width: 1200px;
}

.innerhero-content h5 {
  font-size: 18px;
  color: #ffeb00;
  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 --- */
.inner-reservationbar {
  background: #ffffff;
  margin: -70px auto 40px;
  padding: 30px 20px;
  width: 90%;
  max-width: 1300px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 5;
}

.innerres-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.innerres-field {
  flex: 1;
  min-width: 180px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.innerres-field em {
  font-size: 20px;
  color: #004986;
}

.innerres-label {
  font-size: 16px;
  color: #000000;
  font-weight: 600;
  text-transform: uppercase;
}

.innerres-input {
  border: none;
  background: none;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  padding: 6px 5px;
  cursor: pointer;
  width: 100%;
}

.innerres-input:focus {
  outline: none;
}

/* Native drop-down customized in main color (#004986 mapped via %23004986 url encode) */
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="%23004986"/></svg>') no-repeat right 10px center;
  background-size: 12px;
  padding-right: 24px; 
}

input[type="date"].innerres-input {
  appearance: auto;
}

.innerres-btn {
  background: #004986;
  color: #ffffff;
  padding: 16px 32px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, color 0.3s;
}

.innerres-btn:hover {
  background: #ffeb00;
  color: #000000;
  box-shadow: 0 6px 18px rgba(255, 235, 0, 0.4);
}

@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;
  }
}

/* --- THINGS TO DO (Primary) --- */
.thingsdo-section {
  background: #f8f9fc;
  padding: 100px 20px;
  color: #000000;
  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: #004986;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.thingsdo-title {
  font-size: 40px;
  font-weight: 700;
  margin: 10px 0;
  color: #004986;
}

.thingsdo-desc {
  font-size: 18px;
  color: #000000;
  max-width: 1500px;
  margin: 0 auto;
  line-height: 1.7;
}

.thingsdo-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.thingsdo-card {
  background: #ffffff;
  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, 73, 134, 0.15);
}

.icon-circle {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #004986;
  color: #ffeb00;
  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: #004986; }
.card-dining .icon-circle { background: #004986; }
.card-airport .icon-circle { background: #004986; }

.card-content h4 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #004986;
}

.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: #000000;
}

.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: #004986;
}

@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 {
    grid-template-columns: 1fr;
  }
}

/* --- LOCATION & MAP --- */
.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: #004986;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.location-title {
  font-size: 40px;
  font-weight: 700;
  margin: 10px 0;
  color: #004986;
}

.location-desc {
  font-size: 18px;
  color: #000000;
  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: #ffffff;
  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: #004986;
  margin-bottom: 15px;
  font-weight: 700;
}

.location-info-box p {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.7;
}

.coordinates-area,
.directions-area {
  background: #f8f9fc;
  padding: 20px;
  border-left: 5px solid #ffeb00;
  margin-bottom: 25px;
  border-radius: 10px;
}

.coordinates-area h4,
.directions-area h4 {
  color: #004986;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.coordinates-area ul {
  list-style: none;
  padding-left: 0;
  color: #000000;
}

.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: #004986;
  color: #ffffff;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
  font-weight: 600;
}

.directions-area form button:hover {
  background: #ffeb00;
  color: #000000;
}

.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;
  }
}

/* --- CONTACT SECTION --- */
.contact-section-hero {
  background: #f8f9fc;
  padding: 40px 20px; 
  margin-top: -80px;
}

.contact-wrapper-hero {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
  background: #ffffff;
  border-radius: 20px; 
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); 
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.contact-wrapper-hero:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 73, 134, 0.15);
}

.contact-info-box {
  flex: 1 1 55%; 
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004986; 
  margin-bottom: 10px;
}

.contact-section-intro {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 40px; 
  line-height: 1.7;
}

.contact-details-group {
  display: flex;
  flex-direction: column;
  gap: 30px; 
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-box {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background-color: #004986; 
  border-radius: 50%; 
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffeb00;
}

.text-box h4 {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 5px;
  font-weight: 600;
}

.text-box a {
  font-size: 1rem;
  color: #004986;
  text-decoration: none;
  font-weight: 500;
  position: relative; 
}

.text-box a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #ffeb00;
  transform-origin: bottom left;
  transition: transform 0.25s ease-out;
}

.text-box a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.contact-image-box {
  flex: 1 1 45%;
  min-height: 450px; 
  overflow: hidden; 
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease; 
}

.contact-image-box:hover .contact-image {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .contact-wrapper-hero {
    flex-direction: column;
  }
  .contact-image-box {
    min-height: 300px;
  }
  .contact-info-box {
    padding: 40px 30px;
  }
}

/* --- SITEMAP --- */
.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: #004986;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.sitemap-title {
  font-size: 40px;
  font-weight: 700;
  margin: 10px 0;
  color: #004986;
}

.sitemap-desc {
  font-size: 18px;
  color: #000000;
  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: #ffffff;
  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, 73, 134, 0.15);
}

.sitemap-block h2 {
  font-size: 22px;
  font-weight: 600;
  color: #004986;
  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: #000000;
  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: #004986;
  font-size: 14px;
}

.sitemap-block ul li a:hover {
  color: #004986;
}

@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 --- */
.faq-section {
  padding: 100px 20px;
  background: #f8f9fc; 
  color: #000000;
  text-align: center;
  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: #004986; 
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
}

.faq-subtitle {
  font-size: 1.3rem;
  color: #000000;
  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 #f8f9fc;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 73, 134, 0.15);
}

.faq-item h2 {
  font-size: 1.8rem;
  color: #004986;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px dashed #ffeb00; 
}

.faq-item p {
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.75;
  margin-bottom: 10px;
}

.faq-item a {
  color: #004986;
  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: #ffeb00;
  transition: width 0.3s ease;
}

.faq-item a:hover {
  color: #004986;
}

.faq-item a:hover::after {
  width: 100%;
}

@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 --- */
.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.98);
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0, 73, 134, 0.2);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.6s ease, opacity 0.6s ease;
  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: #000000;
  line-height: 1.5;
}

.cookie-text a {
  color: #004986;
  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, color 0.3s;
}

.btn-decline {
  background: #e2e8f0;
  color: #000000;
}

.btn-decline:hover {
  background: #cccccc;
}

.btn-accept {
  background: #004986;
  color: #ffffff;
}

.btn-accept:hover {
  background: #ffeb00;
  color: #000000;
}

.cookie-btn:active {
  transform: scale(0.95);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-buttons {
    justify-content: center;
    margin-top: 12px;
  }
}

/* --- BACK TO TOP --- */
#backToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #004986;
  color: #ffffff;
  border: 2px solid #004986;
  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: #ffeb00;
  color: #000000;
  border-color: #ffeb00;
  transform: scale(1.1);
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* --- INDIVIDUAL ATTRACTIONS AREA --- */
.attraction-wrap {
  padding: 100px 20px;
  background-color: #f5f5f5; 
  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: #004986; 
  margin-bottom: 20px;
}

.attraction-content p {
  font-size: 1rem;
  color: #000000; 
  line-height: 1.7;
  margin-bottom: 15px;
}

.attraction-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #004986; 
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.attraction-btn:hover {
  background-color: #ffeb00; 
  color: #000000;
}

/* --- "THINGS TO DO" GENERIC CLASSES --- */
.things-to-do {
  padding: 40px 0;
  text-align: center;
  margin-top: -50px;
}

.things-to-do .things-title {
  font-size: 3rem;
  color: #004986;
  margin-bottom: 40px;
  text-transform: uppercase;
  position: relative;
  font-weight: 800;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
}

.things-to-do .things-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background-color: #ffeb00;
  margin: 10px auto;
  border-radius: 2px;
}

.things-to-do .things-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding-top: 45px;
  flex-wrap: wrap;
}

.things-to-do .things-slider {
  flex: 1;
  max-width: 50%;
  min-width: 300px;
  position: relative;
}

.things-to-do .custom-hero-slide {
  display: none;
  position: relative;
  background-size: cover;
  background-position: center;
  height: 400px;
  border-radius: 8px;
}

.things-to-do .custom-hero-slide.active {
  display: block;
}

.things-to-do .custom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
}

.things-to-do .custom-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  max-width: 90%;
}

.things-to-do .custom-hero-content h1 {
  font-size: 22px;
  margin-bottom: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.things-to-do .custom-hero-content p {
  font-size: 19px;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.4;
}

.things-to-do .custom-hero-btn {
  margin-top: 5px;
  padding: 8px 16px;
  background-color: #004986;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.things-to-do .custom-hero-btn:hover {
  background-color: #ffeb00;
  color: #000000;
  transform: scale(1.05);
}

.things-to-do .things-content-box {
  flex: 1;
  max-width: 40%;
  min-width: 300px;
  padding: 20px;
  color: #000000;
  border-radius: 8px;
  background: white;
}

.things-to-do .content-inner h2 {
  font-size: 35px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #004986;
}

.things-to-do .content-inner p {
  font-size: 18px;
  margin-bottom: 10px;
  color: #000000;
}

.things-to-do .content-inner ul {
  list-style: none;
  padding: 0;
}

.things-to-do .content-inner ul li {
  font-size: 14px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  color: #000000;
}

.things-to-do .content-inner ul li:before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: #004986;
}

.things-to-do .slide-title {
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

@media (max-width: 1024px) {
  .things-to-do .things-slider { max-width: 80%; margin-bottom: 20px; }
  .things-to-do .things-content-box { max-width: 80%; margin: 0 auto; }
  .things-to-do .custom-hero-content h1 { font-size: 20px; }
  .things-to-do .custom-hero-content p { font-size: 14px; }
}

@media (max-width: 768px) {
  .things-to-do .things-container { flex-direction: column; gap: 20px; }
  .things-to-do .things-slider, .things-to-do .things-content-box { max-width: 90%; margin: 0 auto; }
  .things-to-do .custom-hero-slide { height: 250px; }
  .things-to-do .custom-hero-content {
    width: auto;
    max-width: none;
    left: 15px;
    right: 15px;
    transform: translateY(-50%);
    padding: 8px;
  }
  .things-to-do .custom-hero-content h1 { font-size: 20px; }
  .things-to-do .custom-hero-content p { font-size: 14px; }
  .things-to-do .custom-hero-btn { font-size: 12px; }
}

@media (max-width: 480px) {
  .things-to-do .things-slider, .things-to-do .things-content-box { max-width: 100%; }
  .things-to-do .custom-hero-slide { height: 200px; }
  .things-to-do .custom-hero-content h1 { font-size: 18px; }
  .things-to-do .custom-hero-content p { font-size: 12px; }
  .things-to-do .custom-hero-btn { font-size: 12px; padding: 6px 12px; }
}

/* --- ATTRACTIONS (MULTI) --- */
.attractions-wrapper {
  padding: 5px;
}

.attractions-wrapper .attractions-grid {
  max-width: 1400px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.attractions-wrapper .attractions-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
}

.attractions-wrapper .attractions-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.attractions-wrapper .attractions-card:hover img {
  transform: scale(1.05);
}

.attractions-wrapper .attractions-info {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 0 0 10px 10px;
  width: 100%;
  height: 100%;
}

.attractions-wrapper .attractions-subtitle {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #004986;
}

.attractions-wrapper .attractions-description {
  font-size: 16px;
  margin-bottom: 10px;
  color: #000000;
}

.attractions-wrapper .attractions-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
  text-align: left;
}

.attractions-wrapper .attractions-list li {
  font-size: 20px;
  margin-bottom: 6px;
  color: #000000;
  position: relative;
  padding-left: 25px;
}

.attractions-wrapper .attractions-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: #004986;
  font-weight: bold;
  font-size: 16px;
}

.attractions-wrapper .attractions-read-more-btn {
  padding: 10px 20px;
  background-color: #004986;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.attractions-wrapper .attractions-read-more-btn:hover {
  background-color: #ffeb00;
  color: #000000;
}

.attractions-wrapper .attractions-header {
  text-align: center;
  margin-bottom: 40px;
}

.attractions-wrapper .custom-header-title {
  font-size: 3rem;
  color: #004986;
  margin-bottom: 40px;
  text-transform: uppercase;
  position: relative;
  font-weight: 800;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
}

.attractions-wrapper .custom-header-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background-color: #ffeb00;
  margin: 10px auto;
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .attractions-wrapper .attractions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .attractions-wrapper .attractions-grid { grid-template-columns: 1fr; }
  .attractions-wrapper .custom-header-title { font-size: 36px; }
}

/* --- NEW ATTRACTION APP SECTION --- */
.New-attraction-app-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.New-attraction-attraction-quality-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .New-attraction-attraction-quality-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .New-attraction-attraction-quality-cards {
    grid-template-columns: repeat(6, 1fr);
  }
  .New-attraction-card:nth-child(-n+3) {
    grid-column: span 2;
  }
  .New-attraction-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .New-attraction-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

.New-attraction-card {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.New-attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 73, 134, 0.15);
}

.New-attraction-card-image-container {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.New-attraction-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.New-attraction-card:hover .New-attraction-card-image {
  transform: scale(1.05);
}

.New-attraction-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.New-attraction-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #004986;
}

.New-attraction-card-description {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.New-attraction-card-details {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #000000;
}

.New-attraction-card-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.New-attraction-card-details li + li {
  margin-top: 0.75rem;
}

.New-attraction-card-details i {
  color: #004986;
  font-size: 16px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.New-attraction-card-details a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.New-attraction-card-details a:hover {
  color: #ffeb00;
}

/* --- NEARBY ATTRACTIONS MODULE --- */
.attractions-section {
  background: #ffffff; 
  padding: 39px 8% 80px 8%;
  color: #000000;
}

.attractions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.attractions-title {
  font-size: 2.8rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #004986;
  margin: 0;
  position: relative;
}

.attractions-title span {
  background-color: #ffeb00; 
  color: #004986;
  padding: 0 6px;
  border-radius: 4px;
}

.attractions-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ffeb00; 
  display: block;
  margin: 12px 0 0;
  border-radius: 2px;
}

.attractions-container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 0;
  max-width: 1500px;
}

.attractions-container .category {
  background: #ffffff;
  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, 73, 134, 0.2);
}

.attractions-container .category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid #ffeb00;
}

.attractions-container .category-header {
  padding: 20px;
  background-color: #004986; 
  color: #ffffff; 
  text-align: center;
}

.attractions-container .category-header h2, 
.title2 {
  color: #ffffff;
  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 #eeeeee;
}

.attractions-container .attraction:last-child {
  border-bottom: none;
}

.attractions-container .attraction-details {
  flex-grow: 1;
  padding-right: 15px;
}

.attractions-container .attraction-name, 
.title3-attraction {
  margin-bottom: 4px;
  font-size: 16px;
  color: #000000;
}

.attractions-container .attraction-type {
  color: #000000;
}

.attractions-container .attraction-distance {
  background-color: #ffeb00; 
  color: #000000; 
  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: #004986; 
  transform: scale(1.05);
  color: #ffffff; 
}

@media (max-width: 992px) {
  .attractions-container { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .attractions-section { padding: 40px 15px; }
  .attractions-header { justify-content: center; text-align: center; }
  .attractions-title { font-size: 2.2rem; }
  .attractions-title::after { margin: 12px auto 0; }
  .attractions-container { gap: 30px; }
}

/* --- GALLERY AND LIGHTBOX --- */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin: 0px auto;
  padding: 20px;
  margin-top: -40px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 73, 134, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85); 
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
}

#lightbox-img {
  max-width: 90vw;
  max-height: 80vh; 
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active #lightbox-img {
  transform: scale(1);
}

#lightbox-caption {
  text-align: center;
  color: #ffffff;
  padding: 10px 0;
  margin-top: 10px;
  font-size: 1.1em;
  transition: opacity 0.4s ease-in-out; 
  max-width: 80vw;
}

.close-btn, 
.prev-btn, 
.next-btn {
  position: absolute;
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  user-select: none;
  transition: color 0.2s ease;
}

.close-btn:hover, 
.prev-btn:hover, 
.next-btn:hover {
  color: #ffeb00;
}

.close-btn { top: 20px; right: 35px; font-size: 40px; }
.prev-btn, .next-btn { top: 50%; transform: translateY(-50%); font-size: 30px; padding: 16px; }
.prev-btn { left: 10px; }
.next-btn { right: 10px; }

@media (max-width: 768px) {
  .gallery-container { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; padding: 10px; margin-top: -20px; }
  #lightbox-img { max-width: 95vw; max-height: 75vh; }
  .close-btn { top: 10px; right: 20px; font-size: 35px; }
  .prev-btn, .next-btn { font-size: 24px; padding: 10px; }
  .prev-btn { left: 5px; }
  .next-btn { right: 5px; }
  #lightbox-caption { font-size: 1em; }
}