/* ===================================================================
   --- 1. UNIQUE AMENITIES SECTION ---
   =================================================================== */

.amenities-unique {
  position: relative;
  padding: 50px 20px;
  /* UPDATED: New background using the primary color */
  background: #e31b23; 
  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 #f78129;
  /* 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: #f78129; 
  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: #ffffff; 
  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: #e31b23;
  /* 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(247, 129, 41, 0.6); 
}

.amenity-item h3 {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 400;
  text-transform: uppercase;
}

.amenity-item p {
  font-size: 1.5rem;
  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(247, 129, 41, 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(247, 129, 41, 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: #e31b23; 
    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: #f78129;
}

/* 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);
}

/* ===================================================================
   --- RESPONSIVE STYLES FOR TABLET & MOBILE ---
   =================================================================== */

/* --- TABLET STYLES (Applies to screens 1024px wide or less) --- */
@media (max-width: 1024px) {
  /* Amenities Section: Change grid from 3 to 2 columns */
  .amenities-grid-page {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- MOBILE STYLES (Applies to screens 768px wide or less) --- */
@media (max-width: 768px) {
  /* --- 1. UNIQUE AMENITIES (MOBILE) --- */
  
  .amenities-unique {
    padding: 40px 15px;
  }
  
  /* Stack amenities items in a single column */
  .amenities-grid-page {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Adjust font sizes for better readability on small screens */
  .amenity-item h3 {
    font-size: 1.8rem;
  }
  .amenity-item p {
    font-size: 1.4rem;
  }

  /* Hover effect is less important on touch devices, can be toned down */
  .amenity-item:hover {
    transform: translateY(-8px); /* Less pronounced effect */
  }


  /* --- 2. ROOM AMENITIES (MOBILE) --- */
  
  .room-amenities-section {
    padding: 40px 15px;
  }

  /* Adjust main heading size for mobile */
  .room-amenities-section h2 {
    font-size: 2.4em;
  }

  /* Stack the layout vertically */
  .room-amenities-layout {
    flex-direction: column;
    gap: 40px; /* Adjust gap for vertical stacking */
    margin-top: 40px;
  }

  /* Center-align text in columns for a unified mobile look */
  .room-amenities-column.left,
  .room-amenities-column.right {
    text-align: center;
    max-width: 100%; /* Allow columns to take full width */
  }

  /* Reduce size of the central image */
  .room-amenities-image {
    width: 250px;
    height: 250px;
  }
  
  /* Reduce list item font size and spacing */
  .room-amenities-column li {
      font-size: 1.1em;
      margin-bottom: 20px;
  }
}


/* ===== Location Section Hero ===== */
.location-section-hero {
  background: #f9f9f9;
  padding: 80px 30px;
}

.location-wrapper-hero {
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  min-height: 700px;
}

/* ===== Left Content Box ===== */
.location-info-box {
  flex: 1 1 50%;
  padding: 0px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info-box h2 {
  font-size: 3rem;
  color: #e31b23;
  margin-bottom: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.location-info-box p {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 40px;
  line-height: 2;
}

/* ===== Coordinates & Directions Panels ===== */
.coordinates-area,
.directions-area {
  background: #fff8e6;
  padding: 35px 38px;
  border-left: 6px solid #f78129;
  margin-bottom: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coordinates-area:hover,
.directions-area:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(247, 129, 41, 0.25);
}

.coordinates-area h4,
.directions-area h4 {
  color: #000000;
  font-size: 2rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.coordinates-area ul {
  list-style: none;
  padding-left: 0;
  color: #000000;
}

.coordinates-area ul li {
  margin-bottom: 12px;
  font-size: 1.5rem;
  line-height: 1.8;
}

/* ===== Form Styling ===== */
.directions-area form input {
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1.5rem;
  box-sizing: border-box;
}

.directions-area form button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(90deg, #e31b23, #f78129);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.directions-area form button:hover {
  background: linear-gradient(90deg, #f78129, #e31b23);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(227, 27, 35, 0.25);
}

/* ===== Map Box (Right Side) ===== */
.location-map-box {
  flex: 1 1 50%;
  min-height: 700px;
  background: #fff6db;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 3px solid #f78129;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .location-wrapper-hero {
    flex-direction: column;
    min-height: unset;
  }

  .location-info-box {
    flex: 1 1 100%;
    padding: 45px 35px;
  }

  .location-map-box {
    flex: 1 1 100%;
    min-height: 400px;
  }

  .location-info-box h2 {
    font-size: 2.3rem;
  }

  .coordinates-area,
  .directions-area {
    padding: 28px 25px;
  }
}


/* ===== Contact Header Section ===== */
.custom-contact-header {
  text-align: center;
  padding: 70px 30px;
  background-color: #f9f9f9;
}

.custom-contact-title {
  font-size: 3rem;
  font-weight: 700;
  color: #e31b23;
  margin-bottom: 28px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.custom-contact-title::after {
  content: '';
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #e31b23, #f78129);
  display: block;
  margin: 22px auto 0;
  border-radius: 2px;
}

.custom-contact-description {
  font-size: 1.2rem;
  line-height: 2;
  color: #000000;
  max-width: 1200px;
  margin: 35px auto 0;
  font-weight: 400;
}

.custom-contact-description strong {
  color: #e31b23;
  font-weight: 600;
}

.custom-contact-description a {
  color: #e31b23;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.custom-contact-description a:hover {
  color: #f78129;
  text-decoration: none;
}

@media (max-width: 767px) {
  .custom-contact-header {
    padding: 45px 20px;
  }

  .custom-contact-title {
    font-size: 2.2rem;
  }

  .custom-contact-description {
    font-size: 1.05rem;
    line-height: 1.8;
  }
}


/* ===== Contact Info Section ===== */
.contact-section-hero {
  background: #f9f9f9;
  padding: 40px 30px; /* 70px → 40px */
}

.contact-wrapper-hero {
  max-width: 1200px; /* 1400px → 1100px */
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  min-height: 600px;
}

/* ===== Left Content Box ===== */
.contact-info-box {
  flex: 1 1 50%;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-box h2 {
  font-size: 3.4rem; /* 3rem → 3.4rem */
  color: #e31b23;
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-box p {
  font-size: 1.35rem; /* 1.2rem → 1.35rem */
  color: #000000;
  margin-bottom: 40px;
  line-height: 2;
  font-weight: 400;
}

/* ===== Contact Details Inner Box ===== */
.contact-details-area {
  background: #fff8e6;
  padding: 42px 48px; /* 35px 38px → 42px 48px */
  border-left: 8px solid #f78129; /* 6px → 8px */
  margin-bottom: 28px;
  border-radius: 14px; /* 12px → 14px */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-details-area:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(247, 129, 41, 0.25);
}

.contact-details-area h4 {
  color: #000000;
  font-size: 2.5rem; /* 1.4rem → 1.6rem */
  margin-bottom: 18px;
  font-weight: 700;
}

.contact-details-area ul {
  list-style: none;
  padding-left: 0;
  color: #000000;
}

.contact-details-area ul li {
  margin-bottom: 16px;
  font-size: 1.8rem; /* 1.1rem → 1.25rem */
  line-height: 1.8;
}

.contact-details-area a {
  color: #e31b23;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details-area a:hover {
  color: #f78129;
  text-decoration: underline;
}

/* ===== Right Side Image ===== */
.contact-image-box {
  flex: 1 1 50%;
  min-height: 600px;
  background: #fff6db;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 3px solid #f78129;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .contact-wrapper-hero {
    flex-direction: column;
    min-height: unset;
  }

  .contact-info-box {
    flex: 1 1 100%;
    padding: 45px 35px;
  }

  .contact-image-box {
    flex: 1 1 100%;
    min-height: 400px;
  }

  .contact-info-box h2 {
    font-size: 2.6rem; /* 2.3rem → 2.6rem */
  }

  .contact-info-box p {
    font-size: 1.15rem; /* 1.05rem → 1.15rem */
  }

  .contact-details-area {
    padding: 34px 30px; /* 28px 25px → 34px 30px */
  }

  .contact-details-area h4 {
    font-size: 1.35rem; /* 1.2rem → 1.35rem */
  }

  .contact-details-area ul li {
    font-size: 1.1rem; /* 1rem → 1.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: #e31b23; 
  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, #e31b23, #f78129);
  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(247, 129, 41, 0.25);
}

.sitemap-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(227, 27, 35, 0.2); 
}

/* ===== Headings ===== */
.sitemap-block h2 {
  font-size: 1.8rem;
  color: #e31b23;
  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: #f78129;
  transition: color 0.3s ease;
}

.sitemap-block ul li a:hover {
  color: #e31b23;
  transform: translateX(5px);
}

.sitemap-block ul li a:hover i {
  color: #e31b23;
}

/* ===== 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: #e31b23;
    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, #e31b23, #f78129);
    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 #f78129;
}

.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: #e31b23;
    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, #e31b23, transparent);
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
}

.faq-answer a {
    color: #e31b23;
    font-weight: 600;
    text-decoration: none !important;
}

.faq-answer a:hover {
    color: #f78129;
    border-bottom-color: #f78129;
}

.faq-answer .fa-caret-right {
    color: #f78129;
    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(227, 27, 35, 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: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    /* New primary color */
    color: #e31b23;
}

.New-attraction-card-description {
    font-size: 1.5rem;
    /* 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: #e31b23;
    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: #f78129;
}


/* ===================================================================
   --- 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: #f78129; 
}

.attractions-title::after {
  content: "";
  width: 80px;
  height: 4px;
  /* UPDATED: New accent color */
  background: #f78129; 
  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 #f78129;
}

.attractions-container .category-header {
    padding: 20px;
    /* UPDATED: New primary color background */
    background-color: #e31b23; 
    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: #f78129; 
    color: #ffffff; /* Changed to white for better contrast with accent color */
    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: #e31b23; 
    transform: scale(1.05);
    color: white; /* Keep white on new primary background */
}

/* ===== Responsive for Attractions ===== */
@media (max-width: 992px) {
    .attractions-container {
        grid-template-columns: 1fr;
    }
}


/* 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);
}

/* Caption for Lightbox */
#lightbox-caption {
    text-align: center;
    color: #f1f1f1;
    padding: 10px 0;
    margin-top: 10px;
    font-size: 1.1em;
    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;
}