﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Rubik:wght@400;500;700&display=swap');

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }
/* Prevent potential horizontal scroll caused by transform */

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background-color:#1e1e2a;
overflow-x: hidden;
  color: #333;
}
/* ================================================
   TOPBAR STYLES - Comfort Inn White Header Theme
================================================ */
.topbar {
  width: 100%;
  background: linear-gradient(to right, #0a2050, #1b2b65);
  color: #fff;
  font-size: 0.9rem;
  padding: 6px 0;
  position: relative;
  z-index: 1000;
  letter-spacing: 0.3px;
  font-family: 'Montserrat', Arial, sans-serif;
}

.topbar-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  margin-right: 12px;
  font-weight: 500;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.topbar a i {
  margin-right: 6px;
  color: #ffb703;
}

.topbar a:hover {
  color: #f47b20;
}

.topbar-left,
.topbar-right {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-center {
  text-align: center;
  flex: 1;
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .topbar-content {
    flex-direction: column;
    align-items: center;
    padding: 8px 15px;
    text-align: center;
  }

  .topbar-left,
  .topbar-right {
    justify-content: center;
    margin: 5px 0;
    flex-wrap: wrap;
  }

  .topbar-center {
    flex: 1 1 100%;
    margin: 5px 0;
  }

  .topbar a {
    margin-right: 10px;
    font-size: 0.85rem;
  }
}

@media (max-width: 575px) {
  .topbar a {
    font-size: 0.8rem;
  }
}
/* ========== Main Header - White Theme ========== */
.main-header {
  position: absolute;
  top: 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background: #ffffff;
  border-bottom: 3px solid #ffb703;
  border-top: 3px solid #ffb703;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  z-index: 998;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* ========== Logo ========== */
.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  height: 100px;
  width: auto;
  max-height: 300px;
  transition: height 0.3s ease;
}

/* ========== Navigation ========== */
.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav ul li {
  margin-left: 25px;
}

.main-nav ul li a {
  text-decoration: none;
  color: #0a2050;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px;
  transition: color 0.3s ease;
}

.main-nav ul li a:hover {
  color: #f47b20;
}

/* ========== Book Now Button ========== */
.book-now-btn {
  background: linear-gradient(135deg, #f47b20, #ffb703);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: inline-block;
}

.book-now-btn:hover {
  background: linear-gradient(135deg, #ffb703, #f47b20);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* ========== Responsive Main Header ========== */
@media screen and (max-width: 991px) {
  .main-header {
    position: relative;
    top: 0;
    padding: 15px 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border-bottom: 2px solid #ffb703;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }

  .main-nav {
    display: none !important;
  }

  .logo-img {
    height: 80px;
  }
}



/* Sticky Header */
.sticky-header {
  position: fixed;
  top: -100px;
  width: 100%;
  background-color: #fff;
  padding: 15px 80px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 999;
  transition: top 0.4s ease-in-out;
}

.sticky-header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.sticky-header .logo-img {
  height: 60px;
  width: auto;
}

.sticky-header .main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sticky-header .main-nav ul li {
  margin-left: 25px;
}

.sticky-header .main-nav ul li a {
  text-decoration: none;
  color: #003B7C;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  transition: color 0.3s;
}

.sticky-header .main-nav ul li a:hover {
  color: #FF9D00;
}
/* Hidden by default */
.sticky-header {
  top: -100px;
  opacity: 0;
  transition: top 0.4s ease, opacity 0.4s ease;
}

/* Show when scrolling up */
.sticky-header.show {
  top: 0;
  opacity: 1;
}

/* Responsive Sticky Header */
@media screen and (max-width: 768px) {
  .sticky-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .sticky-header .main-nav ul {
    flex-direction: column;
    background: #000;
    width: 100%;
    padding: 15px;
    display: none;
  }

  .sticky-header .main-nav ul li {
    margin: 10px 0;
  }

  .sticky-header .main-nav ul.active {
    display: flex !important;
  }

  .sticky-header .logo-img {
    height: 40px;
  }
}
@media screen and (max-width: 991px) {
  .sticky-header {
    display: none !important;
  }
}
/* ========== Hamburger Button ========== */
.hamburger-toggle {
  display: none;
  position: absolute;
  right: 30px;
  top: 50px;
  z-index: 1000;
  background: none;
  border: none;
  font-size: 26px;
  color: #0a2050; /* navy icon */
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .hamburger-toggle {
    display: block;
    top: 40px;
    right: 20px;
  }
}

/* ========== Mobile Menu - White & Gold Theme ========== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 330px;
  height: 100vh;
  background: #ffffff; /* white background */
  color: #0a2050; /* navy text */
  z-index: 9999;
  transition: left 0.4s ease;
  padding: 30px 25px;
  box-shadow: 6px 0 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-overlay.active {
  left: 0;
}

/* Header: Logo + Close */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.mobile-logo {
  height: 100px;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #f47b20; /* orange */
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.close-btn:hover {
  transform: rotate(90deg);
  color: #ffb703; /* gold hover */
}

/* Navigation Links - Elegant White Theme */
.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-links li {
  margin-bottom: 15px;
}

.mobile-menu-links li a {
  background: #0a2050; /* navy background */
  color: #fff;
  padding: 12px 20px;
  display: block;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mobile-menu-links li a:hover {
  background: #f47b20; /* orange hover */
  color: #fff;
  transform: translateY(-2px);
}

/* Contact Information */
.mobile-contact {
  margin-top: 25px;
  font-size: 14px;
  background: #f8f8f8;
  padding: 15px;
  border-left: 4px solid #ffb703; /* gold accent */
  border-radius: 6px;
  color: #0a2050;
}

.mobile-contact a{
  
  color: #0a2050;
  text-decoration:none;
}

.mobile-contact p {
  margin-bottom: 12px;
  line-height: 1.5;
}

.mobile-contact span {
  display: block;
  color: #f47b20; /* orange label */
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Social Icons - Navy & Gold Glow */
.mobile-social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.mobile-social-icons a {
  color: #0a2050;
  font-size: 20px;
  transition: color 0.3s, text-shadow 0.3s;
}

.mobile-social-icons a:hover {
  color: #f47b20;
  text-shadow: 0 0 8px rgba(244, 123, 32, 0.6);
}

/* ========== Responsive Behavior ========== */
@media screen and (max-width: 991px) {
  .hamburger-toggle {
    display: block;
  }

  .main-nav {
    display: none !important;
  }

  .sticky-header .main-nav {
    display: none !important;
  }

  .main-header {
    background-color: #ffffff; /* white background */
    border-top: 4px solid #ffb703; /* gold top border */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }
}

/* Optional: Smooth gradient hover animation for links */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ========== HERO SECTION (Comfort Inn Color Theme) ========== */
.hero-section {
  position: relative;
  padding: 50px 50px;
  background: url('../images/new/exterior.webp') no-repeat center center/cover;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85); /* light overlay */
  z-index: 0;
}

/* === Container === */
.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 150px auto 0;
  flex-wrap: wrap;
  gap: 30px;
}

/* === Text Section === */
.hero-left {
  flex: 1;
  min-width: 300px;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  background: linear-gradient(to right, #0a2050, #f47b20); /* navy to orange */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  margin-top: 150px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 60px;
  font-weight: 300;
  background: linear-gradient(to right, #0a2050, #ffb703); /* navy to gold */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  margin-bottom: 25px;
}

/* === Right Section (Images) === */
.hero-right {
  flex: 1;
  min-width: 300px;
}

.image-grid {
  display: grid;
  grid-template-areas: 
    "square large"
    "rectangle large";
  grid-template-columns: 1fr 1.2fr;
  grid-gap: 20px;
}

/* === Image Boxes === */
.img-box {
  overflow: hidden;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(0);
  transition: all 0.8s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.img-square {
  grid-area: square;
  aspect-ratio: 1 / 1;
  height: 120%;
  width: 100%;
}

.img-rectangle {
  grid-area: rectangle;
  aspect-ratio: 3 / 3;
  margin-top: 50px;
}

.img-large {
  grid-area: large;
  position: relative;
  height: 100%;
  width: 120%;
}

/* === Video Overlay === */
.video-overlay {
  position: absolute;
  top: 15%;
  left: 25%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  pointer-events: none;
}

.circle-text-svg {
  width: 100%;
  height: 100%;
}

.text-rotator {
  animation: rotateText 17s linear infinite;
  transform-origin: 50% 50%;
  fill: #0a2050; /* navy text */
}

@keyframes rotateText {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* === Play Icon === */
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: #fff;
  padding: 18px;
  border-radius: 50%;
 
  z-index: 1;
  pointer-events: auto;
}

/* === Hero Slide Animation === */
.hero-slide {
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}

.hero-slide.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  position: relative;
  z-index: 2;
}

.hero-left,
.hero-right {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.hero-slide.active .hero-left {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.hero-slide.active .hero-right {
  opacity: 1;
  transform: translate(30px, -30px);
  transition-delay: 0.5s;
}

/* === Slide Animations === */
.slide-in-top {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.slide-in-bottom {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.slide-in-right {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.slide-out-top {
  opacity: 0 !important;
  transform: translateY(-100px) !important;
}

.slide-out-bottom {
  opacity: 0 !important;
  transform: translateY(100px) !important;
}

.slide-out-right {
  opacity: 0 !important;
  transform: translateX(100px) !important;
}
/* === Description Text (Under Title) === */
.hero-text {
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  max-width: 550px;
  margin-top: 20px;
  margin-bottom: 35px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* === Call-To-Action Button (Comfort Inn Style) === */
.hero-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Unique Hover Effect – Animated Glow + Reverse Gradient */
.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), transparent 70%);
  transition: all 0.4s ease;
}

.hero-btn:hover::before {
  left: 100%;
}

.hero-btn:hover {
  background: linear-gradient(135deg, #ffb703, #f47b20);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(244, 123, 32, 0.35);
}

/* Optional subtle pulse glow animation on hover */
.hero-btn:hover {
  animation: glowPulse 1.6s infinite alternate ease-in-out;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 10px rgba(255, 183, 3, 0.4);
  }
  100% {
    box-shadow: 0 0 20px rgba(244, 123, 32, 0.7);
  }
}

/* === Responsive Button Adjustments === */
@media screen and (max-width: 767px) {
  .hero-text {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-btn {
    font-size: 15px;
    padding: 12px 28px;
  }
}

/* ========== RESPONSIVE DESIGN ========== */
@media screen and (max-width: 991px) {
  .hero-left {
    width: 100%;
    text-align: left;
  }

  .hero-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #0a2050;
    margin-bottom: 15px;
    margin-top: -35px;
  }

  .hero-title {
    font-size: 40px;
    font-weight: 800;
    color: #0a2050;
    line-height: 1.2;
  }

  .image-grid {
    margin-left: -30px;
  }

  .img-large {
    height: 100%;
    width: 95%;
  }
}

@media screen and (max-width: 767px) {
  .img-square {
    height: 120%;
    width: 100%;
  }

  .img-rectangle {
    margin-top: 50px;
  }

  .img-large {
    height: 100%;
    width: 90%;
  }

  .play-icon {
    font-size: 40px;
  }

  .video-overlay {
    position: absolute;
    top: 20%;
    left: 35%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    pointer-events: none;
  }
}
/* === VIDEO MODAL === */
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.video-modal.active {
  display: block;
}

/* Dark overlay */
.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 32, 80, 0.85);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.4s ease;
}

/* Modal box */
.video-modal-content {
  position: relative;
  max-width: 900px;
  width: 90%;
  margin: 5% auto;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  animation: scaleUp 0.4s ease;
}

/* Close button */
.video-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 38px;
  background: none;
  border: none;
  color: #ffb703;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease, color 0.3s ease;
}

.video-close-btn:hover {
  color: #f47b20;
  transform: rotate(90deg);
}

/* Responsive iframe */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUp {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ================= SECTION ================= */
.welcome-section {
  position: relative;
  background: #fff url('../images/new/sketch.png') center / cover no-repeat;
  background-attachment: fixed;
  padding: 100px 40px;
  color: #0a2050;
  overflow: hidden;
}

/* Overlay */
.welcome-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,1);
  z-index: 1;
  transition: background 2.5s ease;
}

.welcome-section.in-view::before {
  background: rgba(255,255,255,0.85);
}

/* Container */
.welcome-container {
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Left content */
.welcome-left {
  border-left: 5px solid #ffb703;
  padding-left: 25px;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 1.2s ease;
}

.welcome-section.in-view .welcome-left {
  opacity: 1;
  transform: translateX(0);
}

/* ================= TITLE ================= */
.animated-title {
  font-size: 70px;
  font-weight: 300;
  color: #0a2050;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

/* Word reveal (paused by default) */
.animated-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
}

/* Start reveal only when section visible */
.welcome-section.in-view .animated-title span {
  animation: wordReveal 0.6s ease forwards;
}

@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Gold underline */
.animated-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #f47b20, #ffb703);
}

.welcome-section.in-view .animated-title::after {
  animation: drawLine 1.2s ease forwards;
  animation-delay: 1.2s;
}

@keyframes drawLine {
  to { width: 100%; }
}

/* ================= SUBTITLE ================= */
.welcome-left h4 {
  font-size: 26px;
  color: #f47b20;
  margin: 20px 0;
  opacity: 0;
  transform: translateY(20px);
}

.welcome-section.in-view .welcome-left h4 {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1.5s;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ================= INTRO ================= */
.short-intro {
  font-size: 18px;
  line-height: 1.8;
  max-width: 1280px;
}

/* ================= BUTTON ================= */
.read-more-btn {
  margin-top: 25px;
  padding: 14px 34px;
  border: none;
  border-radius: 4px;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

/* Optional subtle hover only */
.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(244, 123, 32, 0.35);
}


@keyframes pulseOnce {
  0% { opacity: 1; box-shadow: 0 0 0 0 rgba(244,123,32,.5); }
  70% { box-shadow: 0 0 0 18px rgba(244,123,32,0); }
  100% { box-shadow: 0 0 0 0 rgba(244,123,32,0); }
}

/* ================= READ MORE (PREMIUM STYLE) ================= */
.read-more-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  padding: 0 20px;
  background: linear-gradient(180deg, #ffffff, #fafafa);
  border-left: 4px solid transparent;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(15px);
  transition:
    max-height 0.9s ease,
    opacity 0.6s ease,
    transform 0.6s ease,
    border-left-color 0.6s ease;
}

.read-more-content.show {
  max-height: 1200px;
  opacity: 1;
  margin-top: 30px;
  padding: 30px;
  border-left-color: #ffb703;
  transform: translateY(0);
}

/* ================= CONTENT BLOCKS ================= */
.read-more-content p {
  position: relative;
  padding-left: 32px;
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.75;
  color: #444;
}

/* Decorative icon */
.read-more-content p::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 4px;
  color: #f47b20;
  font-size: 14px;
}

/* Emphasis */
.read-more-content strong {
  color: #0a2050;
  font-weight: 600;
}

/* Last paragraph spacing fix */
.read-more-content p:last-child {
  margin-bottom: 0;
}


/* Responsive */
@media (max-width: 768px) {
  .animated-title { font-size: 32px; }
  .welcome-left { border-left: none; padding-left: 0; text-align: center; }
}



/* ================= SECTION BASE ================= */
.amenities-section {
  position: relative;
  padding: 110px 30px;
  background: url('../images/new/sketch.png') center/cover no-repeat;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}

/* Overlay reveal animation */
.section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,1);
  z-index: 1;
  transition: background 1.5s ease;
}

.amenities-section.in-view .section-overlay {
  background: rgba(255,255,255,0.9);
}

/* ================= TITLE ================= */
.section-title {
  position: relative;
  z-index: 2;
  margin-bottom: 65px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.amenities-section.in-view .section-title {
  opacity: 1;
  transform: translateY(0);
}

.section-title h2 {
  font-size: 70px;
  color: #0a2050;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 18px;
  color: #f47b20;
  letter-spacing: 1px;
}

/* ================= GRID ================= */
.amenities-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 45px;
  max-width: 1300px;
  margin: 0 auto;
}

/* ================= CARD ================= */
.amenity-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 42px 25px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;

  opacity: 0;
  transform: translateY(45px);
  transition: all 0.9s ease;
}

/* Shine sweep */
.amenity-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,255,255,0.4),
    transparent 60%
  );
  transform: rotate(25deg);
  transition: 1s;
}

.amenity-card:hover::before {
  top: 0;
  left: 0;
}

.amenities-section.in-view .amenity-card {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/* Hover lift */
.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ================= ICON ================= */
.icon-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 28px;
  border-radius: 50%;
  border: 3px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.7), transparent);
  transition: all 0.6s ease;
}

/* Background icon */
.faded-icon {
  position: absolute;
  font-size: 80px;
  color: currentColor;
  opacity: 0.08;
}

/* Main icon */
.solid-icon {
  font-size: 52px;
  color: currentColor;
  transition: all 0.6s ease;
}

/* Icon animation on reveal */
.amenities-section.in-view .icon-wrapper {
  animation: iconPop 0.9s ease forwards;
}

@keyframes iconPop {
  0% { transform: scale(0.8) rotate(-8deg); }
  100% { transform: scale(1) rotate(0); }
}

/* Hover icon effect */
.amenity-card:hover .icon-wrapper {
  transform: scale(1.08);
}

.amenity-card:hover .solid-icon {
  transform: scale(1.15);
}

.amenity-card:hover .faded-icon {
  opacity: 0.22;
}

/* ================= TEXT ================= */
.amenity-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0a2050;
  font-weight: 600;
  text-transform: uppercase;
}

.amenity-card p {
  font-size: 17px;
  color: #444;
  line-height: 1.7;
}

/* ================= COLORS ================= */
.gold   { color: #ffb703; }
.navy   { color: #0a2050; }
.orange { color: #f47b20; }
.teal   { color: #00a676; }
.blue   { color: #007bba; }

/* ===========================================================
   ✅ PREMIUM RESPONSIVE OVERHAUL
   =========================================================== */

/* --- IPAD / TABLET (1024px to 768px) --- */
@media (max-width: 1024px) {
  .amenities-section {
    padding: 80px 20px;
  }

  .section-title h2 {
    font-size: 50px;
  }

  .amenities-grid {
    /* 2 columns on iPad for a cleaner look */
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
  }
}

/* --- MOBILE (767px and below) --- */
@media (max-width: 767px) {
  .amenities-section {
    padding: 60px 15px;
    background-attachment: scroll; /* Fixed backgrounds can be laggy on mobile */
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 34px; /* Scaled down for mobile */
    letter-spacing: 1px;
  }

  .section-title p {
    font-size: 15px;
  }

  .amenities-grid {
    /* Single column on mobile so text has room to breathe */
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .amenity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px 25px;
    border-radius: 12px; /* Slightly sharper for mobile */
  }

  .icon-wrapper {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
  }

  .solid-icon {
    font-size: 40px;
  }

  .faded-icon {
    font-size: 60px;
  }

  .amenity-card h4 {
    font-size: 18px;
  }

  .amenity-card p {
    font-size: 15px;
    line-height: 1.5;
  }

  /* Disable hover lift on touch devices for better UX */
  .amenity-card:hover {
    transform: none;
  }
}

/* --- SMALL MOBILE (380px and below) --- */
@media (max-width: 380px) {
  .section-title h2 {
    font-size: 28px;
  }
  
  .icon-wrapper {
    width: 75px;
    height: 75px;
  }
  
  .solid-icon {
    font-size: 32px;
  }
}

.attractions-showcase {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: #ffffff;
}

.showcase-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.showcase-slide {
  display: flex;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  opacity: 0;
  transition: all 0.8s ease;
  background: #f8faff; /* soft neutral tone */
}

.showcase-slide.active {
  left: 0;
  opacity: 1;
}

/* LEFT PANEL */
.showcase-left {
  width: 48%;
  background: #fff;
  color: #0a2050;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 4px 0 25px rgba(0, 0, 0, 0.05);
  border-right: 5px solid transparent;
  border-image: linear-gradient(to bottom, #f47b20, #ffb703) 1;
}

.showcase-left h2 {
  font-size: 66px;
  font-weight: 300;
  margin: 15px 0;
  color: #0a2050;
}

.showcase-left p {
  font-size: 18px;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.8;
}

.showcase-left ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.showcase-left ul li {
  font-size: 18px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 28px;
  color: #333;
}

.showcase-left ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #f47b20;
  font-weight: 700;
}

/* BUTTON */
.btn-offer {
  display: inline-block;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-offer:hover {
  background: linear-gradient(135deg, #ffb703, #f47b20);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(244, 123, 32, 0.35);
}

/* RIGHT PANEL */
.showcase-right {
  width: 55%;
  background-size: cover;
  background-position: center;
  border-radius: 0 10px 10px 0;
  overflow: hidden;
  position: relative;
}

.showcase-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

/* NAVIGATION */
.showcase-nav {
  position: absolute;
  bottom: 35px;
  left: 45%;
  transform: translateX(-50%);
  display: flex;
  gap: 25px;
  z-index: 5;
}

.showcase-nav span {
  cursor: pointer;
  color: #f47b20;
  border: 2px solid #f47b20;
  font-size: 28px;
  padding: 10px 16px;
  border-radius: 50%;
  transition: all 0.3s ease;
background: rgba(255, 255, 255, 0.9);
}

.showcase-nav span:hover {
  background: linear-gradient(135deg, #f47b20, #ffb703);
  color: #fff;
  box-shadow: 0 0 10px rgba(244, 123, 32, 0.4);
}

/* Tag styling */
.highlight-tag {
  color: #f47b20;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  font-weight: 400;
  display: block;
}

/* ========================= */
/* 📱 REDESIGNED RESPONSIVE FIXES */
/* ========================= */
@media (max-width: 991px) {
    .showcase-slide {
        /* Revert to original height for the parent container */
        height: 600px;
        flex-direction: column;
    }

    .showcase-left,
    .showcase-right {
        width: 100%;
        height: 100%; /* Take full height of the slide */
    }

    /* --- IMAGE AS FULL-BLEED BACKGROUND --- */
    .showcase-right {
        /* Set position and z-index to place it behind the content */
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1; /* Behind the content */
        border-radius: 0;
    }

    /* Adjust the overlay on the image for better text readability */
    .showcase-right::after {
        background: rgba(0, 0, 0, 0.4); /* Darker overlay for contrast */
    }
    
    /* --- TEXT PANEL OVERLAY --- */
    .showcase-left {
        /* Place content over the image background */
        position: relative;
        z-index: 2; /* In front of the image */
        padding: 50px 30px; /* Adjusted padding */
        text-align: left; /* Keep text left-aligned for better readability on dark background */
        
        /* Remove shadows and borders */
        box-shadow: none;
        border: none;
        border-image: none;

        /* Override colors for readability on a dark background */
        color: #ffffff; /* White text */
        background: none; /* Make background transparent */
    }

    .showcase-left h2 {
        font-size: 40px; /* Larger font for impact */
        color: #ffffff; /* White text */
    }
    
    .showcase-left p {
        font-size: 17px;
        color: #f0f0f0; /* Off-white for body text */
    }

    .showcase-left ul li {
        color: #f0f0f0;
    }

    /* Move navigation to the bottom right of the container */
    .showcase-nav {
        left: auto;
        right: 30px;
        bottom: 30px;
        transform: none;
        gap: 15px;
        z-index: 10;
		top:20px;
    }

    .showcase-nav span {
        width: 50px;
        height: 50px;
        font-size: 20px;
        padding: 10px 12px;
        background: rgba(255, 255, 255, 0.9); /* Semi-transparent white background for buttons */
    }
    
    .highlight-tag {
        color: #ffb703; /* Use the lighter orange for the tag */
        font-weight: 600;
    }

    /* Reset animation state for mobile - ensure everything starts visible or correctly positioned */
    .showcase-slide .showcase-left > * {
        transform: none; /* Remove initial translateY to avoid issues with absolute positioning */
    }
}


/* Adjustments for even smaller screens */
@media (max-width: 600px) {
    .showcase-slide {
        height: 500px; /* Reduce total height for very small devices */
    }

    .showcase-left {
        padding: 40px 20px;
    }

    .showcase-left h2 {
        font-size: 30px;
    }

    .showcase-left p,
    .showcase-left ul li {
        font-size: 15px;
    }
    
    .showcase-nav {
        right: 20px;
        bottom: 20px;
    }
}

/* ========================= */
/* SLIDE ANIMATIONS */
/* ========================= */

/* Reset animation state */
.showcase-slide .showcase-left > * {
  opacity: 0;
  transform: translateY(30px);
}

/* Active slide text animation */
.showcase-slide.active .highlight-tag {
  animation: fadeUp 0.6s ease forwards;
}

.showcase-slide.active h2 {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.1s;
}

.showcase-slide.active p {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.2s;
}

.showcase-slide.active .btn-offer {
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.35s;
}

/* IMAGE ZOOM EFFECT */
.showcase-slide.active .showcase-right {
  animation: imageZoom 6s ease forwards;
}

/* Keyframes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}







/* ================================================
   ROOMS & SUITES SECTION - Comfort Inn Jonesboro
   ================================================ */

/* ====== BASE ====== */
.rooms-section {
  background: #fff;
  overflow: hidden;
  position: relative;
  padding: 0;
}

.rooms-container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
}

/* ====== LEFT IMAGE PANEL ====== */
.rooms-image {
  flex: 1;
  position: relative;
  min-height: 150px;
  overflow: hidden;
}

.rooms-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: brightness(100%);
  transition: transform 1.5s ease, filter 1.2s ease;
}

.rooms-image:hover img {
  transform: scale(1.1);
  filter: brightness(100%);
}

/* ====== RIGHT CONTENT PANEL ====== */
.rooms-content {
  flex: 1;
  background: linear-gradient(135deg, #0a2050 0%, #132f63 100%);
  color: #fff;
  padding: 40px 87px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  overflow: visible;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.25);
}

/* Accent glow on left edge */
.rooms-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #f47b20, #ffb703);
  box-shadow: 0 0 20px rgba(244, 123, 32, 0.6);
  z-index: 1;
}

/* ====== TEXT ====== */
.rooms-content h2 {
  font-size: 58px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: -5px;
  position: relative;
  z-index: 3;
}

.rooms-content h2 span {
  display: block;
  color: #ffb703;
  font-weight: 300;
  font-size: 38px;
}

.divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #f47b20, #ffb703);
  margin: 20px 0 30px;
  border-radius: 2px;
 
}

.rooms-content h4 {
  color: #f47b20;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 25px;
  position: relative;
}

.rooms-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #e9eef5;
  margin-bottom: 30px;
  max-width: 600px;
  z-index: 3;
  position: relative;
}

/* ====== BUTTON ====== */
.btn-room {
  display: inline-block;
  align-self: flex-start;
  padding: 15px 40px;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.btn-room::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-room:hover::after {
  transform: translateX(0);
}

.btn-room:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(244, 123, 32, 0.4);
}

/* ====== ANIMATION ====== */
.rooms-content,
.rooms-image img {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.rooms-section.visible .rooms-content,
.rooms-section.visible .rooms-image img {
  opacity: 1;
  transform: translateY(0);
}
/* =====================================
   CLEAN ANIMATION – ROOMS SECTION
   ===================================== */

/* ---------- IMAGE REVEAL FROM LEFT ---------- */
.rooms-image {
  position: relative;
  overflow: hidden;
}

.rooms-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Hidden state */
  clip-path: inset(0 100% 0 0);

  transition: clip-path 1.6s cubic-bezier(0.77, 0, 0.18, 1);
}

/* Reveal image */
.rooms-section.visible .rooms-image img {
  clip-path: inset(0 0 0 0);
}

/* ---------- TEXT BASE STATE ---------- */
.rooms-content h2,
.rooms-content h4,
.rooms-content .divider,
.rooms-content p,
.rooms-content .btn-room {
  opacity: 0;
  transform: translateY(30px);
}

/* ---------- TEXT ANIMATIONS ---------- */
.rooms-section.visible .rooms-content h2 {
  animation: fadeUp 0.7s ease forwards;
}

.rooms-section.visible .rooms-content h4 {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.1s;
}

.rooms-section.visible .rooms-content .divider {
  animation: expandLine 0.8s ease forwards;
  animation-delay: 0.2s;
}

.rooms-section.visible .rooms-content p {
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.3s;
}

.rooms-section.visible .rooms-content .btn-room {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.45s;
}

/* ---------- KEYFRAMES ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandLine {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 70px;
    opacity: 1;
  }
}

/* ---------- MOBILE SAFETY ---------- */
@media (max-width: 768px) {
  .rooms-image img {
    clip-path: none;
  }
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1200px) {
  .rooms-content {
    padding: 60px 50px;
  }

  .rooms-content h2 {
    font-size: 48px;
  }

  .rooms-content p {
    font-size: 17px;
  }
}

/* ====== TABLET & MOBILE ====== */
@media (max-width: 991px) {
  .rooms-container {
    flex-direction: column;
  }

  .rooms-image {
    width: 100%;
    height: 420px;
    order: 1;
  }

  .rooms-image img {
    transform: none !important;
  }

  .rooms-content {
    order: 2;
    padding: 60px 30px;
    text-align: center;
    background: linear-gradient(145deg, #0a2050 0%, #14336c 100%);
  }

  /* Accent glow on top for mobile */
  .rooms-content::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #f47b20, #ffb703);
    box-shadow: 0 0 15px rgba(244, 123, 32, 0.4);
  }

  .rooms-content h2 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .rooms-content h2 span {
    font-size: 22px;
  }

  .rooms-content h4 {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .rooms-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #e6ebf4;
    margin: 0 auto 25px;
    max-width: 90%;
  }

  .btn-room {
    align-self: center;
    font-size: 14px;
    padding: 12px 30px;
  }
}

/* ====== SMALL PHONES ====== */
@media (max-width: 600px) {
  .rooms-image {
    height: 320px;
  }

  .rooms-content {
    padding: 50px 20px;
  }

  .rooms-content h2 {
    font-size: 28px;
  }

  .rooms-content h4 {
    font-size: 16px;
  }

  .rooms-content p {
    font-size: 15px;
  }

  .btn-room {
    font-size: 13px;
    padding: 10px 26px;
  }
}

/* ====== MOBILE VISIBILITY FIX ====== */
.rooms-content,
.rooms-content h2,
.rooms-content p,
.rooms-content h4,
.btn-room {
  position: relative;
  z-index: 5;
}

@media (max-width: 991px) {
  .rooms-content,
  .rooms-image img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== HOTEL DINING SECTION ===== */
.hotel-dining-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: url('../images/new/.png') center/cover no-repeat;
  background-attachment: fixed;
}

/* Soft white overlay fade animation */
.hotel-dining-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  animation: fadeOverlay 2s ease-out forwards;
  z-index: 1;
}

/* Fade overlay keyframes */
@keyframes fadeOverlay {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ===== HOTEL DINING SECTION BASE ===== */
.hotel-dining-section {
  background: url('../images/new/sketch.png') center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Soft overlay effect */
.hotel-dining-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 1;
}

/* ===== CONTAINER ===== */
.hotel-dining-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* ===== LEFT CONTENT ===== */
.hotel-dining-content {
  flex: 0 0 50%;
  max-width: 44.7%;
  padding: 90px 80px;
  background: #fff;
  position: relative;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.hotel-dining-image {
  flex: 0 0 70%;
  max-width: 55.3%;
  position: relative;
  min-height: 100%;
  overflow: hidden;
}


/* Accent glow on RIGHT edge */
.hotel-dining-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to top, #f47b20, #ffb703);
  box-shadow: 0 0 20px rgba(244, 123, 32, 0.6);
  border-radius: 0 3px 3px 0;
  z-index: 3;
}

/* ===== TEXT STYLES ===== */
.hotel-dining-content h2 {
  font-size: 58px;
  color: #0a2050;
  font-weight: 300;
  margin-bottom: 15px;
}

.hotel-dining-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f47b20, #ffb703);
  margin: 20px 0 30px;
  border-radius: 2px;
}

.hotel-dining-content h4 {
  color: #f47b20;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  font-weight: 500;
}

.hotel-dining-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.hotel-dining-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.hotel-dining-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(244, 123, 32, 0.4);
}

/* Initial hidden state */
.hotel-dining-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: translateX(80px) scale(1.08);
  opacity: 0;

  transition: transform 1.4s ease, opacity 1.2s ease;
}

/* Active (when visible) */
.hotel-dining-section.is-visible .hotel-dining-image img {
  transform: translateX(0) scale(1.05);
  opacity: 1;
}

/* Overlay */
.hotel-dining-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at left 60%,
    rgba(10, 32, 80, 0.12) 10%,
    transparent 22%
  );
  opacity: 0;
  transition: opacity 1.4s ease;
  pointer-events: none;
}

.hotel-dining-section.is-visible .hotel-dining-overlay {
  opacity: 0.45;
}


/* ===========================================================
   ✅ IMPROVED RESPONSIVE DESIGN
   =========================================================== */

/* ===== TABLET (991px and below) ===== */
@media (max-width: 991px) {
    .hotel-dining-container {
        flex-direction: column;
        align-items: center;
    }

    .hotel-dining-image {
        /* Reset desktop flex/width */
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        
        order: 1; /* Image on top */
        height: 450px; /* Fixed height for consistent look */
        min-height: auto;
    }

    .hotel-dining-content {
        /* Reset desktop flex/width */
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        
        order: 2; /* Content below image */
        text-align: center;
        padding: 60px 30px;
        box-shadow: none; /* Shadow doesn't look good stacked */
    }

    /* Adjust the accent glow to be a top-border line */
    .hotel-dining-content::before {
        top: 0;
        right: 0;
        left: 0; /* Stretch across top */
        width: 100%;
        height: 5px;
        background: linear-gradient(to right, #f47b20, #ffb703);
    }

    .hotel-dining-content h2 {
        font-size: 36px;
        line-height: 1.2;
    }

    .hotel-dining-divider {
        margin: 15px auto 25px; /* Center the divider */
    }

    .hotel-dining-btn {
        align-self: center; /* Center the button */
    }
}

/* ===== MOBILE (600px and below) ===== */
@media (max-width: 600px) {
    .hotel-dining-image {
        height: 300px; /* Shorter image for mobile screens */
    }

    .hotel-dining-content {
        padding: 45px 20px;
    }

    .hotel-dining-content h2 {
        font-size: 28px;
    }

    .hotel-dining-content h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .hotel-dining-content p {
        font-size: 15px;
        max-width: 100%;
        line-height: 1.6;
    }

    .hotel-dining-btn {
        width: 100%; /* Full width button on small mobile */
        text-align: center;
    }
}

/* ===================================== */
/* ✨ PREMIUM LOCATION SECTION ✨ */
/* ===================================== */

.location-premium {
  position: relative;
  background: linear-gradient(to right, #ffffff 0%, #f8faff 25%, #eaf2ff 100%);
  background-image: url('../images/new/sketch.png');
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
  padding: 100px 0;
  z-index: 1;
}

.location-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.85);
  z-index: 0;
}

/* MAIN WRAPPER */
.location-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  position: relative;
  z-index: 2;
  transition: all 0.6s ease;
}

.location-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* LEFT IMAGE */
.location-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 500px;
  transition: all 1.2s ease;
}

.location-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,32,80,0.6), rgba(10,32,80,0.1));
}

.location-wrapper:hover .location-image {
  transform: scale(1.05);
}

/* RIGHT CONTENT */
.location-content {
  flex: 1;
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: #fff;
  z-index: 3;
}

.location-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #f47b20, #ffb703);
  box-shadow: 0 0 15px rgba(244, 123, 32, 0.5);
}

.highlight-tag {
  color: #f47b20;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 10px;
  display: block;
  animation: fadeSlideIn 1s ease;
}

.location-content h2 {
  font-size: 60px;
  color: #0a2050;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeSlideIn 1.2s ease;
}

.location-underline {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #f47b20, #ffb703);
  border-radius: 3px;
  margin-bottom: 25px;
}

.location-content p {
  font-size: 18px;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.8;
  animation: fadeSlideIn 1.4s ease;
}

.nearby-attractions {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.nearby-attractions li {
  font-size: 17px;
  color: #0a2050;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  animation: fadeSlideIn 1.6s ease;
}

.nearby-attractions li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #f47b20;
  font-weight: 700;
}

/* MAP BUTTON */
.btn-map {
  display: inline-block;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  color: #fff;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: fit-content;
  animation: fadeSlideIn 1.8s ease;
}

.btn-map:hover {
  background: linear-gradient(135deg, #ffb703, #f47b20);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(244, 123, 32, 0.4);
}

/* ===== ANIMATION ===== */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .location-wrapper {
    flex-direction: column;
  }

  .location-content {
    padding: 50px 30px;
    text-align: center;
  }

  .location-content::before {
    width: 100%;
    height: 6px;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #f47b20, #ffb703);
  }

  .btn-map {
    align-self: center;
  }

  .location-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .location-content {
    padding: 40px 20px;
  }

  .location-content h2 {
    font-size: 26px;
  }

  .btn-map {
    font-size: 14px;
    padding: 12px 28px;
  }
}
/* ================================
   SCROLL ANIMATION STATES
================================ */

/* INITIAL HIDDEN STATE */
.location-image,
.location-content > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

/* IMAGE INITIAL (LEFT) */
.location-image {
  transform: translateX(-120px);
  transition: transform 1.3s ease, opacity 1.2s ease;
}

/* ENTER VIEW */
.location-premium.in-view .location-image {
  transform: translateX(0);
  opacity: 1;
}

.location-premium.in-view .location-content > * {
  opacity: 1;
  transform: translateY(0);
}

/* STAGGER EFFECT */
.location-premium.in-view .highlight-tag { transition-delay: 0.1s; }
.location-premium.in-view h2 { transition-delay: 0.2s; }
.location-premium.in-view .location-underline { transition-delay: 0.3s; }
.location-premium.in-view p { transition-delay: 0.4s; }
.location-premium.in-view .nearby-attractions li { transition-delay: 0.5s; }
.location-premium.in-view .btn-map { transition-delay: 0.7s; }

/* EXIT VIEW */
.location-premium.out-view .location-image {
  transform: translateX(-120px);
  opacity: 0;
}

.location-premium.out-view .location-content > * {
  transform: translateY(30px);
  opacity: 0;
}

/* ============================= */
/* 🟦 Comfort Inn Jonesboro Footer */
/* ============================= */

.site-footer {
  background: linear-gradient(180deg, #0a1b4a 0%, #002f9f 100%);
  padding: 70px 20px 35px;
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
  border-top: 30px solid #f47b20;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern background */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(255, 183, 3, 0.1) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(244, 123, 32, 0.1) 0%, transparent 40%);
  opacity: 0.6;
  z-index: 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* ============================= */
/* 📍 COLUMN BASE STYLES */
/* ============================= */

.footer-col {
  flex: 1 1 320px;
  color: #f1f4ff;
}

.footer-title {
  font-size: 30px;
  color: #ffb703;
  margin-bottom: 20px;
  font-weight: 300;
  position: relative;
  padding-bottom: 8px;
  display: inline-block;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 3px;
  background: linear-gradient(90deg, #f47b20, #ffb703);
  border-radius: 2px;
}

/* ============================= */
/* 🏨 INFO COLUMN */
/* ============================= */
.footer-info {
  line-height: 1.7;
}

.footer-info a {
  color: #ffb703;
  text-decoration: none;
  font-weight: 300;
  transition: 0.3s ease;
}

.footer-info a:hover {
  color: #fff;
}

.footer-info .gen {
  font-size: 18px;
  color: #cdd7ff;
  margin-bottom: 15px;
}

/* ============================= */
/* 🔗 LINKS COLUMN */
/* ============================= */
.footer-links-columns {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-links-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-columns li {
  margin-bottom: 12px;
}

.footer-links-columns a {
  color: #f1f4ff;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-links-columns a:hover {
  color: #ffb703;
  transform: translateX(5px);
}

/* ============================= */
/* 🌐 SOCIAL LINKS */
/* ============================= */
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social li {
  margin-bottom: 12px;
}

.footer-social a {
  color: #f1f4ff;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
}

.footer-social i {
  color: #ffb703;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: #ffb703;
}

.footer-social a:hover i {
  transform: scale(1.2);
}

/* ============================= */
/* ⚙️ FOOTER BOTTOM */
/* ============================= */
.footer-bottom {
  max-width: 1300px;
  margin: 60px auto 0;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
  color: #eaeaea;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.footer-bottom-left p {
  margin: 0;
  color: #dbe5ff;
}

.footer-bottom-right {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 0.95rem;
}

.footer-bottom-right a,
.footer-bottom-right small {
  color: #ffb703;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
  color: #fff;
}

.footer-bottom-right span {
  color: #fff;
}
/* ============================= */
/* ✨ FOOTER SCROLL ANIMATION */
/* ============================= */

.site-footer {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

/* When visible */
.site-footer.footer-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: stagger child columns */
.footer-col {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.site-footer.footer-visible .footer-col {
  opacity: 1;
  transform: translateY(0);
}

.site-footer.footer-visible .footer-col:nth-child(1) {
  transition-delay: 0.1s;
}
.site-footer.footer-visible .footer-col:nth-child(2) {
  transition-delay: 0.25s;
}
.site-footer.footer-visible .footer-col:nth-child(3) {
  transition-delay: 0.4s;
}

/* ============================= */
/* 📱 RESPONSIVE DESIGN */
/* ============================= */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: left;
    gap: 35px;
  }

  .footer-links-columns {
    justify-content: flex-start;
    gap: 30px;
  }

  .footer-links-columns ul {
    width: 45%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-bottom-right {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-title {
    font-size: 22px;
  }

  .footer-links-columns ul {
    width: 100%;
  }

  .footer-links-columns a {
    font-size: 16px;
  }
}
/* ============================= */
/* 🟦 Comfort Inn Jonesboro Footer */
/* ============================= */

.ci-footer {
  background: linear-gradient(180deg, #0a1b4a 0%, #002f9f 100%);
  padding: 70px 20px 35px;
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
  border-top: 30px solid #f47b20;
  position: relative;
  overflow: hidden;
}

.ci-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,183,3,.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(244,123,32,.1) 0%, transparent 40%);
  opacity: .6;
}

.ci-footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  position: relative;
}

.ci-footer-col {
  flex: 1 1 320px;
  color: #f1f4ff;
}

.ci-footer-title {
  font-size: 30px;
  color: #ffb703;
  margin-bottom: 20px;
  font-weight: 300;
  position: relative;
  padding-bottom: 8px;
  display: inline-block;
}

.ci-footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 3px;
  background: linear-gradient(90deg, #f47b20, #ffb703);
}

/* Info */
.ci-footer-desc {
  color: #cdd7ff;
  margin-bottom: 15px;
}

.ci-footer-info a {
  color: #ffb703;
  text-decoration: none;
}

/* Links */
.ci-footer-links-cols {
  display: flex;
  gap: 50px;
}

.ci-footer-links-cols ul {
  list-style: none;
  padding: 0;
}

.ci-footer-links-cols li {
  margin-bottom: 12px;
}

.ci-footer-links-cols a {
  color: #f1f4ff;
  text-decoration: none;
  font-weight: 500;
}

/* Social */
.ci-footer-social ul {
  list-style: none;
  padding: 0;
}

.ci-footer-social a {
  color: #f1f4ff;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.ci-footer-social i {
  color: #ffb703;
}

/* Bottom */
.ci-footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.3);
  text-align: center;
  font-size: .95rem;
}

.ci-footer-bottom a {
  color: #ffb703;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .ci-footer-container {
    flex-direction: column;
    gap: 35px;
  }

  .ci-footer-links-cols {
    gap: 30px;
  }
}

/* ===== INNER HERO – ELEVATED VERSION ===== */

.inner-hero-section {
  position: relative;
  width: 100%;
  height: 440px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin-top: 145px;
  overflow: hidden;
}

/* Overlay */
.inner-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10, 32, 80, 0.85),
    rgba(10, 32, 80, 0.55)
  );
  z-index: 1;
}

/* Layout */
.inner-hero-overlay {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 6%;
  z-index: 2;
}

/* Content block */
.inner-hero-content {
  max-width:1220px;
  padding: 40px 45px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  border-left: 4px solid #ffb703;
}

/* Eyebrow */
.inner-hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #ffb703;
}

/* Title */
.inner-hero-content h1 {
  font-size: 46px;
  font-weight: 300;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 18px;
}

/* Divider */
.inner-hero-divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  margin-bottom: 20px;
}

/* Description */
.inner-hero-text {
  font-size: 17px;
  line-height: 1.7;
  color: #e6eaf2;
  max-width:1020px;
  margin-bottom: 28px;
}

/* Button */
.inner-hero-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.inner-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(244, 123, 32, 0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px),(max-width: 1080px) {
  .inner-hero-section {
    height: 450px;
    background-attachment: scroll;
	margin-top:0px;
  }

  .inner-hero-overlay {
    justify-content: center;
    text-align: center;
  }

  .inner-hero-content {
    padding: 30px 25px;
    border-left: none;
    border-top: 3px solid #ffb703;
  }

  .inner-hero-content h1 {
    font-size: 28px;
  }

  .inner-hero-text {
    font-size: 15px;
  }
}

/* === AMENITIES INTRO SECTION === */
.amenities-intro {
  padding:40px 80px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f4f7fb 100%
  );
  text-align: center;
}

.amenities-intro-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* Eyebrow text */
.amenities-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #f47b20;
  margin-bottom: 12px;
}

/* Main heading */
.amenities-heading {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 22px;
  background: linear-gradient(to right, #0a2050, #ffb703);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Divider */
.amenities-divider {
  width: 70px;
  height: 3px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  border-radius: 3px;
}

/* Description text */
.amenities-text {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  max-width: 1400px;
  margin: 0 auto;
}

/* === Responsive === */
@media (max-width: 768px) {
  .amenities-heading {
    font-size: 32px;
  }

  .amenities-text {
    font-size: 16px;
  }
}

/* ===== AMENITIES SECTION (3 COLUMN – HOTEL STYLE) ===== */

.custom-amenities {
  padding: 30px 70px;
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
}

.custom-amenities-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section subtitle */
.custom-amenities-subtitle {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 35px;
  background: linear-gradient(to right, #0a2050, #ffb703);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Note text */
.custom-amenities-note {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: -20px;
  margin-bottom: 45px;
}

/* 3-column grid */
.custom-amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Lists */
.custom-amenities-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Amenity item */
.custom-amenities-grid li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  margin-bottom: 14px;
  background: #ffffff;
  border-radius: 8px;
  font-size: 15.5px;
  font-weight: 500;
  color: #0a2050;
  box-shadow: 0 10px 25px rgba(10, 32, 80, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover */
.custom-amenities-grid li:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(10, 32, 80, 0.12);
}

/* Icon badge */
.custom-amenities-grid li i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  color: #ffffff;
  font-size: 16px;
}

/* Tablet (2 columns) */
@media (max-width: 1199px) {
  .custom-amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (1 column) */
@media (max-width: 767px) {
  .custom-amenities {
    padding: 60px 15px;
  }

  .custom-amenities-subtitle {
    font-size: 22px;
  }

  .custom-amenities-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .custom-amenities-grid li {
    font-size: 15px;
    padding: 14px 16px;
  }
}
/* === THINGS TO DO INTRO SECTION === */
.things-intro {
  padding: 20px 80px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f4f7fb 100%
  );
  text-align: center;
}

.things-intro-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* Eyebrow text */
.things-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #f47b20;
  margin-bottom: 12px;
}

/* Main heading */
.things-heading {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 22px;
  background: linear-gradient(to right, #0a2050, #ffb703);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Divider */
.things-divider {
  width: 70px;
  height: 3px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  border-radius: 3px;
}

/* Description text */
.things-text {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  max-width: 1400px;
  margin: 0 auto;
}

/* === Responsive === */
@media (max-width: 768px) {
  .things-intro {
    padding: 30px 20px;
  }

  .things-heading {
    font-size: 32px;
  }

  .things-text {
    font-size: 16px;
  }
}
/* ===== THINGS TO DO GRID – PREMIUM VERSION ===== */

.things-grid-section {
  padding: 30px 70px;
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
}

.things-grid-section .container {
  max-width: 1200px;
  margin: auto;
}

/* Section titles */
.things-title {
  font-size: 26px;
  font-weight: 600;
  margin: 60px 0 35px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #0a2050;
  position: relative;
}



/* Title icon */
.things-title i {
  font-size: 22px;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Grid layout */
.things-grid.two-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 70px;
}

/* Card */
.thing-card {
  position: relative;
  background: #ffffff;
  padding: 22px 24px 22px 26px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(10, 32, 80, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

/* Accent rail */
.thing-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 9px;
  height: 100%;
  background: linear-gradient(180deg, #f47b20, #ffb703);
}

/* Hover */
.thing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(10, 32, 80, 0.18);
}

/* Card title */
.thing-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: #0a2050;
  margin-bottom: 6px;
}

/* Distance */
.thing-card p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .things-grid-section {
    padding: 40px 20px;
  }

  .things-grid.two-cols {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .things-title {
    font-size: 22px;
  }
}
/* ===== Thing Card Link Styling ===== */

.thing-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.thing-link:hover,
.thing-link:focus {
  text-decoration: none;
  color: inherit;
}

/* === CONTACT INTRO SECTION === */
.contact-intro {
  padding: 40px 80px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f4f7fb 100%
  );
  text-align: center;
}

.contact-intro-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* Eyebrow text */
.contact-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #f47b20;
  margin-bottom: 12px;
}

/* Main heading */
.contact-heading {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 22px;
  background: linear-gradient(to right, #0a2050, #ffb703);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Divider */
.contact-divider {
  width: 70px;
  height: 3px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  border-radius: 3px;
}

/* Description text */
.contact-text {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  max-width: 1200px;
  margin: 0 auto;
}

/* === Responsive === */
@media (max-width: 768px) {
  .contact-intro {
    padding: 30px 20px;
  }

  .contact-heading {
    font-size: 32px;
  }

  .contact-text {
    font-size: 16px;
  }
}
/* ===== CONTACT INFO SECTION – HOTEL STYLE ===== */

.contact-section-hero {
  padding: 50px 70px;
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
}

.contact-wrapper-hero {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(10, 32, 80, 0.12);
  overflow: hidden;
}

/* Left content */
.contact-info-box {
  flex: 1;
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Intro text */
.contact-intro-text {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
}

/* Details card */
.contact-details-area {
  background: #f9fbfe;
  padding: 25px;
  border-left: 4px solid #ffb703;
  border-radius: 10px;
}

/* Heading */
.contact-details-area h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0a2050;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-details-area h4 i {
  color: #f47b20;
}

/* List */
.contact-details-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details-area ul li {
  font-size: 15px;
  color: #333;
  margin-bottom: 14px;
  line-height: 1.6;
}

/* Links */
.contact-details-area a {
  color: #0a2050;
  font-weight: 600;
  text-decoration: none;
}

.contact-details-area a:hover {
  color: #f47b20;
  text-decoration: underline;
}

/* Right image */
.contact-image-box {
  flex: 1;
  background: #eef3f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .contact-section-hero {
    padding: 40px 20px;
  }

  .contact-wrapper-hero {
    flex-direction: column;
  }

  .contact-image-box {
    height: 280px;
  }

  .contact-info-box {
    padding: 35px 25px;
  }
}
/* === LOCATION INTRO SECTION (ON-BRAND) === */

.location-intro {
  padding: 40px 80px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f4f7fb 100%
  );
  text-align: center;
}

.location-intro-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* Eyebrow */
.location-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #f47b20;
  margin-bottom: 12px;
}

/* Heading */
.location-heading {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 22px;
  background: linear-gradient(to right, #0a2050, #ffb703);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Divider */
.location-divider {
  width: 70px;
  height: 3px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  border-radius: 3px;
}

/* Description */
.location-text {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .location-intro {
    padding: 30px 20px;
  }

  .location-heading {
    font-size: 32px;
  }

  .location-text {
    font-size: 16px;
  }
}
/* ===== LOCATION – GETTING HERE (ON-BRAND) ===== */

.location-section-hero {
  padding: 50px 70px;
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
}

.location-wrapper-hero {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(10, 32, 80, 0.12);
  overflow: hidden;
}

/* Left content */
.location-info-box {
  flex: 1;
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Eyebrow */
.location-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #f47b20;
  margin-bottom: 10px;
}

/* Heading */
.location-heading {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 18px;
  background: linear-gradient(to right, #0a2050, #ffb703);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */
.location-description {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

/* Info cards */
.coordinates-area,
.directions-area {
  background: #f9fbfe;
  padding: 25px;
  border-left: 4px solid #ffb703;
  border-radius: 10px;
  margin-bottom: 25px;
}

/* Card titles */
.coordinates-area h4,
.directions-area h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0a2050;
  display: flex;
  align-items: center;
  gap: 10px;
}

.coordinates-area h4 i,
.directions-area h4 i {
  color: #f47b20;
}

/* Coordinates list */
.coordinates-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.coordinates-area ul li {
  font-size: 15px;
  color: #333;
  margin-bottom: 8px;
}

/* Form */
.directions-area form input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #d0d7e2;
  font-size: 15px;
}

.directions-area form button {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  color: #ffffff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 8px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.directions-area form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(244, 123, 32, 0.4);
}

/* Map */
.location-map-box {
  flex: 1;
  background: #eef3f9;
}

.location-map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .location-section-hero {
    padding: 40px 20px;
  }

  .location-wrapper-hero {
    flex-direction: column;
  }

  .location-map-box iframe {
    min-height: 300px;
  }

  .location-heading {
    font-size: 32px;
  }
}
/* ===== SITEMAP SECTION – COMFORT INN JONESBORO STYLE ===== */

.sitemap-section {
  padding: 70px 20px;
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
  text-align: center;
}

.sitemap-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.sitemap-title {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 18px;
  text-transform: uppercase;
  background: linear-gradient(to right, #0a2050, #ffb703);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.sitemap-subtitle {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  max-width: 1280px;
  margin: 0 auto 60px;
}

/* Grid */
.sitemap-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.sitemap-block {
  background: #ffffff;
  padding: 36px 34px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(10, 32, 80, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Accent bar */
.sitemap-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #f47b20, #ffb703);
}

/* Hover */
.sitemap-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(10, 32, 80, 0.18);
}

/* Block heading */
.sitemap-block h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #0a2050;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* List */
.sitemap-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-block ul li {
  margin-bottom: 14px;
}

/* Links */
.sitemap-block ul li a {
  font-size: 18px;
  font-weight: 500;
  color: #0a2050;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Chevron icon */
.sitemap-block ul li a i {
  font-size: 13px;
  color: #f47b20;
  transition: transform 0.3s ease;
}

/* Hover link */
.sitemap-block ul li a:hover {
  color: #f47b20;
  transform: translateX(4px);
}

.sitemap-block ul li a:hover i {
  transform: translateX(4px);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .sitemap-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sitemap-links {
    grid-template-columns: 1fr;
  }

  .sitemap-title {
    font-size: 32px;
  }

  .sitemap-subtitle {
    font-size: 16px;
  }
}
/* ===== FAQ SECTION – COMFORT INN JONESBORO STYLE ===== */

.faq-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
  text-align: center;
  position: relative;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.faq-title a {
  font-size: 42px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  background: linear-gradient(to right, #0a2050, #ffb703);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 20px;
}

/* FAQ List */
.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  text-align: left;
  margin-top: 60px;
}

/* FAQ Card */
.faq-item {
  background: #ffffff;
  padding: 34px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(10, 32, 80, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Accent rail */
.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #f47b20, #ffb703);
}

/* Hover */
.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(10, 32, 80, 0.18);
}

/* Question */
.faq-item h2 {
  font-size: 22px;
  font-weight: 600;
  color: #0a2050;
  margin-bottom: 14px;
  line-height: 1.4;
}

/* Answer */
.faq-item p {
  font-size: 16.5px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 0;
}

/* Links inside answers */
.faq-item a {
  color: #f47b20;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.faq-item a:hover {
  color: #0a2050;
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .faq-title a {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px;
  }

  .faq-title a {
    font-size: 30px;
  }

  .faq-item {
    padding: 26px;
  }

  .faq-item h2 {
    font-size: 20px;
  }

  .faq-item p {
    font-size: 15.5px;
  }
}
/* ===== EAT & DRINK SECTION ===== */
.eat-section {
  padding: 100px 70px;
  background: radial-gradient(circle at top, #f9fafb 0%, #eef2f7 100%);
}


.eat-header {
  text-align: center;
  margin-bottom: 70px;
}

.eat-header h1 {
  font-size: 52px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 14px;
  background: linear-gradient(to right, #0a2050, #ffb703);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eat-header p {
  font-size: 18px;
  color: #555;
  max-width: 720px;
  margin: 0 auto;
}


.eat-category-rail {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.filter-btn {
  padding: 12px 26px;
  border-radius: 40px;
  border: none;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(14px);
  color: #0a2050;
  box-shadow: 0 12px 28px rgba(10,32,80,.12);
  cursor: pointer;
  transition: all .35s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg,#f47b20,#ffb703);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(244,123,32,.35);
}


.eat-filter-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}


/* ===== CARD ===== */
.eat-card {
  position: relative;
  height: 320px;
  border-radius: 22px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(10,32,80,.18);
  transition: transform .45s ease, box-shadow .45s ease;
}

.eat-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 85px rgba(10,32,80,.28);
}

/* Image */
/* ===== ICON CORE ===== */
.eat-icon {
  width: 120px;
  height: 120px;
  margin: 55px auto 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at top left, #ffd166, #ff9f1c 45%, #f47b20 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  box-shadow:
    0 22px 45px rgba(244,123,32,.45),
    inset 0 0 0 2px rgba(255,255,255,.35);
  transition: 
    transform .55s cubic-bezier(.2,.8,.2,1),
    opacity .35s ease,
    box-shadow .55s ease;
}

/* Icon symbol */
.eat-icon i {
  font-size: 70px;
  color: #ffffff;
  text-shadow: 
    0 4px 12px rgba(0,0,0,.35);
  transition: transform .45s ease;
}

/* ===== GLOW RING ===== */
.eat-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background:
    conic-gradient(
      from 0deg,
      transparent 0%,
      rgba(255,183,3,.6) 25%,
      rgba(255,255,255,.9) 45%,
      rgba(255,183,3,.6) 65%,
      transparent 100%
    );
  opacity: .55;
  filter: blur(8px);
  z-index: -1;
  transition: opacity .45s ease, transform .9s linear;
}

/* ===== INNER GLASS LAYER ===== */
.eat-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.45),
      rgba(255,255,255,.05)
    );
  opacity: .55;
}

/* ===== HOVER INTERACTION ===== */
.eat-card:hover .eat-icon {
  transform: scale(.78) translateY(6px);
  opacity: .12;
  box-shadow:
    0 35px 75px rgba(10,32,80,.35);
}

.eat-card:hover .eat-icon i {
  transform: scale(1.15);
}

.eat-card:hover .eat-icon::before {
  opacity: .9;
  transform: rotate(360deg);
}

.eat-card:hover .eat-icon {
  transform: scale(.82);
  opacity: .15;
}


/* ===== OVERLAY ===== */
.eat-card-overlay {
  position: absolute;
  inset: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.02) 0%,
    rgba(10,32,80,0.97) 100%
  );
  color: #ffffff;
  transform: translateY(65px);
  transition: transform .45s ease;
}

.eat-card:hover .eat-card-overlay {
  transform: translateY(0);
}
.eat-card-top {
  font-size: 14px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #ffb703;
  margin-bottom: 10px;
 font-weight:700; 
}

.eat-card-overlay h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.eat-card-overlay p {
  font-size: 14px;
  color: #d1d5db;
  margin-bottom: 18px;
  line-height: 1.5;
}

.eat-card-overlay a {
  font-size: 14px;
  font-weight: 600;
  color: #ffb703;
  text-decoration: none;
  transition: transform .3s ease;
}

.eat-card-overlay a:hover {
  transform: translateX(4px);
}

/* ===== FILTER STATES ===== */
.eat-card.is-hidden {
  display: none;
}

.eat-card.fade-in {
  animation: premiumFade .45s ease forwards;
}

@keyframes premiumFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .eat-filter-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .eat-filter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .eat-section {
    padding: 70px 20px;
  }

  .eat-filter-grid {
    grid-template-columns: 1fr;
  }

  .eat-header h1 {
    font-size: 36px;
  }
}
.events-placeholder {
  padding: 80px 20px;
  text-align: center;
  background: #f9fafb;
}

.events-placeholder-content {
  max-width: 700px;
  margin: auto;
}

.events-placeholder h2 {
  font-size: 32px;
  font-weight: 500;
  color: #0a2050;
  margin-bottom: 16px;
}

.events-placeholder p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}
/* Base Styles */
.events-slider-section {
  padding: 80px 30px;
  background: #f9fafb;
  max-width: 1600px;
  margin: auto;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}

.calendar-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: #0a2050;
  min-width: 260px;
  text-align: center;
}

.cal-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  font-size: 28px;
  cursor: pointer;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  color: #fff;
  box-shadow: 0 12px 30px rgba(244, 123, 32, 0.35);
  transition: transform 0.3s ease;
}

.cal-nav:hover {
  transform: scale(1.1);
}

/* Remove Weekdays */
.calendar-weekdays {
  display: none; /* Hide Weekdays */
}

/* Calendar Days Grid */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.calendar-day {
  background: #ffffff;
  min-height: 120px;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 10px 25px rgba(10, 32, 80, 0.08);
  font-size: 17px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

/* Hover Effect for the Day */
.calendar-day:hover {
  box-shadow: 0 15px 35px rgba(10, 32, 80, 0.15);
}

/* Today Highlight */
.calendar-day.today {
  border: 2px solid #ffb703;
  box-shadow: 0 8px 20px rgba(255, 183, 3, 0.35);
}

.calendar-day.today strong {
  color: #ffb703;
}

/* Events */
.event {
  background: linear-gradient(135deg, #0a2050, #1f3a8a);
  color: #fff;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 12px;
  margin-bottom: 6px;
}

/* Event Popup Styles on Click */
.event-popup {
  display: none;
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(255 255 255);
  padding: 20px;
  border-radius: 10px;
  width: 500px;
  max-height: 100%;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.event-popup .event-title1 {
  font-size: 18px;
  font-weight: 600;
  color: #ffb703;
  margin-bottom: 10px;
}

.event-popup .event-time {
  font-size: 16px;
  color: #d1d5db;
  margin-bottom: 10px;
}

.event-popup .event-description {
  font-size: 17px;
  color: #fff;
  margin-bottom: 10px;
}

.event-popup .event-link {
  font-size: 14px;
  font-weight: 600;
  color: #ffb703;
  text-decoration: underline;
  cursor: pointer;
}

.event-popup .event-link:hover {
  color: #000;
}

/* Close Button */
.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  color: #000;
  cursor: pointer;
}


/* Mobile & Tablet Responsive Styles */
@media (max-width: 768px) {
  /* Show the current day status below the calendar on mobile and tablet */
  .calendar-status {
    display: block; /* Show on mobile */
    margin-top: 10px;
    text-align: center;
  }

  .calendar-status h3 {
    font-size: 20px;
    color: #0a2050;
  }

  .calendar-status p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
  }

  .calendar-status .event-time {
    font-size: 15px;
    color: #ffb703;
    font-weight: bold;
  }
}



/* Mobile & Tablet Responsive Styles */
@media (max-width: 768px) {
	
	
	.calendar-header {
  
  gap: 0px;
  
}
  /* Calendar Container Adjustment */
  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
  }

  /* Hide events inside the calendar on mobile */
  .calendar-day .event {
    display: none; /* Hide events on the calendar for mobile */
  }

  /* Highlight the current day properly */
  .calendar-day.today {
    border: 2px solid #ffb703; /* Highlight current day with gold */
    box-shadow: 0 8px 20px rgba(255, 183, 3, 0.35);
  }

  /* Show the current day status below the calendar */
  .calendar-status {
    display: block;
    margin-top: 10px;
    text-align: center;
  }

  /* Improve the readability of the event description for mobile */
  .calendar-status h3 {
    font-size: 20px;
    color: #0a2050;
  }

  .calendar-status p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
  }

  /* Add space between calendar and the current event section */
  .calendar-grid {
    margin-bottom: 0px;
  }

  /* Fix calendar header margin and spacing */
  .calendar-header {
    margin-bottom: 40px;
  }

  .calendar-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #0a2050;
    text-align: center;
  }

  /* Calendar Day Styling */
  .calendar-day {
    background: #ffffff;
    min-height: 40px; /* Decrease the height for better layout on smaller screens */
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 8px 15px rgba(10, 32, 80, 0.1);
    font-size: 14px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
  }

  /* Calendar Day Hover Effect */
  .calendar-day:hover {
    box-shadow: 0 15px 35px rgba(10, 32, 80, 0.15);
  }

  /* Calendar Day Today Highlight */
  .calendar-day.today strong {
    color: #ffb703; /* Yellow color for today's date */
  }

  /* Previous & Next Month Navigation Button Adjustments */
  .cal-nav {
    width: 40px; /* Smaller navigation buttons */
    height: 40px;
    font-size: 24px;
	
  }

  /* Adjust Popup size on Mobile */
  .event-popup {
    width: 90vw; /* Make the popup responsive */
    max-width: 450px;
  }

  /* Date Text Size on Mobile */
  .calendar-day strong {
    font-size: 16px;
  }

  /* Adjust Month Header */
  .calendar-header h2 {
    font-size: 22px;
  }
}
/* Mobile & Tablet Responsive Styles */
@media (max-width: 768px) {
  /* Ensure event popup appears correctly */
  .event-popup {
    display: none !important; /* Default state is hidden */
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(255 255 255);
    padding: 20px;
    border-radius: 10px;
    width: 90vw; /* Make the popup responsive */
    max-width: 450px;
    z-index: 1000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  }

  /* Ensure popup content is styled well on mobile */
  .event-popup .event-title1,
  .event-popup .event-time,
  .event-popup .event-description {
    font-size: 16px;
  }

  /* Close button */
  .event-popup .close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    color: #000;
    cursor: pointer;
  }
}

/* Mobile Event Popup for Day's Events */
.mobile-event-popup {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow-y: auto;
}

.mobile-event-popup h3 {
  font-size: 20px;
  color: #0a2050;
  margin-bottom: 10px;
}

.mobile-event-popup .event {
  margin-bottom: 15px;
  font-size: 16px;
}

.mobile-event-popup .close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  color: #000;
  cursor: pointer;
}
/* Calendar Status Section (for mobile view) */
#calendarStatus {
  display: none;
  background-color: #f9fafb;
  padding: 20px;
  margin-top: 5px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(10, 32, 80, 0.1);
}

#calendarStatus h3 {
  font-size: 18px;
  color: #0a2050;
}

#calendarStatus p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

@media (max-width: 768px) {
  /* Show calendar status below calendar on mobile */
  #calendarStatus {
    display: block;
  }
}
/* Mobile & Tablet Responsive Styles */
@media (max-width: 1180px) {
  /* Show the current day status below the calendar on mobile and tablet */
  .calendar-status {
    display: block; /* Show on mobile/tablet */
    margin-top: 10px;
    text-align: center;
  }

  .calendar-status h3 {
    font-size: 20px;
    color: #0a2050;
  }

  .calendar-status p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
  }

  .calendar-status .event-time {
    font-size: 15px;
    color: #ffb703;
    font-weight: bold;
  }

  /* Calendar Container Adjustment for Mobile and Tablets */
  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
  }

  /* Hide events inside the calendar on mobile */
  .calendar-day .event {
    display: none; /* Hide events on the calendar for mobile/tablet */
  }

  /* Highlight the current day properly */
  .calendar-day.today {
    border: 2px solid #ffb703; /* Highlight current day with gold */
    box-shadow: 0 8px 20px rgba(255, 183, 3, 0.35);
  }

  /* Show the current day status below the calendar */
  .calendar-status {
    display: block;
    margin-top: 10px;
    text-align: center;
  }

  /* Calendar Day Styling */
  .calendar-day {
    background: #ffffff;
    min-height: 40px; /* Decrease the height for better layout on smaller screens */
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 8px 15px rgba(10, 32, 80, 0.1);
    font-size: 14px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
  }

  /* Calendar Day Hover Effect */
  .calendar-day:hover {
    box-shadow: 0 15px 35px rgba(10, 32, 80, 0.15);
  }

  /* Calendar Day Today Highlight */
  .calendar-day.today strong {
    color: #ffb703; /* Yellow color for today's date */
  }

  /* Previous & Next Month Navigation Button Adjustments */
  .cal-nav {
    width: 40px; /* Smaller navigation buttons */
    height: 40px;
    font-size: 24px;
  }

  /* Adjust Popup size on Mobile/Tablet */
  .event-popup {
    width: 90vw; /* Make the popup responsive */
    max-width: 450px;
  }

  /* Date Text Size on Mobile */
  .calendar-day strong {
    font-size: 16px;
  }

  /* Adjust Month Header */
  .calendar-header h2 {
    font-size: 22px;
  }
}


/* Base Styles */
.reservation-box {
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 2;
  position: relative;
  margin-bottom:50px;
}

.reservation-container {
  display: flex;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background: #0a2050; /* Deep gray background */
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  width: 100%;
  max-width: 1300px;
  height: 120px;
}

/* Flex layout */
.reservation-container form {
  display: flex;
  width: 100%;
}

.res-flex {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  align-items: stretch;
}

/* Form items */
.res-item {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  flex: 1;
  background: transparent;
}

.res-item.small {
  width: auto;
  min-width: 120px;
  text-align: center;
}

/* Labels */
.res-item label {
  font-size: 12px;
  color: #fda90a; /* Light teal accent */
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

/* Inputs & icons */
.res-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.res-content.center {
  justify-content: center;
}

.res-date, .res-number {
  font-size: 22px;
  font-weight: 600;
  color: #f5f5f5; /* Soft white */
  font-family: 'Montserrat', Arial, sans-serif;
}

.res-content i {
  font-size: 22px;
  color: #fda90a; /* Vibrant purple accent */
  margin-left: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.res-content i:hover {
  color: #f5f5f5; /* White hover */
}

/* Inputs & selects */
.res-input, .res-select {
  background: transparent;
  border: none;
  color: #f5f5f5;
  font-size: 20px;
  font-weight: 400;
  font-family: 'Montserrat', Arial, sans-serif;
  appearance: none;
  outline: none;
  text-align: left;
  cursor: pointer;
}

.res-select option {
  color: #2a2a2a; /* Dark text for dropdown */
}

/* Button */
.res-button {
  background: #fda90a; /* Vibrant purple */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-width: 240px;
  flex-shrink: 0;
}

.res-button button {
  background: none;
  border: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 40px;
  font-size: 16px;
  height: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.res-button:hover {
  background: #00BCD4; /* Light teal hover */
}

.res-button:hover button {
  color: #212121; /* Dark text on hover */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .reservation-container {
    flex-direction: column;
    width: 95%;
    height: auto;
  }

  .res-flex {
    flex-direction: column;
  }

  .res-item {
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px 20px;
  }

  .res-button {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    margin-top: 10px;
  }

  .res-button button {
    width: 100%;
    padding: 18px 0;
  }

  .ui-datepicker {
    font-size: 14px;
    width: 90vw !important;
  }
}

/* Compact layout for mobile */
@media (max-width: 480px) {
  .res-item {
    padding: 10px 15px;
  }

  .res-input, .res-select {
    font-size: 16px;
  }

  .res-button button {
    font-size: 14px;
  }
}

/* Datepicker theming */
.ui-datepicker {
  background: rgba(42, 42, 42, 0.98);
  border: 1px solid #6A1B9A; /* Vibrant purple border */
  color: #f5f5f5; /* Soft white text */
  font-family: 'Montserrat', sans-serif;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  z-index: 9999 !important;
}

.ui-datepicker-header {
  background: #6A1B9A; /* Vibrant purple header */
  color: #fff;
  border-radius: 6px 6px 0 0;
  padding: 5px 0;
  font-weight: 600;
}

.ui-datepicker-calendar th {
  color: #00BCD4; /* Light teal for weekday headers */
  font-weight: 500;
}

.ui-state-default {
  background: transparent;
  color: #fff;
  border-radius: 4px;
  transition: 0.2s ease;
}

.ui-state-hover {
  background: #00BCD4; /* Light teal hover */
  color: #212121; /* Dark text on hover */
}

.ui-state-active {
  background: #6A1B9A; /* Vibrant purple active */
  color: #fff;
}
