﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Literata:wght@400;500;600&family=Montserrat:wght@400;500;600&display=swap');
/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333;
}
/* ========== HEADER STYLING ========== */

.site-header {
  background: linear-gradient(to bottom, #000000, #22222200);
  color: #F5F5F5;
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  
}

.header-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
}

.hamburger-wrapper {
  display: flex;
  align-items: center;
  margin-right: 16px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 18px;
  width: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-right: 10px;
}

.hamburger .bar {
  width: 24px;
  height: 3px;
  background-color: #F5F5F5;
  display: block;
  border-radius: 2px;
}

.menu-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #F5F5F5;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
}

.location {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #F5F5F5;
  opacity: 0.85;
  font-weight: 500;
}

.header-center {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.logo {
  height: 80px;
  margin-left: 50px; /* Adjust this value as needed */
}


.header-right {
  display: flex;
  align-items: center;
}

.phone-link {
  color: #F5F5F5;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-decoration: none;
  margin-right: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-link:hover {
  color: #FFB300;
}


.reserve-btn {
  border: 2px solid #FFB300;
  background-color: transparent;
  padding: 8px 16px;
  color: #FFB300;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  transition: background 0.3s, color 0.3s;
  font-weight: 600;
}

.reserve-btn:hover {
  background-color: #FFB300;
  color: #000;
}
.gold-text {
  color: #FFC107; /* Gold shade */
  font-weight: bold;
}

@media (max-width: 768px) {
  .site-header {
    padding: 10px 0;
	background: linear-gradient(to bottom, #000000, #222);
  }

  .header-container {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
  }

  .header-left,
  .header-right {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .hamburger-wrapper {
    margin-right: 0;
  }

  .logo {
    height: 60px;
	margin-left: 10px;
	
  }

  .menu-label,
  .location {
    font-size: 12px;
  }

  .time {
    font-size: 12px;
    margin-right: 0;
  }

  .reserve-btn {
    font-size: 13px;
    padding: 6px 10px;
  }

  .header-center {
    justify-content: center;
    width: 100%;
    margin-top: 4px;
    margin-bottom: 4px;
  }
}

/* ========== SLIDE MENU STYLING ========== */

.slide-menu {
  position: fixed;
  top: 0;
  left: -660px;
  width: 660px;
  height: 100vh;
  display: flex;
  transition: left 0.3s ease;
  z-index: 1001;
  overflow: hidden;
  
}

.slide-menu.open {
  left: 0;
}

.slide-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.slide-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-container {
  display: flex;
  height: 100vh;
}

.menu-main {
  position: relative;
  width: 360px;
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  padding: 40px 30px;
  background-color: #111;
  overflow: hidden;
  z-index: 1;
}

.menu-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.92)),
    url('../images/sketch.png') center/cover no-repeat;
  z-index: -1;
}

.menu-header {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: #F5F5F5;
  margin-bottom: 50px;
}

.menu-close {
  background: none;
  border: none;
  font-size: 22px;
  font-weight: 400;
  color: #F5F5F5;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-close:hover {
  transform: rotate(90deg);
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: auto;
}

.menu-list::-webkit-scrollbar {
  display: none;
}

.menu-list li {
  margin: 25px 0;
}

.menu-list li a {
  color: #F5F5F5;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  padding-bottom: 6px;
}

.menu-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: #FFB300;
  transition: width 0.3s ease;
}

.menu-list li a:hover::after {
  width: 100%;
  background: #D84315;
}

.menu-list li a:hover {
  color: #D84315;
}

.menu-footer {
  font-size: 12px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #aaa;
}

.menu-footer a {
  color: #ccc;
  text-decoration: none;
}

.menu-footer a:hover {
  text-decoration: underline;
  color: #D84315;
}

.menu-sub {
  display: none;
  margin-top: 10px;
  padding-left: 15px;
  border-left: 2px solid #444;
  animation: fadeInDown 0.3s ease forwards;
}

/* Show submenu on hover */
.has-submenu:hover > .menu-sub {
  display: block;
  animation: fadeInDown 0.3s ease forwards;
}

/* Rotate arrow on hover */
.has-submenu:hover > a .arrow {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}


.menu-sub li {
  margin: 8px 0;
}

.menu-sub a {
  font-size: 16px;
  color: #ccc;
  text-decoration: none;
  padding-left: 8px;
  transition: color 0.3s ease;
}

.menu-sub a:hover {
  color: #FFB300;
}

.has-submenu > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.has-submenu.open > a .arrow {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Core Hero Styles */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: #121212; /* Deep black background */
  
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.5s ease, visibility 1.5s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  animation: overlayPulse 6s ease-in-out infinite;
}

@keyframes overlayPulse {
  0%, 100% { background: rgba(0, 0, 0, 0.65); }
  50% { background: rgba(0, 0, 0, 0.55); }
}

/* TEXT CONTENT */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 0 1rem;
  max-width: 800px;
}

.subtitle {
  font-size: 1.5rem;
  color: #ffc107;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: #ffc107;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
}
.desc {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 1em;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.cta-btn {
  padding: 14px 28px;
  background: #FFC107;
  color: #1a1a1a;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.3s ease;
  border-radius: 4px;
}

.cta-btn:hover {
  background: #e0a800;
  color: #fff;
}

/* Vertical Nav Buttons */
.slide-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1rem;
  letter-spacing: 2px;
  color: #FFC107;
  background: transparent;
  cursor: pointer;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
  z-index: 3;
  transition: all 0.3s ease;
}

.slide-prev {
  left: 0;
  border-right: 1px solid transparent;
  border-radius: 0 8px 8px 0;
  border-image: linear-gradient(to bottom, #FFC107, transparent, #FFC107) 1;
}

.slide-next {
  right: 0;
  border-left: 1px solid transparent;
  border-radius: 8px 0 0 8px;
  border-image: linear-gradient(to bottom, #FFC107, transparent, #FFC107) 1;
}

.slide-nav:hover {
  color: #fff;
  border-color: #fff;
}

/* Counter */
.counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: #FFC107;
  font-family: 'Georgia', serif;
  z-index: 3;
  user-select: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-slide {
    background-attachment: scroll;
  }

  .hero-slider {
    margin-top: 130px;
    height: 60vh;
  }

  .title {
    font-size: 2.8rem;
  }

  .desc {
    font-size: 1rem;
  }

  .subtitle {
    font-size: 1.3rem;
  }
}

/* ===== RESERVATION BOX SECTION (BUDGET INN THEME) ===== */
.below-section {
  position: relative;
  padding: 30px 0;
  text-align: center;
  background: #fff8ee; /* light warm beige background */
  z-index: 1;
}

/* Subtle overlay shimmer */
.below-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 2px, transparent 3px);
  background-size: 120px 120px;
  animation: twinkle 6s infinite linear;
  opacity: 0.15;
  z-index: 0;
}

/* Headings */
.below-section h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #c40000; /* brand red */
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.below-section p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* Reservation box wrapper */
.reservation-box {
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 2;
  position: relative;
}

.reservation-container {
  display: flex;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background: #000; /* deep charcoal background */
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  width: 100%;
  max-width: 1200px;
  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: #f8b400; /* warm gold 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: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
}

.res-content i {
  font-size: 22px;
  color: #f8b400; /* gold icon accent */
  margin-left: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.res-content i:hover {
  color: #ffffff; /* white hover */
}

/* Inputs & selects */
.res-input, .res-select {
  background: transparent;
  border: none;
  color: #fff;
  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: #c40000; /* brand red */
  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: #f8b400; /* gold hover */
}
.res-button:hover button {
  color: #2a2a2a; /* 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 #f8b400;
  color: #fff;
  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: #c40000; /* red header */
  color: #fff;
  border-radius: 6px 6px 0 0;
  padding: 5px 0;
  font-weight: 600;
}

.ui-datepicker-calendar th {
  color: #f8b400;
  font-weight: 500;
}

.ui-state-default {
  background: transparent;
  color: #fff;
  border-radius: 4px;
  transition: 0.2s ease;
}

.ui-state-hover {
  background: #f8b400;
  color: #2a2a2a;
}

.ui-state-active {
  background: #c40000;
  color: #fff;
}


.welcome-section {
  background: #f9f7f3;
  padding: 80px 20px;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  scroll-behavior: smooth;
}

.welcome-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  transition: all 0.5s ease;
}



/* Divider */
.divider {
  width: 60px;
  height: 4px;
  background: #eeef0f; /* gold */
  margin: 16px 0;
}

/* Paragraphs */
.welcome-left p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  font-size: 0.95rem;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  font-weight: 600;
}

.btn-primary {
  background: #eeef0f;
  color: #111;
  border: none;
}

.btn-primary:hover {
  background: #e0a800;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #ffb200; /* violet-blue split complement */
  border: 2px solid #ffb200;
  margin-top: 20px;
}

.btn-secondary:hover {
  background: #ffb200;
  color: #fff;
}

/* Hidden Info */
.hidden-info {
  display: none;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .welcome-left h2 {
    font-size: 2rem;
  }
  .welcome-left p, .hidden-info p {
    font-size: 1rem;
    line-height: 1.5;
  }
}
/* Unique Welcome Heading */
.welcome-heading {
  text-align: left;
  font-size: 2.8rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
  color: #2c2c2c;
  position: relative;
}

.welcome-heading span {
  color: #e30613; /* Red highlight from logo */
}



/* Responsive */
@media (max-width: 768px) {
  .welcome-heading {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.room-section {
  background: #f9f7f3; /* same background as welcome section */
  padding: 20px 20px;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  text-align: center;
}

.room-heading {
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #d32f2f; /* 🔴 match heading red */
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 1px;
}

.room-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #ffc107; /* 🟡 gold accent */
  margin: 12px auto 0;
}

.room-slider {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

.room-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.room-card {
  flex: 0 0 50%; /* 2 cards visible */
  box-sizing: border-box;
  padding: 15px;
}

.room-card img {
  width: 100%;
  border-radius: 6px;
}

.room-info {
  padding: 18px 14px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  text-align: left;
}

.room-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #d32f2f; /* 🔴 red heading */
  font-weight: 600;
}

.room-info p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #444;
}

.room-btn {
  display: inline-block;
  padding: 10px 22px;
  font-size: 0.85rem;
  background: #ffc107; /* 🟡 gold button */
  border: none;
  color: #2c2c2c;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.room-btn:hover {
  background: #d32f2f; /* 🔴 hover to red */
  color: #fff;
}

/* Navigation Arrows */
.room-prev, .room-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent; /* 🟡 gold arrows */
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 8px 19px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
  transition: background 0.3s, color 0.3s;
}

.room-prev:hover, .room-next:hover {
  background: #d32f2f; /* 🔴 red hover */
  color: #fff;
}

.room-prev { left: 10px; }
.room-next { right: 10px; }

/* 📱 Mobile: 1 card visible */
@media (max-width: 768px) {
  .room-card {
    flex: 0 0 100%;
  }
  .room-info {
    text-align: left;
  }
  .room-prev { left: -20px; }
.room-next { right: -20px; }

}


.amenities-unique {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #fff7e6 50%, #f9f7f3 50%);
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  text-transform: uppercase;
  margin-bottom: 70px;
  font-weight: 500;
  color: #2c2c2c;
  position: relative;
}

.section-title span {
  color: #e30613; /* Red highlight */
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ffc107;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Style */
.amenity-item {
  background: #fff;
  padding: 40px 25px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border-top: 4px solid transparent;
}

.amenity-item:hover {
  transform: translateY(-12px) scale(1.02);
  border-top: 4px solid #ffc107;
  box-shadow: 0 20px 45px rgba(227,6,19,0.25);
}

/* Icon Circle */
.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #ffc107;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #2c2c2c;
  transition: all 0.4s ease;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.amenity-item:hover .icon-circle {
  background: #e30613;
  color: #fff;
  box-shadow: 0 0 25px rgba(227,6,19,0.6);
}

.amenity-item h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 400;
  text-transform: uppercase;
}

.amenity-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Background decorative overlay */
.amenities-unique::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  background: rgba(255,193,7,0.2);
  border-radius: 50%;
  z-index: 0;
}

.amenities-unique::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(227,6,19,0.1);
  border-radius: 50%;
  z-index: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}


.attractions-section {
  background: #f9f7f3;
  padding: 80px 8%;
  font-family: 'Montserrat', sans-serif;
  color: #333;
}

/* Header */
.attractions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.attractions-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #2c2c2c;
  margin: 0;
  position: relative;
}

.attractions-title span {
  color: #e30613; /* red highlight from logo */
}

.attractions-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ffc107; /* gold accent */
  display: block;
  margin: 12px 0 0;
  border-radius: 2px;
}


/* CTA Button */
.action-btn {
  background: #ffc107;
  color: #111;
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: background .3s, color .3s;
  font-weight: 600;
  text-transform: uppercase;
}
.action-btn:hover {
  background: #e0a800;
  color: #fff;
}

/* Mosaic Grid */
.mt-attractions-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}

.mosaic-item {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}

.mosaic-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.mosaic-item.large { grid-column: 1 / span 2; }
.mosaic-item.tall { grid-row: span 2; }

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: opacity .3s ease;
}

.mosaic-item:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  font-size: 22px;
  margin-bottom: 6px;
  color: #ffc107;
}
.overlay p {
  font-size: 15px;
  line-height: 1.5;
  color: #f1f1f1;
}

/* Responsive */
@media (max-width: 768px) {
  .attractions-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .mt-attractions-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .mosaic-item {
    height: 200px;
    transform: none;
  }

  .mosaic-item.large,
  .mosaic-item.tall {
    grid-column: auto;
    grid-row: auto;
  }
}

.media-section {
  padding: 60px 8%;
  background: #f9f7f3;
  font-family: 'Montserrat', sans-serif;
}

/* Header */
.media-header {
  text-align: center;
  margin-bottom: 40px;
}

.media-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #2c2c2c;
  margin: 0;
  position: relative;
}

.media-title span {
  color: #e30613; /* red highlight from logo */
}

.media-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ffc107; /* gold accent */
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Flex container for video + gallery */
.media-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Left - Video */
.media-video {
  flex: 1 1 50%;
}

.video-placeholder {
  background: #222;
  color: #fff;
  width: 100%;
  height: 513px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.video-placeholder .play-icon {
  width: 70px;
  height: 70px;
  background: #ffc107;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #000;
  margin-bottom: 12px;
}

/* Right - Gallery */
.media-gallery {
  flex: 1 1 50%;
}

.media-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* Image Wrapper */
.media-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.media-gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Overlay with plus sign */
/* Overlay with gradient fade using logo colors */
.media-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 235, 0, 0.75),   /* Yellow */
    rgba(243, 140, 40, 0.75),  /* Orange */
    rgba(227, 6, 19, 0.75)     /* Red */
  );
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 6px;
}

/* Plus Sign */
.media-overlay em {
  font-size: 28px;
  color: #000;                 /* Black for strong contrast */
  background: #ffeb00;         /* Yellow circle */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Hover Effect */
.media-gallery-item:hover img {
  transform: scale(1.05);
}

.media-gallery-item:hover .media-overlay {
  opacity: 1;
}


/* Lightbox */
.media-lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.media-lightbox.active {
  display: flex;
}

.media-lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

.media-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

/* Tablet */
@media (max-width: 992px) {
  .media-flex {
    flex-direction: column;
    gap: 30px;
  }

  .media-video,
  .media-gallery {
    flex: 1 1 100%;
    width: 100%;   /* ✅ force full width */
  }

  .video-placeholder {
    height: 350px; /* smaller height for tablets */
    width: 100%;   /* ✅ fills container */
  }

  .media-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .media-gallery-item img {
    height: 140px;
  }
}
.media-lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.media-lightbox.active {
  display: flex;
}

.media-lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

.media-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 600px) {
  .media-video,
  .media-gallery {
    flex: 1 1 100%;
    width: 100%;   /* ✅ ensures full width */
  }

  .video-placeholder {
    height: auto;             /* ✅ make it flexible */
    aspect-ratio: 16 / 9;     /* ✅ keep proper video proportions */
    max-height: 220px;        /* limit for small devices */
    width: 100%;
  }

  .media-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .media-gallery-item img {
    height: 120px;
  }

  .media-title {
    font-size: 1.8rem;
  }
}


.site-footer {
  background: linear-gradient(135deg, #e53935, #0f0f15);
  padding: 60px 20px 30px;
  color: #f1f1f1;
  font-size: 18px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;

  /* Double Border Effect */
  border: 6px solid #ffeb3b;   /* Outer Yellow border */
  box-shadow: inset 0 0 0 4px #e53935; /* Inner Red border */
}

/* Gradient Animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* Gradient Animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-col {
  flex: 1 1 320px;
}

/* Titles */
.footer-title {
  font-size: 28px;
  color: #ffeb3b; /* Yellow from logo */
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 6px;
  display: inline-block;
  min-width: 180px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #ff9800; /* Orange accent */
}

/* Info */
.footer-info address,
.footer-info p {
  font-style: normal;
  margin: 10px 0;
  line-height: 1.6;
}

.footer-info a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: 500;
}

/* Links */
.footer-links-columns {
  display: flex;
  gap: 40px;
}

.footer-links-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-columns li {
  margin-bottom: 12px;
}

.footer-links-columns a {
  color: #eee;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
  font-size: 18px;
}

.footer-links-columns a:hover {
  color: #ffeb3b;
  border-color: #ffeb3b;
  transform: translateY(-2px);
}

/* Social */
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social li {
  margin-bottom: 12px;
}

.footer-social a {
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}

.footer-social i {
  margin-right: 8px;
  color: #ff9800;
}

.footer-social a:hover {
  color: #ffeb3b;
}

/* Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 50px auto 0;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
  color: #f0f0f0;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom-left small {
  display: block;
  font-size: 0.85rem;
  margin-top: 4px;
}

.footer-bottom-right {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 0.95rem;
}

.footer-bottom-right a,
.footer-bottom-right span,
.footer-bottom-right small {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom-right a:hover {
  text-decoration: underline;
}

.footer-bottom-right span {
  margin: 0 8px;
}
.title5{
	    font-size: 28px;
    color: #ffeb3b;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 6px;
    display: inline-block;
    min-width: 180px;

}

.title5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #ff9800; /* Orange accent */
}
/* Responsive */
@media (max-width:580px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }

  .footer-col {
    width: 100%;
  }

  .footer-links-columns {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .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;
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Core Hero Styles */
.hero-amenities {
  position: relative;
  height: 60vh; /* Default height for large screens */
  width: 100%; /* Ensure full width for the section */
  overflow: hidden;
  background-color: #121212; /* Deep black background */
}

.hero-image-amenities {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Ensure full width coverage */
  height: 100%; /* Ensure full height coverage */
  background-size: cover; /* Ensures the image covers the entire area */
  background-position: center center; /* Focus on the center of the image */
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

.overlay-amenities {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 204, 0, 0.5), rgba(255, 0, 0, 0.2)); /* Yellow to Red gradient */
}

/* TEXT CONTENT */
.hero-text-amenities {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 0 1rem;
  width: 100%; /* Ensure text content takes full width */
  max-width: 800px; /* Max width for readability */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.subtitle-amenities {
  font-size: 1.5rem;
  color: #ffc107;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.title-amenities {
  font-size: 3rem; /* Adjusted for desktop */
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: #ffc107;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
}

.desc-amenities {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 1em;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.cta-btn-amenities {
  padding: 14px 28px;
  background: #FFC107;
  color: #1a1a1a;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.3s ease;
  border-radius: 4px;
}

.cta-btn-amenities:hover {
  background: #e0a800;
  color: #fff;
}

/* Responsive Adjustments for Tablets, Laptops, and Mobile */
@media (max-width: 1024px) { /* iPad, laptops, and tablet screens */
  .hero-amenities {
    height: 40vh; /* Adjusted height for tablets and laptops */
  }

  .hero-text-amenities {
    padding: 0 1rem;
    max-width: 600px; /* Ensure text fits nicely on smaller screens */
    width: 100%;
  }

  .title-amenities {
    font-size: 2.4rem; /* Adjusted title font size for tablets */
  }

  .subtitle-amenities {
    font-size: 1.3rem; /* Adjusted subtitle size for tablets */
  }

  .desc-amenities {
    font-size: 1.1rem; /* Adjusted description font size */
  }

  .cta-btn-amenities {
    font-size: 1rem;
  }
}

@media (max-width: 768px) { /* Mobile screens */
  .hero-amenities {
    height: 40vh; /* Adjusted height for mobile */
	margin-top:100px;
  }

  .hero-text-amenities {
    padding: 0 1rem; /* Adjust padding for mobile */
    max-width: 90%; /* Makes the content more readable on small screens */
    width: 100%; /* Ensure full width */
  }

  .title-amenities {
    font-size: 2rem; /* Adjusted title font size for mobile */
  }

  .subtitle-amenities {
    font-size: 1.2rem; /* Adjusted subtitle size for mobile */
  }

  .desc-amenities {
    display:none;
  }

  .cta-btn-amenities {
    font-size: 0.95rem; /* Button text scaling for mobile */
    padding: 12px 24px; /* Slightly smaller padding for mobile */
  }
}

/* Specific Fix for Small Mobile Devices (393px, 430px) */
@media (max-width: 430px) { /* Small mobile screens (430px and below) */
  .hero-amenities {
    height: 40vh; /* Ensure correct height */'
	margin-top:100px;
  }

  .hero-text-amenities {
    padding: 0 1rem;
    max-width: 90%; /* Make text fit better */
  }

  .title-amenities {
    font-size: 1.6rem; /* Reduced title size for very small screens */
  }

  .subtitle-amenities {
    font-size: 1rem; /* Adjust subtitle size for very small screens */
  }

  .desc-amenities {
    display:none;
  }

  .cta-btn-amenities {
    font-size: 0.8rem; /* Button text scaling for smaller mobile */
    padding: 10px 20px; /* Adjust button padding for smaller screens */
  }
}


/* Core Styling for Amenities Section */
.budget-inn-amenities {
  padding: 60px 20px;
  background-color: #fafafa;
  text-align: center;
}

.budget-inn-section-title .budget-inn-main-title {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.budget-inn-main-title span {
  color: #ff0000; /* Red for "BUDGET INN" */
}

.budget-inn-description {
  font-size: 1.2rem;
  color: #333;
  max-width: 1200px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.budget-inn-amenities-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}

/* Card Styling */
.budget-inn-amenity-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 18%;
  min-width: 230px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent; /* Initial transparent border */
}

.budget-inn-amenity-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  border-top: 5px solid #ffb200; /* Gold border on hover */
}

/* Icon Styling */
.budget-inn-amenity-item em {
  font-size: 3.5rem;
  color: #ffb200;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.budget-inn-amenity-item:hover em {
  color: #ff0000; /* Change icon color to red on hover */
}

/* Card Title */
.budget-inn-amenity-title {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

/* Card Description */
.budget-inn-amenity-description {
  font-size: 1rem;
  color: #777;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .budget-inn-amenities-row {
    flex-direction: column;
    gap: 20px;
  }

  .budget-inn-amenity-item {
    width: 80%;
    margin: 0 auto;
  }
}

/* Styling for the Amenities Section */
.inn-amenities-section {
  padding: 20px 20px;
  background-color: #fafafa;
  text-align: left;
}

.inn-amenities-description {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Container for all the categories */
.inn-amenities-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Responsive grid layout */
  gap: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
}

/* Styling for each amenity category */
.inn-amenity-category {
  background-color: #960608; /* Apply the orange color for the card container */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
  text-align: left;
  border-top: 5px solid #ffb200; /* Gold border on hover */
}

.inn-amenity-category:hover {
  transform: scale(1.05); /* Slight scale effect on hover */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
  
}

.inn-amenity-icon {
  font-size: 3rem;
  color: #fff; /* White color for icons to contrast with orange background */
  margin-bottom: 15px;
}

.inn-amenity-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff; /* White title text */
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Styling for the list to add bullets */
.inn-amenity-list {
  list-style-type: disc; /* Add bullets to the list */
  padding-left: 20px; /* Space between bullets and text */
  color: #fff; /* White color for list items to match the text */
  font-size: 1rem;
}

.inn-amenity-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .inn-amenities-description {
    font-size: 1rem; /* Smaller description font size for mobile */
  }

  .inn-amenities-container {
    grid-template-columns: 1fr; /* Stack items vertically on smaller screens */
  }

  .inn-amenity-category {
    padding: 20px;
  }

  .inn-amenity-title {
    font-size: 1.4rem; /* Adjust category title size */
  }

  .inn-amenity-list li {
    font-size: 0.95rem; /* Adjust list item font size */
  }
}

/* Styling for the "Things to Do" Section */
.budget-inn-things-to-do {
  padding: 60px 20px;
  background-color: #fafafa; /* White background to match the layout */
}

.budget-inn-section-title {
  margin-bottom: 40px;
}

.budget-inn-main-title {
  
  text-align: center;
}



.budget-inn-description {
  font-size: 1.2rem;
  color: #555; /* Dark gray color for description */
  margin-top: 10px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-align: center;
}

/* Grid Layout for Attractions */
.budget-inn-attractions-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr)); /* Grid for each category */
  gap: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Styling for each attraction category */
.budget-inn-attraction-category {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.budget-inn-attraction-category-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #cc0000; /* Red color for the category title */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.budget-inn-attraction-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  margin-bottom: 20px;
}

.budget-inn-attraction-card:hover {
  transform: scale(1.05); /* Slight scale effect on hover */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
}

.budget-inn-attraction-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #cc0000; /* Red color for the card title */
  margin-bottom: 10px;
}

.budget-inn-attraction-card p {
  font-size: 1rem;
  color: #555; /* Dark gray color for the description */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .budget-inn-main-title {
    font-size: 2rem; /* Smaller title font size for mobile */
  }

  .budget-inn-description {
    font-size: 1rem; /* Smaller description font size for mobile */
  }

  .budget-inn-attractions-container {
    grid-template-columns: 1fr; /* Stack items vertically on smaller screens */
    align-items: center;
  }

  .budget-inn-attraction-card {
    padding: 15px;
  }

  .budget-inn-attraction-category-title {
    font-size: 1.6rem; /* Adjust category title size */
  }

  .budget-inn-attraction-card h4 {
    font-size: 1.2rem;
  }

  .budget-inn-attraction-card p {
    font-size: 0.95rem;
  }
}
/* Location Section Header */
.location-section-hero {
  background: #f5f5f573; /* Soft white background */
  padding: 30px 20px;
}

.location-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.location-info-box {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info-box h2 {
  font-size: 2.6rem;
  color: #ff0000; /* Budget Inn Yellow */
  margin-bottom: 15px;
  font-weight:500;
}

.location-info-box p {
  font-size: 1.2rem;
  color: #333333; /* Dark grey text for readability */
  margin-bottom: 30px;
  line-height: 1.6;
}

.coordinates-area,
.directions-area {
  background: #90090b; /* Budget Inn Red */
  padding: 20px;
  border-left: 5px solid #ffc107; /* Budget Inn Yellow for accent border */
  margin-bottom: 25px;
  border-radius: 10px;
}

.coordinates-area h4,
.directions-area h4 {
  color: #fff; /* White for headings */
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.coordinates-area ul {
  list-style: none;
  padding-left: 0;
  color: #ffffff; /* White text for better contrast */
}

.coordinates-area ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.directions-area form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.directions-area form button {
  width: 100%;
  padding: 12px;
  background: #ffc107; /* Budget Inn Yellow */
  color: #1a1a1a;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.3s;
}

.directions-area form button:hover {
  background: #e0a800; /* Darker yellow on hover */
}

/* Right Side Map */
.location-map-box {
  flex: 1;
  background: #f4f9f6; /* Soft greenish background for map */
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 992px) {
  .location-wrapper-hero {
    flex-direction: column;
  }

  .location-map-box {
    height: 300px;
  }
}

/* Custom Location Header */
.custom-location-header {
  text-align: center;
  padding: 10px 20px;
  background-color: #f5f5f573; /* Light white background */
}

.custom-location-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffc107; /* Budget Inn Yellow */
  margin-bottom: 20px;
  position: relative;
}

.custom-location-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #ff0000; /* Budget Inn Red accent */
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

.custom-location-description {
  font-size: 20px;
  line-height: 1.8;
  color: #333333; /* Dark grey text */
  max-width: 1280px;
  margin: 0 auto;
}


/* 1. Contact Header Section */
.custom-contact-header {
  text-align: center;
  padding: 20px 20px;
  background-color: #fafafa; /* Soft white background for the header */
}

.custom-contact-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #ff0000; /* Budget Inn Red for the title */
  margin-bottom: 20px;
  position: relative;
}

.custom-contact-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #ffc107; /* Budget Inn Yellow for accent */
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

.custom-contact-description {
  font-size: 20px;
  line-height: 1.8;
  color: #333; /* Dark gray text for readability */
  max-width: 1200px;
  margin: 0 auto;
  text-align:center;
}

/* 2. Main Contact Info Section */
.contact-section-hero {
  background: #fafafa; /* Soft white background */
  padding: 30px 20px;
}

.contact-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #fff; /* White background for the content box */
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-info-box {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-box h2 {
  font-size: 2.6rem;
  color: #ff0000; /* Budget Inn Red for main headings */
  margin-bottom: 15px;
}

.contact-info-box p {
  font-size: 1.2rem;
  color: #4a4a4a; /* Darker gray for description */
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-details-area {
  background: #ffc107; /* Budget Inn Yellow for contact details area */
  padding: 20px;
  border-left: 5px solid #ff0000; /* Budget Inn Red border accent */
  margin-bottom: 25px;
  border-radius: 10px;
}

.contact-details-area h4 {
  color: #ff0000; /* Budget Inn Red for subheadings */
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-details-area ul {
  list-style: none;
  padding-left: 0;
  color: #333; /* Dark gray text */
}

.contact-details-area ul li {
  margin-bottom: 12px;
  font-size: 1rem;
}

.contact-details-area a {
  color: #ff0000; /* Budget Inn Red for links */
  font-weight: 600;
  text-decoration: none;
}

.contact-details-area a:hover {
  color: #d30000; /* Darker red on hover */
  text-decoration: underline;
}

/* 3. Right Side Image */
.contact-image-box {
  flex: 1;
  background: #f4f9f6; /* Soft greenish background for map */
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* 4. Responsive Design */
@media (max-width: 992px) {
  .contact-wrapper-hero {
    flex-direction: column;
  }

  .contact-image-box {
    height: 300px;
  }

  .custom-contact-title {
    font-size: 2rem;
  }

  .custom-contact-description {
    font-size: 1rem;
  }

  .contact-info-box h2 {
    font-size: 2rem;
  }
}
/* 📍 Budget Inn Lockbourne Sitemap Section */
.sitemap-section {
    padding: 30px 20px;
    background: #f5f5f5; /* Soft off-white background */
    text-align: center;
}

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-title {
    font-size: 3rem;
    color: #004d2c; /* Dark Green for the title */
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.sitemap-subtitle {
    font-size: 1.2rem;
    color: #4a4a4a; /* Dark gray text */
    margin-bottom: 50px;
    font-weight: 400;
}

.sitemap-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sitemap-block {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 77, 44, 0.08); /* Dark green shadow */
    border: 1px solid #e3e3e3; /* Light gray border */
}

.sitemap-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 77, 44, 0.15); /* Darker green shadow on hover */
}

.sitemap-block h2 {
    font-size: 1.8rem;
    color: #fecb51; /* Yellow accent for subheadings */
    margin-bottom: 15px;
    font-weight: 600;
}

.sitemap-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-block ul li {
    margin-bottom: 15px;
}

.sitemap-block ul li a {
    font-size: 18px;
    color: #ff0000; /* Dark Green for links */
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    font-weight: 500;
}

.sitemap-block ul li a i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #fecb51; /* Yellow for icons */
}

.sitemap-block ul li a:hover {
    color: #00331f; /* Darker green on hover */
}

/* 📱 Responsive Design */
@media (max-width: 1024px) {
    .sitemap-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sitemap-links {
        grid-template-columns: 1fr;
    }
}
/* 🎯 FAQ Section - Budget Inn Lockbourne */
.faq-section {
    padding: 30px 20px;
    background:  #f8f8f8; /* Light gray background for readability */
    color: #1a1a1a;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-title a {
    font-size: 3rem;
    font-weight: 700;
    color: #fa1a05; /* Primary Deep Blue for titles */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: #333333; /* Dark gray for subtitle */
    margin-bottom: 50px;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
}

.faq-item {
    background: #ffffff; /* White background for each FAQ item */
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e3e3e3; /* Soft light gray border */
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.08); /* Deep Blue shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #ff6600; /* Orange accent for FAQ top border */
}

.faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 51, 102, 0.12); /* Darker blue shadow on hover */
}

.faq-item h2 {
    font-size: 1.8rem;
    color: #fa1a05; /* Deep Blue for FAQ headers */
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px dashed #ff6600; /* Orange dashed underline */
}

.faq-item p {
    font-size: 1.1rem;
    color: #333333; /* Dark gray text for body */
    line-height: 1.75;
    margin-bottom: 10px;
}

.faq-item a {
    color: #fa1a05; /* Deep Blue for links */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.faq-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6600; /* Orange underline */
    transition: width 0.3s ease;
}

.faq-item a:hover {
    color: #ff6600; /* Orange on hover */
}

.faq-item a:hover::after {
    width: 100%; /* Full width orange underline on hover */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .faq-title {
        font-size: 2.5rem;
    }

    .faq-item h2 {
        font-size: 1.5rem;
    }

    .faq-item p {
        font-size: 1rem;
    }
}
/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #FFD700; /* Budget Inn yellow */
  color: #111; /* Dark icon for contrast */
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  font-size: 20px;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

/* Show button when active */
#backToTop.show {
  opacity: 1;
  visibility: visible;
}

/* Hover effect */
#backToTop:hover {
  background-color: #e6c200; /* Slightly darker yellow */
  transform: translateY(-4px);
}

/* Optional: adjust icon alignment */
#backToTop i {
  line-height: 50px;
}
/* Accessibility Contact Section */
.accessibility-contact {
  background-color: #000; /* Deep green/teal like other site accents */
  color: #fff;
  padding: 20px 10px;
  text-align: center;
  border-top: 4px solid #FFD700; /* Brand yellow highlight */
  font-family: 'Poppins', sans-serif;
}

.accessibility-content {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.accessibility-content i {
  font-size: 22px;
  color: #FFD700;
}

.accessibility-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.accessibility-content a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
}

.accessibility-content a:hover {
  text-decoration: underline;
}
/* Cookie Consent Banner */
#cookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none; /* hidden by default until JS shows it */
  animation: slideUp 0.5s ease;
}

.cookie-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #333;
}

.cookie-container p {
  margin: 0;
  flex: 1 1 70%;
  line-height: 1.5;
}

.cookie-container a {
  color: #c1272d; /* red accent matching site headings */
  text-decoration: none;
  font-weight: 500;
}

.cookie-container a:hover {
  text-decoration: underline;
}

/* Accept button */
.cookie-container button {
  background-color: #FFD700; /* brand yellow */
  border: none;
  color: #111;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-container button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* Animation for showing banner */
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .cookie-container {
    flex-direction: column;
    text-align: center;
  }
  .cookie-container p {
    flex: 1 1 100%;
    margin-bottom: 10px;
  }
}
/* Attraction Section */
.attraction-wrap {
  padding: 100px 20px;
  background-color: #f9f7f3; /* Matches site layout background */
}

/* Flex container */
.attraction-box {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
}

/* Image styles */
.attraction-image {
  flex: 1 1 400px;
}

.attraction-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

/* Content area */
.attraction-content {
  flex: 1 1 600px;
}

/* Title styling */
.attraction-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #d82027; /* Brand red for headings */
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Paragraph text */
.attraction-content p {
  font-size: 1rem;
  color: #333333; /* Dark gray for body text */
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Button styling */
.attraction-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: linear-gradient(90deg, #ffcc00 0%, #ffb300 100%);
  color: #000000;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Hover and active states */
.attraction-btn:hover {
  background: linear-gradient(90deg, #ffd633 0%, #ffcc00 100%);
  color: #000;
}

.attraction-btn:active {
  background: linear-gradient(90deg, #e6b800 0%, #ffcc00 100%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
/* Contact paragraph styling */
.attraction-contact {
  font-size: 1rem;
  color: #333333;
  margin-top: 20px;
  line-height: 1.7;
}

/* Contact links inside paragraph */
.attraction-link {
  color: #d82027; /* Budget Inn red */
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.attraction-link:hover {
  color: #ffb300; /* Gold hover accent */
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .attraction-wrap {
    margin-top: 0;
  }

  .attraction-box {
    flex-direction: column;
  }

  .attraction-image {
    order: 2;
  }

  .attraction-content {
    order: 1;
    text-align: center;
  }

  .attraction-title {
    font-size: 2rem;
  }
}
