

/* new from blogcss rest*/


/* Base */




/* Layout */
.container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  gap: 20px;
}

p{
font-family: 'Open Sans', 'sans-serif';
font-size: 18px; 
color: #333333;
line-height: 1.6;
    
    
}
.hero-cahuita {
   background: url('../images/beaches/cahuita_hero.jpg') center/cover no-repeat;
   height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 4px black;
}
.hero-puerto-viejo {
  background: url('../images/beaches/puerto_viejo_hero.jpg') center/cover no-repeat;;  
     height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 4px black;
}
.hero-cocles {
  background: url('../images/beaches/hero_68746d1a31cb1_cocles_hero.jpg') center/cover no-repeat;;
     height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 4px black;
}
.hero-manzanillo {
  background: url('../images/beaches/manza.jpg') center/cover no-repeat;;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 4px black;
}
.hero-punta-uva{
  background: url('../images/beaches/punta_uva.jpg') center/cover no-repeat;;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 4px black;
}
.hero-playa-chiquita {
  background: url('../images/beaches/playa_chiquita.jpg') center/cover no-repeat;;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 4px black;
}
.hero.bribri{
background: url('../beach/images/hero_6882c7816027b_hero_bribri.jpg') center/cover no-repeat;;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 4px black; 
}


/* Footer */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: 50px;
}
footer .social-icons i {
  margin: 0 10px;
  color: white;
}

/* Lightbox */
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.image-gallery a {
  width: calc(50% - 10px);
}
.image-gallery img {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}
.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
}
.lightbox:target {
  display: flex;
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  text-decoration: none;
  font-weight: bold;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  padding: 0 20px;
  text-decoration: none;
}
.lightbox-prev {
  left: 10px;
}
.lightbox-next {
  right: 10px;
}
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: space-between;
}

.image-gallery figure {
  flex: 1 1 calc(25% - 10px);
  max-width: calc(25% - 10px);
  box-sizing: border-box;
  margin: 0;
  text-align: center;
}

.image-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}

.image-gallery figcaption {
  font-size: 14px;
  color: #555;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .image-gallery figure {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
.lightbox-content {
  text-align: center;
  color: white;
}
.lightbox-caption {
  margin-top: 10px;
  font-size: 16px;
  color: #ddd;
}

.accordion {
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 20px;
}
.accordion-item {
  border-top: 1px solid #ddd;
}
.accordion-toggle {
  background: #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 14px;

  font-weight: bold;
  border: none;
  cursor: pointer;
}
.accordion-toggle:hover {
  background: #e8e8e8;
}
.accordion-icon {
  margin-left: 10px;
}

.accordion-content,
.service-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.accordion-content.open,
.service-details.open {
  max-height: 1000px;
  opacity: 1;
}

.show-more {
  color: #007bff;
  cursor: pointer;
  font-weight: 500;
  display: inline-block;
  margin-top: 5px;
}


/* Highlight internal links inside beach descriptions and blog entries */
.beach-main p a,
.blog-entry p a {
  color: #ef6c00;          /* your brand orange */
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid rgba(239,108,0,0.3);
  transition: all 0.2s ease;
}

.beach-main p a:hover,
.blog-entry p a:hover {
  color: #c45500;
  border-bottom: 2px solid #ef6c00;
}
    
    
    
    
    
    /*end of blog css test*/
    
    
       
          /* ===== BEACH FILTER BUTTONS ===== */
    .filters-bar {
      margin: 20px auto 30px;
      max-width: 1100px;
      padding: 0 15px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: flex-start;
    }
    .filters-bar .btn-beach {
      border-radius: 999px;
      border: 1px solid #ef6c00;
      background: #fff;
      color: #ef6c00;
      padding: 6px 14px;
      font-size: 0.9rem;
      cursor: pointer;
      text-decoration: none;
    }
    .filters-bar .btn-beach.active,
    .filters-bar .btn-beach:hover {
      background: #ef6c00;
      color: #fff;
    }
  /* ===== Beach hub layout ===== */
.beach-layout{
  display:flex;
  gap:24px;
  align-items:flex-start;
}

.beach-main{
  flex: 1;
  min-width: 0;
}

.beach-sidebar{
  width: 360px;
  flex: 0 0 360px;
  position: sticky;
  top: 92px; /* below navbar */
  align-self: flex-start;
}

@media (max-width: 992px){
  .beach-layout{ flex-direction: column; }
  .beach-sidebar{ width:100%; position: static; top:auto; }
}

/* sidebar cards */
.sidecard{
  background:#fff;
  border:1px solid #e8e8e8;
  border-radius:14px;
  padding:14px;
  margin-bottom:14px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.sidecard-title{
  font-weight:800;
  margin-bottom:10px;
  font-size: 1rem;
}

/* quick actions */
.side-actions{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}

.action-btn{
  display:block;
  text-decoration:none;
  text-align:center;
  padding:10px 10px;
  border-radius:12px;
  background:#ef6c00;
  color:#fff;
  font-weight:800;
}

.action-btn:hover{ opacity:.92; }

/* mini items */
.mini-item{
  display:flex;
  gap:10px;
  align-items:center;
  text-decoration:none;
  padding:10px;
  border-radius:12px;
  border:1px solid #f0f0f0;
  margin-bottom:10px;
  color:#222;
}

.mini-item:hover{
  border-color:#ef6c00;
  box-shadow: 0 3px 10px rgba(239,108,0,.12);
}

.mini-img{
  width:54px;
  height:54px;
  object-fit:cover;
  border-radius:10px;
  background:#f3f3f3;
}

.mini-item--noimg{ padding-left:12px; }
.mini-item--noimg .mini-img{ display:none; }

.mini-meta{ line-height:1.2; }
.mini-name{ font-weight:800; }
.mini-sub{ font-size:.85rem; opacity:.72; margin-top:4px; }
.mini-cta{ font-size:.85rem; color:#ef6c00; font-weight:800; margin-top:6px; }

.side-link{
  display:block;
  text-align:center;
  text-decoration:none;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid #ef6c00;
  color:#ef6c00;
  font-weight:800;
}

.side-link:hover{ background:#ef6c00; color:#fff; }

.side-empty{
  font-size:.9rem;
  opacity:.75;
  margin-bottom:10px;
}
  
.two-columns {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.column {
  flex: 1;
}

@media (min-width: 768px) {
  .two-columns {
    flex-direction: row;
    align-items: flex-start;
  }
}

.local-services {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  gap: 15px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.service-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
}

.service-info h4 {
  margin: 0;
  font-size: 1.1em;
  color: #333;
}

.service-info p {
  margin: 4px 0;
  font-size: 0.95em;
}

.service-info .category {
  font-weight: bold;
  color: #666;
}
.things-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.thing-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.thing-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.thing-card-body {
  padding: 15px;
}
.thing-card-body h3 {
  font-size: 1em;
  margin-bottom: 8px;
}
.thing-card-body .category {
  font-size: 0.85em;
  color: #777;
}
.btn-view {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  background-color: #007bff;
  color: white;
  border-radius: 4px;
  font-size: 0.85em;
  text-decoration: none;
}
.btn-view:hover {
  background-color: #0056b3;
}
.filters select, .filters button {
  padding: 6px 10px;
  font-size: 0.9em;
}
.sidebar-full-width {
  margin-top: 40px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
}
.blog-entry {
  margin: 40px 0;
}
.blog-entry h2 {
  margin-bottom: 15px;
  color: #333;
}
.blog-entry .blog-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 10px;
}
.button {
  background-color: #f77f00; /* Green */
  border: none;
  color: white;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.button1 {border-radius: 2px;}
.thing-contact ul {
  margin: 0 0 10px 20px;
  padding: 0;
  list-style-type: disc;
}

    /* NAVBAR mobile tweaks (same as your activities file) */
    @media (max-width: 768px) {
      .navbar { padding: 12px 16px !important; }
      .navbar-brand img { max-height: 80px !important; width: auto; }
      .navbar-toggler { width: 48px !important; height: 38px !important; border: none !important; }
      .navbar-toggler span {
        background-color: #000;
        display: block;
        height: 3.5px;
        margin: 7px 0;
        border-radius: 3px;
      }
      .navbar-nav .nav-link {
        font-size: 1.3rem !important;
        font-weight: 600 !important;
        padding: 14px 0 !important;
        color: #000 !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
      .navbar-nav .nav-link:hover { color: #ef6c00 !important; }
      .side-menu { padding-top: 90px !important; }
    
 
    }
              /* footer CSS */
            /* ===== DARK FOOTER STYLE ===== */
            .footer {
                background: #000; /* deep black */
                border-top: 3px solid #00d68f; /* tropical green accent */
                padding: 50px 20px 25px;
                text-align: center;
                color: #f5f5f5;
                font-family: 'Poppins', sans-serif;
            }

            .footer-content {
                max-width: 1100px;
                margin: 0 auto;
                display: flex;
                flex-direction: column;
                gap: 28px;
                align-items: center;
            }

            /* Text section */
            .footer-section h4 {
                font-size: 1.5rem;
                margin-bottom: 10px;
                color: #00ffb3; /* neon greenish tone */
                letter-spacing: 1px;
            }

            .footer-section p,
            .footer-section a {
                color: #ddd;
                text-decoration: none;
                font-size: 0.95rem;
            }

            .footer-section a:hover {
                color: #00d68f;
            }

            /* Social icons */
            .social {
                display: flex;
                gap: 22px;
                justify-content: center;
            }

            .social-icon {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 46px;
                height: 46px;
                border-radius: 50%;
                border: 2px solid #fff;
                color: #fff;
                font-size: 1.4rem;
                transition: all 0.3s ease;
            }

            .social-icon:hover {
                background: #00d68f;
                color: #000;
                transform: scale(1.15);
                box-shadow: 0 0 12px #00d68f;
            }
                    .whatsapp-button {
                display: inline-block;
                background-color: #25D366;
                color: white;
                padding: 10px 15px;
                margin-top: 10px;
                border-radius: 5px;
                text-decoration: none;
                font-weight: bold;
                transition: background-color 0.3s ease;
            }

            .whatsapp-button:hover {
                background-color: #1ebe5b;
            }

            .whatsapp-button i {
                margin-right: 8px;
            }
            .float{
                position:fixed;
                width:60px;
                height:60px;
                bottom:40px;
                right:40px;
                background-color:#25d366;
                color:#FFF;
                border-radius:50px;
                text-align:center;
                font-size:30px;
                box-shadow: 2px 2px 3px #999;
                z-index:100;
            }

            .my-float{
                margin-top:16px;
            }

/* ===== MOBILE NAV FIX: show links when burger opens ===== */
@media (max-width: 991.98px){

  /* Force the nav list to stack vertically on mobile */
  .navbar .navbar-nav{
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100%;
  }

  /* Make each item full width */
  .navbar .navbar-nav .nav-item{
    width: 100%;
  }

  /* Make links visible + tappable */
  .navbar .navbar-nav .nav-link{
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 18px;
  }

  /* Give the opened menu space to scroll if needed */
  .navbar .navbar-collapse{
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
}

/* ensure it sits over everything */



@media (max-width: 991.98px){
  #xenav{ background:#fff; padding:12px 16px; }
  #xenav .nav-link{ color:#111 !important; }
  #xenav .nav-link:hover{ color:#ef6c00 !important; }
}
@media (max-width: 991.98px){
  #xenav.collapse.show{
    display:block !important;
  }
}
@media (max-width: 991.98px){
  #xenav{
    position: relative;
    z-index: 9999;
    background: #fff;
  }
}
/* =========================================================
   QUICK VISITOR INFORMATION
========================================================= */

.quick-visitor-info {
  margin: 18px 0 26px;
  padding: 18px 22px;
  background: #f7faf8;
  border: 1px solid rgba(18, 82, 73, 0.1);
  border-radius: 10px;
}

.quick-visitor-info > h2 {
  margin: 0 0 16px;
  color: #145b59;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.quick-visitor-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.quick-visitor-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.quick-visitor-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  color: #0f8f93;
  font-size: 18px;
}

.quick-visitor-copy {
  min-width: 0;
}

.quick-visitor-copy h3 {
  margin: 0 0 3px;
  color: #202020;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.quick-visitor-copy p {
  margin: 0;
  color: #575f5d;
  font-size: 12px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
  .quick-visitor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 18px;
  }
}

@media (max-width: 650px) {
  .quick-visitor-info {
    margin: 16px 0 22px;
    padding: 16px;
  }

  .quick-visitor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .quick-visitor-item {
    gap: 8px;
  }

  .quick-visitor-icon {
    flex-basis: 26px;
    width: 26px;
    height: 26px;
    font-size: 16px;
  }

  .quick-visitor-copy h3 {
    font-size: 12px;
  }

  .quick-visitor-copy p {
    font-size: 11px;
  }
}

@media (max-width: 390px) {
  .quick-visitor-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   BEACH OVERVIEW: VIDEO + INTRODUCTION
========================================================= */

.beach-overview-section {
  margin: 28px 0 34px;
}

.beach-overview-heading {
  margin-bottom: 18px;
  text-align: center;
}

.beach-overview-eyebrow {
  display: inline-block;
  margin-bottom: 5px;
  color: #2f6f4e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.beach-overview-heading h2 {
  margin: 0;
  color: #173f2d;
  font-size: 28px;
  line-height: 1.25;
}

.beach-overview-heading p {
  max-width: 700px;
  margin: 8px auto 0;
  color: #5f6f66;
  font-size: 15px;
  line-height: 1.55;
}

.beach-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 1fr);
  gap: 22px;
  align-items: stretch;
}

.beach-overview-video {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding-top: 56.25%;
  background: #111;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(18, 64, 43, 0.12);
}

.beach-overview-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.beach-overview-introduction {
  padding: 22px;
  background: #f7faf8;
  border: 1px solid rgba(18, 82, 73, 0.1);
  border-radius: 16px;
}

.beach-overview-introduction h3 {
  margin: 0 0 14px;
  color: #173f2d;
  font-size: 24px;
  line-height: 1.25;
}

.beach-overview-introduction p {
  margin: 0 0 14px;
  color: #444;
  font-size: 15px;
  line-height: 1.65;
}

.beach-overview-introduction p:last-child {
  margin-bottom: 0;
}

.beach-overview-introduction a {
  color: #2f6f4e;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.beach-overview-introduction a:hover {
  color: #1f5038;
}

@media (max-width: 900px) {
  .beach-overview-grid {
    grid-template-columns: 1fr;
  }

  .beach-overview-introduction {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .beach-overview-section {
    margin: 24px 0 30px;
  }

  .beach-overview-heading h2 {
    font-size: 24px;
  }

  .beach-overview-heading p {
    font-size: 14px;
  }

  .beach-overview-video,
  .beach-overview-introduction {
    border-radius: 13px;
  }

  .beach-overview-introduction h3 {
    font-size: 21px;
  }

  .beach-overview-introduction p {
    font-size: 15px;
  }
}
/* =========================================================
   TOP EXPERIENCES — HORIZONTAL GUIDE LAYOUT
========================================================= */

.top-experiences-section {
  margin: 38px 0 20px;
}

.top-experiences-heading {
  margin-bottom: 24px;
  text-align: center;
}

.top-experiences-eyebrow {
  display: inline-block;
  margin-bottom: 5px;
  color: #2f6f4e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-experiences-heading h2 {
  margin: 0;
  color: #173f2d;
  font-size: 28px;
  line-height: 1.25;
}

.top-experiences-heading p {
  max-width: 700px;
  margin: 8px auto 0;
  color: #5f6f66;
  font-size: 15px;
  line-height: 1.55;
}

.top-experiences-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.experience-entry {
  position: relative;
  padding-left: 10px;
}

.experience-number {
  position: absolute;
  top: 12px;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #0f8f93;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(15, 143, 147, 0.24);
}

.experience-row {
  display: grid;
  grid-template-columns:
    minmax(175px, 0.9fr)
    minmax(220px, 1.2fr)
    minmax(165px, 0.75fr);
  min-width: 0;
  overflow: hidden;
  margin-left: 18px;
  background: #ffffff;
  border: 1px solid rgba(18, 82, 73, 0.11);
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(18, 64, 43, 0.05);
}

.experience-media {
  min-width: 0;
  min-height: 190px;
  background: #edf4f1;
}

.experience-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.experience-content {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid rgba(18, 82, 73, 0.09);
}

.experience-content h3 {
  margin: 0 0 10px;
  color: #202020;
  font-size: 18px;
  line-height: 1.3;
}

.experience-body p {
  margin: 0 0 10px;
color: #404040;font-size: 17px;
line-height: 1.85;
font-weight: 400;
}

.experience-body p:last-child {
  margin-bottom: 0;
}

.experience-body a {
color: #0b7f75;
font-weight: 600;
text-decoration: none;
border-bottom: 1px solid rgba(11,127,117,.25);
transition: .2s;
}

.experience-recommendations {
  min-width: 0;
  padding: 16px;
  background: #f8fbf9;
}

.experience-recommendation-group + .experience-recommendation-group {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(18, 82, 73, 0.1);
}

.experience-recommendations-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #0f7e80;
  font-size: 12px;
  font-weight: 700;
}

.experience-recommendations-title i {
  font-size: 14px;
}

.experience-recommendations-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.experience-recommendation-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 12px;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 7px 0;
  color: #2d3532;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  border-bottom: 1px solid rgba(18, 82, 73, 0.08);
}

.experience-recommendation-link:last-child {
  border-bottom: 0;
}

.experience-recommendation-link:hover {
  color: #0f7e80;
}

.experience-recommendation-image {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 6px;
  background: #edf4f1;
}

.experience-recommendation-name {
  min-width: 0;
  overflow-wrap: anywhere;
}

.experience-recommendation-link > i {
  color: #0f8f93;
  font-size: 10px;
}

.experience-recommendations-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: #0f7e80;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.experience-recommendations-view-all:hover {
  color: #095f61;
}

.experience-recommendations-view-all i {
  font-size: 9px;
}
/* Narrow desktop / tablet */
@media (max-width: 1050px) {
  .experience-row {
    grid-template-columns:
      minmax(160px, 0.85fr)
      minmax(210px, 1.15fr);
  }

  .experience-recommendations {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(18, 82, 73, 0.09);
  }

  .experience-recommendations-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .top-experiences-section {
    margin-top: 32px;
  }

  .top-experiences-heading h2 {
    font-size: 24px;
  }

  .top-experiences-heading p {
    font-size: 14px;
  }

  .experience-entry {
    padding-left: 0;
  }

  .experience-number {
    top: 10px;
    left: 10px;
    width: 36px;
    height: 36px;
  }

  .experience-row {
    display: block;
    margin-left: 0;
  }

  .experience-media {
    min-height: 210px;
  }

  .experience-image {
    min-height: 210px;
    max-height: 260px;
  }

  .experience-content {
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 82, 73, 0.09);
  }

  .experience-content h3 {
    font-size: 18px;
  }

  .experience-body p {
    font-size: 14px;
  }

  .experience-recommendations {
    padding: 15px 16px;
  }

  .experience-recommendations-list {
    display: flex;
  }
}
/* =========================================================
/* =========================================================
   DESTINATION GUIDE — FULL-WIDTH LAYOUT
   Business discovery is now placed contextually inside
   individual experiences instead of the legacy sidebar.
========================================================= */
========================================================= */

.beach-layout {
  display: block;
}

.beach-main {
  width: 100%;
  max-width: none;
}

.beach-sidebar {
  display: none;
}

/* Give the video and introduction more balanced space */
.beach-overview-grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 1fr);
}

/* Use the extra page width for experiences */
.experience-row {
  grid-template-columns:
    minmax(230px, 0.95fr)
    minmax(340px, 1.35fr)
    minmax(220px, 0.8fr);
}

@media (max-width: 1050px) {
  .experience-row {
    grid-template-columns:
      minmax(200px, 0.9fr)
      minmax(300px, 1.25fr)
      minmax(200px, 0.75fr);
  }
}

@media (max-width: 900px) {
  .beach-overview-grid {
    grid-template-columns: 1fr;
  }

  .experience-row {
    grid-template-columns:
      minmax(180px, 0.9fr)
      minmax(0, 1.2fr);
  }

  .experience-recommendations {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .experience-row {
    display: block;
  }
}
/* =========================================================
   LOCATION MAP
========================================================= */

.beach-location-section{
    margin:50px 0;
}

.beach-location-heading{
    text-align:center;
    margin-bottom:22px;
}

.beach-location-heading h2{
    margin:8px 0;
    font-size:34px;
    font-weight:700;
    color:#173f2d;
}

.beach-location-heading p{
    max-width:720px;
    margin:0 auto;
    color:#5b6a62;
    line-height:1.7;
}

.beach-location-map{
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 14px 35px rgba(0,0,0,.10);
}

.beach-location-map iframe{
    display:block;
    width:100%;
    height:430px;
    border:0;
}

.beach-location-actions{
    margin-top:18px;
    display:flex;
    justify-content:center;
}

/* =========================================================
   EXPLORE MORE BEACHES
========================================================= */

/* =========================================================
   EXPLORE MORE DESTINATIONS — HORIZONTAL CAROUSEL
========================================================= */

.nearby-beaches-section {
  margin: 64px 0 42px;
}

.nearby-beaches-heading {
  margin-bottom: 24px;
  text-align: center;
}

.nearby-beaches-eyebrow {
  display: inline-block;
  margin-bottom: 6px;
  color: #2f6f4e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nearby-beaches-heading h2 {
  margin: 0;
  color: #173f2d;
  font-size: 34px;
  line-height: 1.25;
}

.nearby-beaches-heading p {
  max-width: 760px;
  margin: 10px auto 0;
  color: #5f6f66;
  font-size: 16px;
  line-height: 1.65;
}

.nearby-beaches-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.nearby-beaches-see-all {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #0b7f75;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.nearby-beaches-see-all:hover {
  background: #08675f;
  color: #ffffff;
  text-decoration: none;
}

.nearby-beaches-arrows {
  display: flex;
  gap: 9px;
}

.nearby-beaches-arrows button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  padding: 0;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: #ffffff;
  color: #173f2d;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.nearby-beaches-arrows button:hover {
  border-color: #0b7f75;
  color: #0b7f75;
}

.nearby-beaches-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 5px 3px 18px;
  scroll-snap-type: x proximity;
}

.nearby-beaches-scroll::-webkit-scrollbar {
  display: none;
}

.nearby-destination-card {
  flex: 0 0 290px;
  min-height: 330px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(18, 82, 73, 0.1);
  border-radius: 16px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(18, 64, 43, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  scroll-snap-align: start;
}

.nearby-destination-card:hover {
  transform: translateY(-4px);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(18, 64, 43, 0.15);
}

.nearby-destination-card > img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.nearby-destination-card-body {
  padding: 18px;
}

.nearby-destination-card-body h3 {
  margin: 0 0 8px;
  color: #173f2d;
  font-size: 22px;
  line-height: 1.25;
}

.nearby-destination-card-body p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #5f6f66;
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.nearby-destination-more-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 330px;
  padding: 24px;
  background: linear-gradient(135deg, #0b7f75, #13a89a);
  color: #ffffff;
  text-align: center;
}

.nearby-destination-more-card:hover {
  color: #ffffff;
}

.nearby-destination-more-icon {
  margin-bottom: 18px;
  font-size: 52px;
}

.nearby-destination-more-body h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 23px;
  font-weight: 800;
}

.nearby-destination-more-body p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.6;
}

.nearby-destination-more-button {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  background: #ffffff;
  color: #0b7f75;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .nearby-beaches-section {
    margin-top: 48px;
  }

  .nearby-beaches-heading h2 {
    font-size: 28px;
  }

  .nearby-beaches-heading p {
    font-size: 15px;
  }

  .nearby-beaches-carousel-header {
    justify-content: center;
  }

  .nearby-beaches-arrows {
    display: none;
  }

  .nearby-destination-card {
    flex-basis: 82%;
    min-height: 320px;
  }

  .nearby-destination-card > img {
    height: 205px;
  }
}
/* =========================================================
   DESTINATION HERO
========================================================= */

.beach-destination-hero {
  position: relative;
  min-height: 470px;
  padding: 70px 24px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  color: #ffffff;
}

.beach-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(5, 24, 22, 0.18) 0%,
      rgba(5, 24, 22, 0.48) 58%,
      rgba(5, 24, 22, 0.68) 100%
    );
}

.beach-hero-content {
  width: min(900px, 100%);
  margin: 0 auto;
}

.beach-hero-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.beach-destination-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.42);
}

.beach-hero-tagline {
  margin-top: 14px;
  color: #ffffff;
  font-size: clamp(18px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.42);
}

.beach-hero-summary {
  max-width: 760px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  line-height: 1.65;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.beach-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.beach-hero-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(7, 42, 38, 0.38);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.beach-hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.beach-hero-scroll:hover {
  color: #ffffff;
  text-decoration: none;
}

.beach-hero-scroll i {
  font-size: 13px;
}

#beach-guide-content {
  scroll-margin-top: 115px;
}

@media (max-width: 768px) {
  .beach-destination-hero {
    min-height: 420px;
    padding: 58px 18px 52px;
  }

  .beach-hero-eyebrow {
    font-size: 11px;
  }

  .beach-hero-summary {
    font-size: 15px;
    line-height: 1.55;
  }

  .beach-hero-tags {
    gap: 7px;
    margin-top: 18px;
  }

  .beach-hero-tag {
    min-height: 31px;
    padding: 6px 11px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .beach-destination-hero {
    min-height: 390px;
  }

  .beach-hero-summary {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}
/* =========================================================
   DESTINATION BUSINESS CAROUSELS
========================================================= */

.destination-business-section {
  margin: 54px 0;
}

.destination-business-heading {
  margin-bottom: 20px;
  text-align: center;
}

.destination-business-heading h2 {
  margin: 0;
  color: #173f2d;
  font-size: 32px;
  line-height: 1.25;
}

.destination-business-heading p {
  max-width: 720px;
  margin: 9px auto 0;
  color: #5f6f66;
  font-size: 15px;
  line-height: 1.6;
}

.destination-business-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.destination-business-see-all {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #0b7f75;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.destination-business-see-all:hover {
  background: #08675f;
  color: #ffffff;
  text-decoration: none;
}

.destination-business-arrows {
  display: flex;
  gap: 9px;
}

.destination-business-arrows button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  padding: 0;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: #ffffff;
  color: #173f2d;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.destination-business-arrows button:hover {
  border-color: #0b7f75;
  color: #0b7f75;
}

.destination-business-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 5px 3px 18px;
  scroll-snap-type: x proximity;
}

.destination-business-scroll::-webkit-scrollbar {
  display: none;
}

.destination-business-card {
  flex: 0 0 290px;
  min-height: 330px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(18, 82, 73, 0.1);
  border-radius: 16px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(18, 64, 43, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  scroll-snap-align: start;
}

.destination-business-card:hover {
  transform: translateY(-4px);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(18, 64, 43, 0.15);
}

.destination-business-card > img {
  display: block;
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.destination-business-card-body {
  padding: 18px;
}

.destination-business-card-body h3 {
  margin: 0 0 8px;
  color: #173f2d;
  font-size: 21px;
  line-height: 1.25;
}

.destination-business-card-body p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #5f6f66;
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.destination-business-more-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 330px;
  padding: 24px;
  background: linear-gradient(135deg, #0b7f75, #13a89a);
  color: #ffffff;
  text-align: center;
}

.destination-business-more-card:hover {
  color: #ffffff;
}

.destination-business-more-icon {
  margin-bottom: 18px;
  font-size: 52px;
}

.destination-business-more-body h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
}

.destination-business-more-body p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.6;
}

.destination-business-more-button {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  background: #ffffff;
  color: #0b7f75;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .destination-business-section {
    margin: 44px 0;
  }

  .destination-business-heading h2 {
    font-size: 27px;
  }

  .destination-business-heading p {
    font-size: 14px;
  }

  .destination-business-carousel-header {
    justify-content: center;
  }

  .destination-business-arrows {
    display: none;
  }

  .destination-business-card {
    flex-basis: 82%;
    min-height: 320px;
  }

  .destination-business-card > img {
    height: 200px;
  }
}
/* =========================================================
   BEACH GUIDE TYPOGRAPHY — FINAL POLISH
========================================================= */

/* Welcome text beside the video */
.beach-overview-introduction p {
  color: #3f4944;
  font-size: 17px;
  line-height: 1.8;
}

/* Main beach article/experience text */
.blog-entry p,
.experience-content p,
.experience-copy p,
.beach-experience-content p {
  color: #3f4944;
  font-size: 17px;
  line-height: 1.82;
  margin-bottom: 18px;
}

/* Article titles */
.blog-entry h2,
.experience-content h2,
.experience-copy h2,
.beach-experience-content h2 {
  color: #173f2d;
  font-size: 34px;
  line-height: 1.22;
  font-weight: 750;
  margin-bottom: 18px;
}

/* Keep internal SEO links visible but elegant */
.blog-entry p a,
.experience-content p a,
.experience-copy p a,
.beach-experience-content p a,
.beach-overview-introduction p a {
  color: #ef6c00;
  font-weight: 650;
  text-decoration: none;
  border-bottom: 2px solid rgba(239, 108, 0, 0.3);
  text-underline-offset: 3px;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.blog-entry p a:hover,
.experience-content p a:hover,
.experience-copy p a:hover,
.beach-experience-content p a:hover,
.beach-overview-introduction p a:hover {
  color: #c45500;
  border-bottom-color: #ef6c00;
}

/* Tablet */
@media (max-width: 900px) {
  .blog-entry h2,
  .experience-content h2,
  .experience-copy h2,
  .beach-experience-content h2 {
    font-size: 30px;
  }

  .blog-entry p,
  .experience-content p,
  .experience-copy p,
  .beach-experience-content p,
  .beach-overview-introduction p {
    font-size: 16.5px;
    line-height: 1.78;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .blog-entry h2,
  .experience-content h2,
  .experience-copy h2,
  .beach-experience-content h2 {
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 15px;
  }

  .blog-entry p,
  .experience-content p,
  .experience-copy p,
  .beach-experience-content p,
  .beach-overview-introduction p {
    font-size: 16px;
    line-height: 1.72;
    margin-bottom: 16px;
  }
}
/* =========================================================
   EXPERIENCE ROW — OPTIONAL RECOMMENDATIONS
========================================================= */

.experience-row.has-recommendations {
  grid-template-columns:
    minmax(190px, 0.9fr)
    minmax(360px, 1.9fr)
    minmax(210px, 0.9fr);
}
.experience-row.has-recommendations .experience-content {
  padding: 22px;
}

.experience-row.has-recommendations .experience-recommendations {
  padding: 18px;
}
.experience-row.no-recommendations {
  grid-template-columns:
    minmax(175px, 0.8fr)
    minmax(0, 2.2fr);
}

.experience-row.no-recommendations .experience-content {
  border-right: 0;
}

@media (max-width: 900px) {
  .experience-row.has-recommendations,
  .experience-row.no-recommendations {
    grid-template-columns: 1fr;
  }

  .experience-row .experience-content {
    border-right: 0;
  }
}
.nearby-icons{
    display:flex;
    justify-content:center;
    gap:12px;
    margin:12px 0 10px;
    flex-wrap:wrap;
}

.nearby-icons i{
    color:#0b7f75;
    font-size:18px;
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#eef8f7;
    transition:.25s;
}

.nearby-destination-card:hover .nearby-icons i{
    transform:translateY(-2px);
    background:#0b7f75;
    color:#fff;
}
