/*
 Theme Name: Clifton Victoria Theme
 Theme URI: https://example.com
 Author: Trevor Masi
 Author URI: https://example.com
 Description: Custom classic theme version of the existing Clifton Victoria website.
 Version: 1.0
 License: GNU General Public License v2 or later
 License URI: https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: clifton-victoria-theme
*/

/* ================================
   GLOBAL PRESETS
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
  font-family: 'Inter', sans-serif;
  color: #111;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display SC", serif;
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

h1 {
  font-size: 55px;
  /*text-transform: uppercase; */
}

h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 16px;
  color: #062647;
}

h3 {
  font-size: 24px;
}

p {
  line-height: 1.6;
}

section {
  padding: 80px 0;
  background: #fff;
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: #666;
  margin-bottom: 60px;
}

/* REUSABLE LAYOUT */
.container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}

/* BUTTON STYLES */

.btn,
.hero-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #0054A7;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .08em;
  border-radius: 4px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
  margin-top: auto;
  align-self: flex-start;
  width: auto;
}

.btn:hover,
.hero-btn:hover,
.btn-book:hover {
  background: #062747;
  transform: translateY(-2px);
  color: #fff;
}

.btn-book {
  display: inline-block;
  padding: 10px 18px;
  background: #062747;
  color: #fff;

  font-size: 15px;
  font-weight: 500;
  letter-spacing: .08em;
  border-radius: 4px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
 }

/*----------------- HOME PAGE ---------------------*/
/* HEADER */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 22px 0;
  background: #f0f0f0;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 1000;
}

#header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  height: auto;
  width: 175px;
}

/* NAVIGATION */
.nav {
  display: flex;

  align-items: center;
}

/* NAV LIST LAYOUT */
.nav-list {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.nav-item {
  position: relative; /* needed for dropdown positioning */
}

/* Top-level nav links (anchors + buttons) */
.nav-link {
  display: inline-block;
  margin: 0 12px;
  letter-spacing: .08em;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  color: #062747;
  position: relative;
  transition: .4s ease;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

/* underline hover */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: #062747;
  transition: width .5s ease;
}

.nav-link:hover {
  transform: translateY(-2px);
  color:#062747;
}

.nav-link:hover::after {
  width: 100%;
}

/* Caret icon for dropdown parents */
.nav-caret {
  display: inline-block;
  margin-left: 8px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-item--open .nav-caret {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 8px 0 8px;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 1000;
}


.nav-dropdown-link {
  display: block;
  padding: 8px 18px;
  font-size: 14px;
  text-transform: none;
  text-decoration: none;
  color: #062747;
  white-space: nowrap;
}

.nav-dropdown-link:hover {
  background: #f0f0f0;
}

/* Hamburger toggle – hidden on desktop */
.nav-toggle {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #062747;
  margin: 4px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Simple “X” animation when open */
.nav-toggle--open .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle--open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle--open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


/* BOOKING BAR FLOATING */
.booking-bar {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -80px;
  z-index: 999;
  transition: all 0.4s ease;
}

/* Make the injected booking form match the old 4-col layout */
.booking-inner form {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 4 fields + button */
  gap: 20px;
  align-items: end;
}

/* If your patched PHP adds .booking-form-fields, use this instead (preferred) */
.booking-inner .booking-form-fields {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: end;
}

/* Ensure the button aligns like the old booking button */
.booking-inner #booking-btn,
.booking-inner input[type="submit"].btn {
  width: 100%;
}

.booking-inner {
  background: #fff;
  width: 90%;
  max-width: 1200px;
  padding: 25px 35px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.booking-field {
  display: flex;
  flex-direction: column;
}

.booking-field label {
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #666;
  font-weight: 600;
}

.booking-field input,
.booking-field select {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;

}

/* HERO SECTION */
.hero {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center; 
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.50);
}

.hero-content {
  position: relative;
  max-width: 900px;
  text-align: center;
  color: #fff;
  padding: 30px;
  margin-top: 150px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: .9;
}


/* HERO SLIDER  */
.hero.hero-slider {
  background-image: none !important; 
  overflow: hidden;
}

.hero-slider .hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slider .hero-slide.is-active {
  opacity: 1;
}

.hero-slider .hero-overlay { z-index: 1; }
.hero-slider .hero-content { z-index: 2; }

@media (prefers-reduced-motion: reduce) {
  .hero-slider .hero-slide { transition: none; }
}


/* BENEFITS (Three for Free) */
#benefits {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  justify-items: center;
  align-items: start;
  text-align: center;
}

#benefits .benefit-item{
  width: 100%;
  min-width: 0;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: #0054A7;
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 40px;
  height: 30px;
}

.benefit-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;

}

/* ABOUT SECTION */
.about {
  padding: 250px 0;
  background: rgba(0,0,0,0.55);
  background-size: cover;
  background-position: center top;
  background-attachment: scroll; 
  border-top: 1px solid #e0e0e0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  color: #fff;
}

.about-content p {
  line-height: 1.8;
  color: #fff;
  margin-bottom: 20px;
}

/*  UNIVERSAL CARD STYLE (used for rooms, packages, attractions) */
.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  /* cursor: pointer; */
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
} 

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

#offers {
  background-color: #f8f9fa;
}

/* SHARED IMAGE WRAPPER */
.image {
  position: relative;
  width: 100%;
  /*height: 250px;*/
  overflow: hidden;
  background: #f0f0f0;
}

.attr-image { 
  height: 270px; 
  object-fit: cover;
} /* attraction-specific height */

.image img {
  width: 100%;
  /*height: 100%;*/
  height: auto;
  /*object-fit: cover;*/
  transition: transform .3s ease;
}

.card:hover .image img {
  transform: scale(1.05);
}

/* CONTENT BLOCKS */
.content {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
} 

.content p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;

}

/* FEATURES LIST (used in room & package cards) */
.features {
  list-style: none;
  margin-bottom: 20px;
  flex-grow: 1;
  padding-left: 0;
}

.features li {
  font-size: 14px;
  color: #555;
  padding: 8px 0 8px 24px;
  position: relative;

}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  font-weight: bold;
  color: #0054A7;
}

/* CARD LINKS (attraction cards) */
.card-link {
  color: #0054A7;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: .2s ease;
}

.card-link:hover {
  color: #062747;
}

.attractions-page .card .image{
  height: 280px;      /* change to 390px if you want taller like accommodations */
}

/* ATTRACTIONS SECTION */
.attractions {
  background: #f8f9fa;
}

/* TESTIMONIALS */
.testimonials {
  background: #fff;
  padding: 80px 0;
}

.testimonial-card {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #0054A7;
  transition: .3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.stars {
  margin-bottom: 16px;
  color: #FFD700;
  font-size: 18px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
  font-style: italic;

}

.testimonial-author {
  font-weight: 600;
  font-size: 14px;
}


/* LOCATION SECTION */

#location {
  background: #f8f9fa;
}

#location-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr ;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.location-info h2 {
  margin-bottom: 12px;
  text-align: left;
  
}

.location-info p {
  text-align: left;
  margin-bottom: 40px;
}

.location-info ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px 0;
}

.location-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.5;
  color: #555;

}

#contact a{
  color: #666;
  text-decoration: none;
  transition: .2s ease;
} 

#contact a:hover {
  color: #062747;
}

.location-info a:hover {
  color: #062747;
} 

.directions {
  color: #0054A7;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: .2s ease;
  display: inline-block;
}

.directions:hover {
  color: #062747;
  transform: translateY(-2px);
}

.location-icon #btn{
  color:#fff
}

.location-icon svg {
  width: 20px;
  height: 20px;
  fill: #0054A7;
}

.map iframe {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* GALLERY SECTION */

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #e0e0e0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* FOOTER */
.footer {
  background: #062747;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-bottom: 20px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.footer-section ul {
  list-style: none;
  padding-left: 0;
}

.footer-section li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #ccc;

  display: flex;
  align-items: center;
  gap: 15px;         
  margin-bottom: 10px;
}

.footer-section p {
  color: #ccc;
  font-size: 13px;
}


.footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  fill: #ccc;
}

.footer-icon svg {
  width: 20px;
  height: 20px;
  fill: #ccc;
}

.footer-section a {
  text-decoration: none;
  color: #ccc;
  transition: .2s ease;
}

.footer-section a:hover {
  color: #fff;
}

.footer-logo img {
  width: 150px;
  margin: 0 auto 20px;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #999;

}

.footer-section,
.footer-logo {
  min-width: 0;
}


/* Footer newsletter button */
.footer-section a.footer-signup-btn{
  display: inline-block;   /* instead of full-width block */
  width: auto;
  padding: 10px 14px;      /* smaller than .btn */
  font-size: 13px;
  line-height: 1.1;
  margin-top: 12px;
  color:#fff;
}


.footer-section a.footer-signup-btn:hover{
  background: #0054A7;         /* keeps hover visible on #062747 footer bg */
  color: #fff;
}

/* NEWSLETTER SIGNUP FORM */

.newsletter-subscribe-form {
  margin-top: 5px;
}
.newsletter-label, .newsletter-thanks {
  display: none;
}

.newsletter-email,
.newsletter-submit {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
}

.newsletter-submit {
  background: #0054a7;
  border: 1px solid #008fd5;
  color: #fff;
  cursor: pointer;
  margin-top: 5px;
  text-align: center;
}

.grecaptcha-badge {
  display: none !important;
}

/* RESPONSIVE BREAKPOINTS */

@media (max-width: 1310px) {
  .btn-book {
    display: none;
  }

  .footer-content {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  /* Make newsletter wider so it doesn't become a tall skinny column */
  .footer-newsletter {
    grid-column: span 2;
  }

  /* Keep logo from getting crushed */
  .footer-logo {
    grid-column: span 1;
  }

}

@media (max-width: 1200px) {
h1 { font-size: 50px; }
h2 { font-size: 44px; }

.logo {
    width: 140px;
  }

.nav a, .nav-link {
    margin: 0 10px;
    font-size: 12px;
  }

 #grid-amenities{
  grid-template-columns: 1fr;
  }

  .footer-section a.footer-signup-btn{
    padding: 9px 12px;
    font-size: 13px;
  }
  
}

@media (max-width: 1000px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    background: #ffffff;                      /* same as desktop dropdown */
    border-radius: 0 0 12px 12px;            /* rounded bottom edges */
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);/* same “card” shadow */
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.2s ease;
    z-index: 999;
  }

  .nav a, .nav-link {
    display: block;
    padding: 10px 0;
    margin: 0;
    font-size: 14px
  }

   /* Stack items vertically */
  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
  }

  .nav-link {
    display: block;
    margin: 0;
    padding: 10px 0;
    width: 100%;
    text-align: left;
  }

  .nav-link::after {
    content: none;
  }

  .nav-dropdown {
    position: static;
    display: block;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    padding: 0 0 4px 16px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }

  .nav-item--open > .nav-dropdown {
    max-height: 400px; 
    opacity: 1;
  }

  .nav-dropdown-link {
    padding: 6px 0;
  }

  .nav-dropdown a {
    font-size: 13px;
  }

  .nav.nav--open {
    max-height: 1000px;
    padding: 12px 20px 16px;
    border-top: 1px solid #ccc; /* only when open */
  }

  .nav-toggle {
    display: block;
  }

  .grid {
    grid-template-columns: 1fr;
 }

  .attr-image {
    min-height: 400px;
  }

}

@media (min-width: 900px) {
.hero:not(.hero-slider) .hero-content .btn {
    display: none;
  }

  .hero:not(.hero-slider) .hero-btn {
    display: none;
  }
}

@media (max-width: 900px) {

  #location-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .location-info {
    order: 1;
    justify-content: center;
    text-align: center;
  }

  .location-info h2, .location-info p {
    text-align: center;
    margin-bottom: 10px
  }

  .location-info ul, 
  .location-info li {
    justify-content: center;
  }

  .location-info li{
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: center;   
    align-items: start;
    column-gap: 10px;
    text-align: center;
    width: 100%;
  }


  .location-info .location-icon{
    position: static !important;
    transform: none !important;
    margin: 0 !important;
  }

  .location-info li > a,
  .location-info li > span{
    text-align: center;
  }

  .location-info li::after{
    content: "";
    width: 20px;               
    height: 1px;
  }

  .location-icon svg{
    width: 20px;
    height: 20px;
  }

  .location-info li.contact-phone{
    align-items: center; 
  }

  .location-info li.contact-phone .location-icon{
    margin-top: 0 !important;
  }
  

  #contact {
    margin-top: 30px;
  }

  .map {
    order: 2;
  }

  .booking-bar {
    display: none;
  }

  .footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-newsletter,
  .footer-logo {
    grid-column: 1 / -1;
  }

  .footer-logo {
    margin-top: 30px;
  }
}

@media (min-width:769px){
  
/* Show dropdown on hover for desktop */
.nav-item--has-dropdown:hover > .nav-dropdown {
  display: block;
  }

.desktop-hide {
  display: none;
}
}

@media (max-width: 768px) {
  h1 { font-size: 45px; }
  h2 { font-size: 40px; }

 body{
    padding-top: 85px; /* mobile header height */
  }

  p, .content p, .card-content p {
    font-size: 15px;
  }

  .logo {
    width: 140px;
  }

  section {
  padding: 50px 0;
  background: #fff;
  }   

  .section-subtitle { 
    font-size: 16px; 
  }

  .testimonial-card {
    padding: 24px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-hide {
    display: none;
  }

  .hero {
    height: 70vh;
    min-height: 340px;
  }

  .hero-slider .hero-slide{
    top: 0; right: 0; bottom: 0; left: 0;  /* fill */
    height: auto;                           /* don’t constrain */
    max-height: none;
    min-height: 0;
  }

  .hero-content {
    margin-top: 25px; 
    padding: 18px;
  }

  .hero-content p {
    margin-bottom: 18px;
    font-size: 16px;
  }

  #benefits {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
    justify-items: stretch !important;
  }

  #benefits .benefit-item {     
    width: 100% !important;
    text-align: center;
  }

  .benefit-icon{
    width: 46px;
    height: 46px;
    margin: 0 auto 12px;
  }

  .benefit-icon svg{
    width: 24px;
    height: 24px;
  }

  #benefits h3{
    font-size: 20px;
    line-height: 1.1;
    margin: 0;
  }

  .about {
    background-position: center top;
    padding: 125px 0;
  }

  
  .attr-image {
    height: auto;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 38px; }
  h2 { font-size: 34px; }
  p { font-size: 13px; }


  .btn {
    font-size: 13px;
    padding: 10px 20px;
  }

  .hero-btn {
    font-size: 15px;
    
  }

  .logo {
    width: 120px;
  }

  .hero {
    height: 70vh;
    min-height: 340px;
    max-height: none; 
  }

  .hero-content {
    padding: 14px;
  }

  .benefit-icon{
    width: 45px;
    height: 45px;
  }

  #benefits h3{
    font-size: 20px;
  }
}


/*----------------------------- PACKAGE PAGE --------------------------------*/

/* Breadcrumb under hero title */
.breadcrumb {
  margin: 8px 0 16px;
  font-size: 13px;
  /* text-transform: uppercase; */
  letter-spacing: 0.12em;
  color: #ccc;
  justify-content: center;
}

.breadcrumb a {
  position: relative;
  color: #ccc;
  text-decoration: none;
  transition: .4s ease;
}

.breadcrumb a:hover {
  transform:  translateY(-2px);
  color: #ccc;
}

.breadcrumb a:hover::after {
  width: 100%;
}

.breadcrumb a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 2px;
  width: 0;
  background: #ccc;
  transition: width 0.5s ease;
}

.breadcrumb span {
  margin: 0 6px;
}

.notes-list li {
  margin-bottom: 10px;
  flex-grow: 1;
  padding-left: 0;
  color:#666;
  font-size: 13px
}

.notes-list {
  padding-left: 18px;
}

/* Bonus Savings under features */
.bonus-savings{
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #eaeaea;
}

.bonus-title {
  font-size: 13px;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #0054A7 !important;
  font-weight: 700;
}

.bonus-subheading{
  font-weight: 600;
  margin-left: 8px;
  color: #0054A7;
  text-transform: none;
  letter-spacing: 0;
}

.bonus-list{
  margin: 0;
  padding-left: 22px;
}

.bonus-list li{
  margin: 10px 0;
  font-size: 14px;
  color: #555;
  line-height: 1.55;
}

/* PACKAGES PAGE – 2 COLUMN CARD LAYOUT */
.packages .grid {
  grid-template-columns: 1fr;
}

.packages .card {
  flex-direction: row;      /* override default column layout */
  align-items: stretch;
  min-height: 260px;
  cursor: default;
}

.packages .card .image {
  flex: 0 0 50%;            
  height: auto;             
}

.packages .card .content {
  flex: 1;
}


/* Notes card – no hover effect */
#notes-card {
  cursor: default; 
  padding-top: 0;
  padding-bottom: 0;
  border: 1px solid #eaeaea;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
  margin-bottom: 30px;     /* gives the shadow room to appear */
  position: relative;
  z-index: 2;   
}

#notes-card {
  transform: none !important;
}


/* Add More Fun (single block layout) */
.package-addfun .addfun-card{
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 28px;
  align-items: start;
}

.package-addfun .addfun-image img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  max-height: 600px    
}

.package-addfun .addfun-list{
  margin: 14px 0 10px;
  padding-left: 18px;
}

.package-addfun .addfun-list li{
  margin: 6px 0;
  font-size: 14px;
  color: #555;
}

.package-addfun .addfun-disclaimer{
  font-size: 13px;
  margin-top: 10px;
  color: #666;
}


@media (max-width: 1000px) {
   /* PACKAGES PAGE: let cards expand with content */
  .packages .card{
    flex-direction: column;   
    align-items: stretch;
    height: auto;             
    min-height: 0;
  }

  .packages .card .image {
    flex: none;
    width: 100%;
    height: 400px;            
  }

  .packages .card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .packages .card .content {
    flex: 1;
    padding: 20px;
  }
}

@media (max-width: 900px){
  .package-addfun .addfun-card{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .packages .card .image {
    flex: none;
    width: 100%;
    height: 300px;             
  }
}

/* --------------------- ATTRACTION PAGE -----------------------------------*/


.packages.attraction-page .card.attraction-card .image{
  flex: 0 0 45%;
  height: 390px;
}

@media (max-width: 1000px) {
  .packages.attraction-page .card.attraction-card .image{
    flex: none;
    width: 100%;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .packages.attraction-page .card.attraction-card .image{
    height: 300px;
  }
}

/* --------------------------- DINING PAGE ---------------------------------- */

.packages.dining-page .card.dining-card .image{
  flex: 0 0 45%;
  height: 390px;
}

@media (max-width: 1000px) {
  .packages.dining-page .card.dining-card .image{
    flex: none;
    width: 100%;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .packages.dining-page .card.dining-card .image{
    height: 300px;
  }
}

/*---------------------- ACCOMMODATIONS PAGES --------------------------------*/

.single-accommodation .card {
  cursor: default;
}

.single-accommodation .card:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.accommodation-card .image {
  flex: 0 0 45%;            
  height: 390px; 
}

@media (max-width: 1000px) {
  .accommodation-card .image {
  flex: 0 0 50%;
  flex: none;
  width: 100%;
  height: 400px;
  }
}

@media (max-width: 768px) {
  .accommodation-card .image {
  height: 300px;
  }
}

/*------------------------- TRADITIONAL ROOM PAGE --------------------------------*/

@media (max-width: 1350px) {
  .content h2 br {
    display: none;
  }
}

/*------------------------------- CONTACT PAGE ----------------------------------- */

.features a {
  color: #666;
  text-decoration: none;
  transition: .2s ease; 
}

.features a:hover {
  color: #062647;
}

/*------------------------------- Privacy Page ----------------------------------- */

.privacy-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media(max-width:1000px){
 .privacy-grid {
  grid-template-columns: 1fr;
 }
}

/*------------------------------- BLOG PAGE ----------------------------------- */
/* COMMENTS */
#comments {
  padding: 60px 0;
  border-top: 1px solid #e0e0e0;
  margin-top: 40px;
}

.single-post-comments {
  max-width: 800px;
  margin: 0 auto;
}

.comments-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.comment-list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}

.comment-list li {
  border-bottom: 1px solid #eaeaea;
  padding: 20px 0;
}

.comment-list .comment-author {
  font-weight: 600;
  margin-bottom: 4px;
}

.comment-list .comment-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}

.comment-list .comment-content {
  font-size: 15px;
  line-height: 1.7;
}

.comment-form-wrapper {
  padding-top: 20px;
  border-top: 1px solid #eaeaea;
}

.comment-form-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.comment-form p {
  margin-bottom: 15px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
}

.comment-form textarea {
  min-height: 140px;
}

.comment-form .btn {
  margin-top: 10px;
}

/*------------------------------- SINGLE-BLOG PAGE ----------------------------------- */

/* SINGLE POST: breadcrumb styling for white content card */
.breadcrumb--dark {
  color: #6F6F6F;
  justify-content: flex-start;
}

.breadcrumb--dark a {
  color: #062747;
}

.breadcrumb--dark a::after {
  background: #062747;
}

/* SINGLE BLOG POSTS: offset content for fixed header */
body.single-post {
  padding-top: 100px; /* adjust if your header is taller/shorter */
}

/* optional: reduce the section padding so it doesn't feel too far down */
body.single-post #post-content {
  padding-top: 50px; /* instead of 200 */
}

/*------------------------------- Accessibility ----------------------------------- */
/* Accessibility page: center the PDF links card */
.page-template-accessibility .grid{
  grid-template-columns: 1fr;  /* make it a single column on this page */
}

.page-template-accessibility #notes-card{
  max-width: 900px;
  width: 100%;
  justify-self: center;        /* centers the card in the grid */
}
