    /* --- Base Styles --- */
        :root {
            --primary: #c5a059; /* Gold */
            --dark: #1a1a1a;
            --light: #f4f4f4;
        }
        
        body {
            font-family: 'Lato', sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
        }

        /* --- Sticky Header Logic --- */
        header {
            transition: all 0.4s ease;
        }
        header.scrolled {
            background-color: #000000ba;
            padding-top: 1rem;
            padding-bottom: 1rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        header.transparent {
          background-color: transparent;
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
        }
		
		.bg-gray-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(8 1 1)!important;
}

        /* --- Custom Slider --- */
        .slider-container {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
        }
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out, transform 6s ease;
            transform: scale(1);
        }
        .slide.active {
            opacity: 1;
            transform: scale(1.05); /* Slight Ken Burns effect */
        }
        .slide-overlay {
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
        }

        /* --- Amenities Rotating Icons --- */
        .amenity-card:hover .amenity-icon {
            animation: spin 1s ease-in-out;
            color: var(--primary);
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* --- 3D Attraction Cards --- */
        .attraction-container {
            perspective: 1000px;
        }
        .attraction-card {
            transition: transform 0.1s;
            transform-style: preserve-3d;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .attraction-content {
            transform: translateZ(50px); /* Pop out text */
        }
        .attraction-bg {
            transform: translateZ(0px);
        }

        /* --- Gallery --- */
        .gallery-item {
            overflow: hidden;
        }
        .gallery-item img {
            transition: transform 0.5s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Utility for loading fallback */
        .bg-fallback {
            background-color: #2d2d2d;
        }
		
		
		@media (min-width: 768px) {
    .md\:py-28 {
        padding-top: 4rem;
        padding-bottom: 7rem;
    }
}




/* ===============================
   RESERVATION BAR – ISOLATED CSS
   =============================== */


.res {
  background:#857979;          /* Navy background */
  padding: 10px 0;
  margin: 0 auto;
}

/* Make everything inside .res easier to control */
.res *,
.res *::before,
.res *::after {
  box-sizing: border-box;
}

/* Main layout */
.res form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0;
}

/* Common column style */
.res .co {
  padding: 5px 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* LEFT "RESERVATION" BLOCK */
.res .co.h2 {
  background: #f6a847;          /* Orange block */
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  white-space: nowrap;
}

/* Labels (Check-In, Adult, etc.) */
.res .co label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
  white-space: nowrap;
}

.res .co label em {
  margin-right: 4px;
  color: #ffffff;
}

/* Inputs & selects */
.res .co .form-control,
.res .co select.form-control {
  height: 44px;
  border-radius: 0;
  border: 0;
  padding: 8px 10px;
  font-size: 14px;
  box-shadow: none;
}

/* BOOK NOW button column */
.res .bkbtn {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.res .bkbtn .btn {
  width: 100%;
  height: 70%;
  border-radius: 0;
  border: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top:20px;
}

/* Match orange style of left block */
.res .bkbtn .btn.btn-warning {
  background: #f6a847;
  color: #ffffff;
}

.res .bkbtn .btn.btn-warning:hover,
.res .bkbtn .btn.btn-warning:focus {
  background: #e2912f;
  color: #ffffff;
}

/* -------- Desktop width (≥ 992px) -------- */
@media (min-width: 992px) {
  /* Fixed width for RESERVATION label */
  .res .co.h2 {
    flex: 0 0 240px;
  }

  /* Let middle fields size naturally */
  .res .co {
    flex: 0 0 auto;
  }

  /* Fixed width for BOOK NOW button */
  .res .bkbtn {
    flex: 0 0 220px;
  }
}

/* -------- Tablet (768px – 991px) -------- */
@media (max-width: 991.98px) and (min-width: 768px) {
  .res form {
    flex-direction: row;
  }

  .res .co.h2 {
    flex: 1 1 100%;
    margin-bottom: 8px;
  }

  .res .co {
    flex: 1 1 33.33%;
  }

  .res .bkbtn {
    flex: 1 1 100%;
    margin-top: 8px;
  }
}

/* -------- Mobile (< 768px) -------- */
@media (max-width: 767.98px) {
  .res form {
    flex-direction: column;
  }

  .res .co {
    flex: 1 1 100%;
    padding: 4px 15px;
  }

  .res .co.h2 {
    padding: 8px 15px;
    margin-bottom: 6px;
  }

  .res .bkbtn {
    margin-top: 6px;
  }
}


@media (min-width: 992px) {
    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
        float: left;
    }
}

.co {
    float: left;
}

@media (min-width: 992px) {
    .res .co {
        flex: 0 0 auto;
    }
}

input.btn.btn-lg.btn-block.btn-warning {
    width: 100%;
}

@media (max-width:768px) and (min-width:576px){
.col-sm-12{width:100% !important;}	
.col-sm-6{width:50% !important;}
.col-sm-4{width:33.33333333% !important;}
.col-sm-4, .col-sm-6,.col-sm-12{float:left !important;}	
.bkbtn {/*clear: both;text-align: center;*/margin: 0;}

}	

	
@media (max-width:991px) and (min-width:769px){	
	.col-md-4, .col-md-6,.col-md-12{float:left !important;}	
	input.btn.btn-lg.btn-block.btn-warning {width: 100%;}
}


@media only screen and (max-width: 480px) {
	
	header.transparent {
    background-color:#cd0303!important;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
	
	
	
}


.res .bkbtn .btn {
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    /* margin-top: 20px; */
    padding: 10px;
}

.bg-transparent {
    background-color:#cd0303!important;
}

.slider-container {
    position: relative;
    height: 250px!important;
    width: 100%;
    overflow: hidden;
	margin-top: 84px!important;
}
	
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px!important;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 6s ease;
    transform: scale(1);
}	
	
	
.logo
{
	    width: 40%!important;
	
}

.text-lg

 {
    font-size: 12px!important;
    line-height: 1.75rem;
}


.text-5xl
 {
    font-size: 15px!important;
    line-height: 1;
}





}


/* ==========================
   BACK TO TOP BUTTON – CSS
   ========================== */

.back-to-top {
  position: fixed;
 bottom: 121px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  background: #f6a847;          /* same orange as RESERVATION/BOOK NOW */
  color: #ffffff;
  font-size: 22px;
  display: none;                 /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.back-to-top i {
  line-height: 1;
}

.back-to-top:hover,
.back-to-top:focus {
  background: #e2912f;
}

/* Optional: a little fade-in animation */
.back-to-top.show {
  display: flex;
}

.footer-text

{
	    --tw-text-opacity: 1;
    color: rgb(248 248 249)!important;
    text-align: center!important;
    font-size: 12px!important;
	margin:0 auto;
	    line-height: inherit;
		margin-bottom:50px;
}





#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ce0303; /* blue bar */
  color: #fff;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  z-index: 9999;
}

#cookie-banner p {
  margin: 0;
}

#cookie-banner a {
  color: #ffd400;
  text-decoration: underline;
}

#cookie-banner button {
  background: #ffd400; /* yellow button */
  color: #000;
  border: none;
  padding: 6px 14px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 2px;
}

#cookie-banner button:hover {
  background: #ffcc00;
}


.ada-st {
padding: 8px;
    text-align: center;
    background: #ca8a04;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}




/* ===================================================================
   --- 1. UNIQUE AMENITIES SECTION ---
   =================================================================== */

.amenities-unique {
  position: relative;
  padding: 50px 20px;
  /* UPDATED: New background using the primary color */
  background: #cf0203; 
  overflow: hidden;
  /* Optional: Animation for background */
  animation: gradientShift 12s ease infinite;
}

.amenities-grid-page {
  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);
  /* UPDATED: Hover border now uses the new accent color */
  border-top: 4px solid #fec501;
  /* UPDATED: Hover shadow uses a subtle version of the new primary color */
  box-shadow: 0 20px 45px rgba(30, 30, 42, 0.2); 
}

/* Icon Circle */
.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  /* UPDATED: Icon background uses the new accent color */
  background: #fec501; 
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  /* UPDATED: Icon color for contrast with the new background */
  color: #000000; 
  transition: all 0.4s ease;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.amenity-item:hover .icon-circle {
  /* UPDATED: Icon hover background uses the new primary color */
  background: #cf0203;
  /* UPDATED: Icon hover color for contrast */
  color: #fff;
  /* UPDATED: Hover shadow effect using the new accent color for a 'glow' */
  box-shadow: 0 0 25px rgba(254, 197, 1, 0.6); 
}

.amenity-item h3 {
  font-size: 1.4rem;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 400;
  text-transform: uppercase;
}

.amenity-item p {
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.6;
}

/* Background decorative overlay */
.amenities-unique::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  /* UPDATED: Overlay with a transparent version of the new accent color */
  background: rgba(254, 197, 1, 0.1); 
  border-radius: 50%;
  z-index: 0;
}

.amenities-unique::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  /* UPDATED: Overlay with a transparent version of the new accent color */
  background: rgba(254, 197, 1, 0.15); 
  border-radius: 50%;
  z-index: 0;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===================================================================
   --- 2. ROOM AMENITIES SHOWCASE ---
   =================================================================== */

/* General styling for the section */
.room-amenities-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
}

/* Styling for the main heading */
.room-amenities-section h2 {
    font-size: 3em;
    /* UPDATED: New primary color for heading */
    color: #cf0203; 
    margin: 0 0 20px 0;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

/* The orange underline for the heading */
.room-amenities-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    /* UPDATED: New accent color for underline */
    background-color: #fec501;
}

/* Flex container for the columns */
.room-amenities-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

/* Styling for the text columns */
.room-amenities-column {
    flex: 1;
    max-width: 250px;
}

.room-amenities-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.room-amenities-column li {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 25px;
}

/* Align text away from the central image */
.room-amenities-column.left {
    text-align: right;
}

.room-amenities-column.right {
    text-align: left;
}

/* Container for the central image */
.room-amenities-image-container {
   flex-shrink: 0;
}

/* Styling for the circular room image */
.room-amenities-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


/* ===== Location Section Hero ===== */
.location-section-hero {
  background: #f9f9f9; /* soft neutral tone */
  padding: 60px 20px;
}

.location-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* ===== Left Content Box ===== */
.location-info-box {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info-box h2 {
  font-size: 2.6rem;
  color: #cf0203;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.location-info-box p {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.8;
}

/* ===== Coordinates & Directions Panels ===== */
.coordinates-area,
.directions-area {
  background: #fff8e6;
  padding: 22px;
  border-left: 5px solid #fec501; 
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coordinates-area:hover,
.directions-area:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(254, 197, 1, 0.25);
}

.coordinates-area h4,
.directions-area h4 {
  color: #000000;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.coordinates-area ul {
  list-style: none;
  padding-left: 0;
  color: #000000;
}

.coordinates-area ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* ===== Form Styling ===== */
.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: linear-gradient(90deg, #cf0203, #fec501);
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.directions-area form button:hover {
  background: linear-gradient(90deg, #fec501, #cf0203);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(207, 2, 3, 0.25);
}

/* ===== Map Box (Right Side) ===== */
.location-map-box {
  flex: 1;
  background: #fff6db;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 3px solid #fec501;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .location-wrapper-hero {
    flex-direction: column;
  }

  .location-info-box {
    padding: 30px 25px;
  }

  .location-map-box {
    height: 300px;
  }

  .location-info-box h2 {
    font-size: 2rem;
  }
}


/* ===== Contact Header Section (Oxford Theme) ===== */
.custom-contact-header {
  text-align: center;
  padding: 20px 20px;
  background-color: #f9f9f9;
 
}

/* ===== Title Styling ===== */
.custom-contact-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #cf0203; 
  margin-bottom: 25px;
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
}

/* Elegant orange-gold underline accent */
.custom-contact-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #cf0203, #fec501);
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ===== Description Text ===== */
.custom-contact-description {
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
  max-width: 1100px;
  margin: 30px auto 0;
  font-weight: 400;
}

/* Highlighted text emphasis */
.custom-contact-description strong {
  color: #cf0203;
  font-weight: 600;
}

/* ===== Inline Links ===== */
.custom-contact-description a {
  color: #cf0203;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.custom-contact-description a:hover {
  color: #fec501;
  text-decoration: none;
}

/* ===== Responsive Design ===== */
@media (max-width: 767px) {
  .custom-contact-header {
    padding: 40px 15px;
  }

  .custom-contact-title {
    font-size: 2rem;
  }

  .custom-contact-description {
    font-size: 16px;
    line-height: 1.6;
  }
}
/* ===== Main Contact Info Section (Oxford Theme) ===== */
.contact-section-hero {
  background: #f9f9f9;
  padding: 20px 20px;
}

/* Wrapper Box */
.contact-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* ===== Left Content Box ===== */
.contact-info-box {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-box h2 {
  font-size: 2.6rem;
  color: #cf0203; 
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-box p {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.8;
  font-weight: 400;
}

/* ===== Contact Details Box ===== */
.contact-details-area {
  background: #fff8e6; 
  padding: 22px;
  border-left: 5px solid #fec501;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-details-area:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(254, 197, 1, 0.25);
}

.contact-details-area h4 {
  color: #000000;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-details-area ul {
  list-style: none;
  padding-left: 0;
  color: #000000;
}

.contact-details-area ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== Links ===== */
.contact-details-area a {
  color: #cf0203;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details-area a:hover {
  color: #fec501;
  text-decoration: underline;
}

/* ===== Right Side Image ===== */
.contact-image-box {
  flex: 1;
  background: #fff6db;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 3px solid #fec501;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .contact-wrapper-hero {
    flex-direction: column;
  }

  .contact-info-box {
    padding: 30px 25px;
  }

  .contact-image-box {
    height: 300px;
  }

  .contact-info-box h2 {
    font-size: 2rem;
  }

  .contact-info-box p {
    font-size: 1rem;
  }
}


/* ===== Comfort Inn & Suites, Oxford Sitemap Section ===== */
.sitemap-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #ffffff, #f9f9f9, #ffffff);
  text-align: center;
}

/* ===== Container ===== */
.sitemap-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Title ===== */
.sitemap-title {
  font-size: 3rem;
  color: #cf0203; 
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
}

.sitemap-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #cf0203, #fec501);
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ===== Subtitle ===== */
.sitemap-subtitle {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 50px;
  font-weight: 400;
  line-height: 1.8;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Sitemap Links Grid ===== */
.sitemap-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===== Sitemap Blocks ===== */
.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(10, 32, 80, 0.08);
  border: 1px solid rgba(254, 197, 1, 0.25);
}

.sitemap-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(207, 2, 3, 0.2); 
}

/* ===== Headings ===== */
.sitemap-block h2 {
  font-size: 1.8rem;
  color: #cf0203;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

/* ===== List Styles ===== */
.sitemap-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-block ul li {
  margin-bottom: 15px;
}

/* ===== Link Styles ===== */
.sitemap-block ul li a {
  font-size: 18px;
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.3s ease;
  font-weight: 500;
}

.sitemap-block ul li a em {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #fec501;
  transition: color 0.3s ease;
}

.sitemap-block ul li a:hover {
  color: #cf0203;
  transform: translateX(5px);
}

.sitemap-block ul li a:hover i {
  color: #cf0203;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .sitemap-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .sitemap-links {
    grid-template-columns: 1fr;
  }

  .sitemap-title {
    font-size: 2.2rem;
  }

  .sitemap-block h2 {
    font-size: 1.4rem;
  }

  .sitemap-block ul li a {
    font-size: 16px;
  }
}


.faq-section {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap; 
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    color: #cf0203;
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #cf0203, #fec501);
    border-radius: 2px;
}

.faq-header p {
    color: #000000;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}

.faq-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid #fec501;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.faq-question {
    padding: 25px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: #cf0203;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 18px;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.faq-answer {
    padding: 25px;
    position: relative;
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(to right, transparent, #cf0203, transparent);
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
}

.faq-answer a {
    color: #cf0203;
    font-weight: 600;
    text-decoration: none !important;
}

.faq-answer a:hover {
    color: #fec501;
    border-bottom-color: #fec501;
}

.faq-answer .fa-caret-right {
    color: #fec501;
    margin-right: 8px;
}

@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-header h2 {
        font-size: 28px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 20px;
    }
}



/* App Layout */
.New-attraction-app-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.New-attraction-attraction-quality-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .New-attraction-attraction-quality-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- MODIFIED DESKTOP STYLES --- */
@media (min-width: 1024px) {
    .New-attraction-attraction-quality-cards {
        /* Create a 6-column grid to allow for precise placement */
        grid-template-columns: repeat(6, 1fr);
    }

    /* First 3 items (top row): make each span 2 columns */
    .New-attraction-card:nth-child(-n+3) {
        grid-column: span 2;
    }
    
    /* 4th item: start at column 2 and span 2 columns */
    .New-attraction-card:nth-child(4) {
        grid-column: 2 / span 2;
    }

    /* 5th item: start at column 4 and span 2 columns */
    .New-attraction-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}
/* --- END OF MODIFIED STYLES --- */


/* Card Styles */
.New-attraction-card {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.New-attraction-card:hover {
    transform: translateY(-5px);
    /* New primary color with transparency for shadow */
    box-shadow: 0 8px 12px rgba(207, 2, 3, 0.1);
}

.New-attraction-card-image-container {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.New-attraction-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.New-attraction-card:hover .New-attraction-card-image {
    transform: scale(1.05);
}

.New-attraction-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.New-attraction-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    /* New primary color */
    color: #cf0203;
}

.New-attraction-card-description {
    font-size: 1rem;
    /* Changed to black for contrast on white background */
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.New-attraction-card-details {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 0.9rem;
    /* Changed to black for contrast on white background */
    color: #000000;
}

.New-attraction-card-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.New-attraction-card-details li + li {
    margin-top: 0.75rem;
}

/* --- UPDATED STYLES FOR ICONS AND LINKS --- */

/* Style for new Font Awesome icons */
.New-attraction-card-details i {
    /* New primary color */
    color: #cf0203;
    font-size: 16px;
    width: 16px; /* Ensures alignment is consistent with old SVGs */
    text-align: center;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Style for the link text */
.New-attraction-card-details a {
    color: inherit; /* Use the default text color (black) */
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

/* Change the link text color on hover */
.New-attraction-card-details a:hover {
    /* New accent color */
    color: #fec501;
}


/* ===================================================================
   --- 3. NEARBY ATTRACTIONS SECTION ---
   =================================================================== */

.attractions-section {
  background: white; /* Keep as white */
  padding: 39px 8% 80px 8%;
  color: #333; /* Kept for general section text if not overridden */
}

/* 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: 500;
  text-transform: uppercase;
  /* Changed to black for contrast on white background */
  color: #000000;
  margin: 0;
  position: relative;
}

.attractions-title span {
  /* UPDATED: Using new accent color */
  color: #fec501; 
}

.attractions-title::after {
  content: "";
  width: 80px;
  height: 4px;
  /* UPDATED: New accent color */
  background: #fec501; 
  display: block;
  margin: 12px 0 0;
  border-radius: 2px;
}

/* Attractions Grid */
.attractions-container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 40px 20px;
    max-width: 1500px;
}

.attractions-container .category {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 1;
}

.attractions-container .category:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.attractions-container .category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    /* UPDATED: New accent color border */
    border-bottom: 4px solid #fec501;
}

.attractions-container .category-header {
    padding: 20px;
    /* UPDATED: New primary color background */
    background-color: #cf0203; 
    color: white; /* White text on new primary background */
    text-align: center;
}

.attractions-container .category-header h2, .title2 {
    color: white; /* Ensure title is white on dark background */
    margin: 0;
    font-size: 24px;
}

.attractions-container .attraction-list {
    padding: 20px;
}

.attractions-container .attraction {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee; /* Kept light grey for separation */
}

.attractions-container .attraction:last-child {
    border-bottom: none;
}

.attractions-container .attraction-name, .title3-attraction {
    margin-bottom: 4px;
    font-size: 16px;
    /* Changed to black for contrast on white background */
    color: #000000;
}

.attractions-container .attraction-type {
    /* Keep black for contrast on white background */
    color: #000000;
}

.attractions-container .attraction-distance {
    /* UPDATED: New accent color */
    background-color: #fec501; 
    color: white; /* Changed to white for better contrast with accent yellow */
    padding: 5px 12px;
    border-radius: 20px;
    min-width: 70px;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.attractions-container .attraction:hover .attraction-distance {
    /* UPDATED: New primary color on hover */
    background-color: #cf0203; 
    transform: scale(1.05);
    color: white; /* Keep white on new primary background */
}





/* Gallery Grid Styling */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 0px auto;
    padding: 20px;
    margin-top: -40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the container without distortion */
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Hover effect on gallery thumbnails */
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* --- Lightbox Styling --- */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Semi-transparent background */
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;

    /* Animation: Fade-in effect */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

/* This class will be added by JavaScript to show the lightbox */
.lightbox.active {
    visibility: visible;
    opacity: 1;
}

/* Animation: Zoom-in effect for the image */
#lightbox-img {
    max-width: 90vw;
    max-height: 80vh;  /* Adjusted max-height to make room for caption */
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active #lightbox-img {
    transform: scale(1);
}

/* ▼▼▼ THIS IS THE NEW CSS FOR THE CAPTION ▼▼▼ */
#lightbox-caption {
    text-align: center;
    color: #f1f1f1;
    padding: 10px 0;
    margin-top: 10px;
    font-size: 1.1em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: opacity 0.4s ease-in-out; /* Fades in with lightbox */
}


/* Navigation & Close Buttons */
.close-btn, .prev-btn, .next-btn {
    position: absolute;
    color: white;
    cursor: pointer;
    font-weight: bold;
    user-select: none; /* Prevents text selection */
    transition: color 0.2s ease;
}

.close-btn:hover, .prev-btn:hover, .next-btn:hover {
    color: #bbb;
}

.close-btn {
    top: 20px;
    right: 35px;
    font-size: 40px;
}

.prev-btn, .next-btn {
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    padding: 16px;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}


.footer-text {
    --tw-text-opacity: 1;
    color: rgb(248 248 249) !important;
    text-align: center !important;
    font-size: 16px !important;
    margin: 0 auto;
    line-height: inherit;
}

/* --- Footer Styles --- */
.site-footer {
    background-color: black; /* bg-gray-900 */
    color: #ffffff;             /* text-white */
    padding-top: 2rem;         /* pt-20 */
    padding-bottom: 2.5rem;    /* pb-10 */
    border-top: 1px solid #1f2937; /* border-t border-gray-800 */
}

.container {
    max-width: 1300px;         /* Standard container width */
    margin-left: auto;         /* mx-auto */
    margin-right: auto;        /* mx-auto */
    padding-left: 1.5rem;      /* px-6 */
    padding-right: 1.5rem;     /* px-6 */
}

/* Footer Grid Layout */
.footer-grid {
    display: flex;
    flex-wrap: wrap;           /* For responsive wrapping on small screens */
    gap: 6rem;                 /* gap-12 */
    margin-bottom: 4rem;       /* mb-16 */
}

.footer-column {
    flex-grow: 1;              /* Allows columns to grow */
    /* width: 100%; */               /* Default for mobile (1 column) */
}

/* --- Footer Content Styles --- */
.footer-column h4 {
    font-size: 1.25rem;        /* text-xl */
    font-weight: 700;          /* font-bold */
    margin-bottom: 1.5rem;     /* mb-6 */
    color: #eab308;           /* text-yellow-500 */
    margin-top: 0;
}

/* Handling the empty heading for alignment */
.footer-column h4.empty-h4 {
    visibility: hidden;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: White;             /* text-gray-400 */
}

.footer-column ul li {
    font-size: 1rem;             /* text-base */
}

/* space-y-4 equivalent */
.footer-column ul li + li {
    margin-top: 1rem;
}

/* Flexbox for list items with icons */
.li-flex {
    display: flex;
    gap: 0.75rem;              /* gap-3 */
    align-items: flex-start; /* items-start */
}

.li-flex.align-center {
    align-items: center;   /* items-center */
}

.li-flex .icon {
    margin-top: 4px; /* Adjusts icon alignment slightly */
}

.li-flex.align-center .icon {
    margin-top: 0;
}

/* Link Styles */
.footer-column a {
    color: inherit;            /* Inherits color from parent `ul` */
    text-decoration: none;
    transition: color 0.3s;    /* transition */
}

.footer-column a:hover {
    color: #ffffff;            /* hover:text-white */
}

/* --- Get in Touch Section --- */
.social-icons {
    display: flex;
    gap: 2rem; /* space-x-6 */
}

.social-icons a {
    font-size: 1.25rem; /* Adjust icon size as needed */
    color: #ffffff;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #eab308; /* Example hover effect */
}


/* --- Footer Bottom Section --- */
.footer-bottom {
    border-top: 1px solid #1f2937; /* border-t border-gray-800 */
    padding-top: 2rem;        /* pt-8 */
    display: flex;
    flex-direction: column;      /* Default for mobile */
    justify-content: space-between; /* justify-between */
    align-items: center;       /* items-center */
    font-size: 0.875rem;       /* text-sm */
    color: #6b7280;          /* text-gray-500 */
    text-align: center;
}

.footer-text p {
    margin: 0.25rem 0;
}

.footer-text a {
    color: White;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

/* Media Query for larger screens (md breakpoint: 768px) */
@media (min-width: 768px) {
    .footer-column {
        flex: 1; /* Distribute space equally */
        /* width: auto; */             /* Resets width for flexbox to take over */
        margin-left: 20px;
    }

    .footer-bottom {
        flex-direction: row;     /* Changes to row layout on desktop */
        text-align: left;
    }
}