

/* === Base Styles === */
body {
  margin: 0;
  font-family: Montserrat, sans-serif;
  background:#fff;
  color: #111;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}
header {
  background: #f8f8f8;
  padding: 15px 0;
}
footer {
  margin-bottom: 25px;
}
h1a {
  color: purple;
  font-size: 34px;
  margin-top: 20px;
}

/* H1: Destination / Page Titles */
h1 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #003366; /* Deep blue */
  font-size: 2em;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.6em;
}

/* H2: Section Headings */
h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #d4a526; /* Elegant gold */
  font-size: 1.2em;
  line-height: 1.3;
  margin-top: 2em;
  margin-bottom: 0.8em;
}

/* Body Text */
body, p {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 1.1em;
  line-height: 1.8;
}

h3 {
  font-size: 24px;
}
li {
  padding-bottom: 10px;
  font-size: 17px;
}
a, a:link, a:visited, a:hover, a:active {
  color:#005799;
  text-decoration: none;
}

/* === Layout === */
.main {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.content {
  flex: 1 1 auto; /* flexible */
  min-width: 0;
}

.sidebar {
  width: 300px;
  flex-shrink: 0; /* prevent shrinking */
}



/* === Responsive Fixes === */
@media (max-width: 640px) {
  .main {
    flex-direction: column;
  }
  .content,
  .sidebar {
    width: 100%;
  }
  .sidebar {
    margin-top: 20px;
  }
}








/* === Editors' Choice === */
.editors-choice {
  margin-top: 40px;
}
.editors-choice h2 {
  font-size: 22px;
  margin-bottom: 20px;
}
.choice-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  gap: 15px;
}

.choice-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.choice-text h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.choice-text p {
  margin: 10px 0 0;
  font-size: 17px;
  line-height: 1.5;
}

/* Tablet and up: side-by-side layout */
@media (min-width: 769px) {
  .choice-item {
    flex-direction: row;
    align-items: flex-start;
  }

  .choice-item img {
    width: 50%;
    margin-bottom: 0;
  }

  .choice-text {
    width: 50%;
  }
}






/* === Sidebar Widgets === */
.sidebar .widget {
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 1.5;
}
.sidebar .widget h3 {
  margin-bottom: 10px;
}
.sidebar-block.newsletter {
  background: #f2f9ff;
  border: 1px solid #cce4f7;
  padding: 20px;
  border-radius: 6px;
  margin-top: 30px;
}
.sidebar-block.newsletter h3 {
  font-size: 18px;
  color: #005799;
  margin-top: 0;
}
.sidebar-block.newsletter p {
  font-size: 14px;
  margin-bottom: 10px;
}
.sidebar-block.newsletter input[type="email"] {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.sidebar-block.newsletter button {
  width: 100%;
  background-color: #0077cc;
  color: #fff;
  border: none;
  font-weight: bold;
  padding: 10px;
  cursor: pointer;
  border-radius: 4px;
}
.sidebar-block.newsletter .note {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}
.sidebar-block.newsletter h3 .icon-envelope {
  font-size: 1.6em;
  margin-right: 8px;
  vertical-align: middle;
}

/* === Top Places List === */
.top-places-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.top-places-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.place-number {
  width: 28px;
  height: 28px;
  background: purple;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 10px;
  flex-shrink: 0;
}
.place-info strong {
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}
.place-info p {
  font-size: 13px;
  margin: 0;
  color: #555;
}

/* === Claim to Fame Box === */
.claim-to-fame-box {
  background: #fff9e6;
  border-left: 6px solid #f4b400;
  padding: 20px;
  margin: 30px 50px;
  font-size: 16px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  position: relative;
}
.claim-to-fame-box .ribbon {
  position: absolute;
  top: -12px;
  left: 0;
  background: #f4b400;
  color: #fff;
  padding: 4px 12px;
  font-weight: bold;
  font-size: 13px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

/* === Miscellaneous === */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background: #000;
  color: #fff;
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
  z-index: 1000;
  border-radius: 3px;
}
.logo a {
  color: white;
  text-decoration: none;
}
button, a.button {        /* covers <button> and <a class="button"> */
    background-color: #0077cc;
    color: #fff;
    border: none;
    font-weight: bold;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;

    /* new additions for layout */
    display: inline-block;   /* ensures it's treated as one block */
    margin-top: 0px;        /* 30px spacing from the text above */
    clear: both;             /* prevents alignment issues next to floated images */
    text-decoration: none;   /* remove underline if using <a> */
}


/* ==========================================================================
   Sidebar Accordion Widget
   --------------------------------------------------------------------------
   Component : sidebar-accordion
   Purpose   : Collapsible accordion for sidebar widgets
   HTML      : <div class="sidebar-accordion">…</div>
   ========================================================================== */
.sidebar-accordion {
  max-width: 1024px;
  margin: 0 auto;
  border-top: 1px solid #ccc;
  text-align: left;
}

/* ==========================================================================
   Sidebar Accordion Item
   --------------------------------------------------------------------------
   Component : sidebar-accordion__item
   Purpose   : Wrapper for each accordion section
   HTML      : <div class="sidebar-accordion__item">…</div>
   ========================================================================== */
.sidebar-accordion__item {
  border-bottom: 1px solid #ccc;
}

/* ==========================================================================
   Sidebar Accordion Toggle
   --------------------------------------------------------------------------
   Component : sidebar-accordion__toggle
   Purpose   : Button to expand/collapse the content
   HTML      : <button class="sidebar-accordion__toggle">…</button>
   ========================================================================== */
.sidebar-accordion__toggle {
  width: 100%;
  padding: 15px;
  background: #666;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.sidebar-accordion__toggle:hover {
  background: #336699;
}

/* ==========================================================================
   Sidebar Accordion Content
   --------------------------------------------------------------------------
   Component : sidebar-accordion__content
   Purpose   : Hidden container for accordion panel content
   HTML      : <div class="sidebar-accordion__content">…</div>
   ========================================================================== */
.sidebar-accordion__content {
  display: none;
  #padding: 15px;
  background: #fff;
}

/* ==========================================================================
   Sidebar Accordion Active State
   --------------------------------------------------------------------------
   Component : sidebar-accordion__item--active
   Purpose   : Modifier class to show content when item is active
   HTML      : <div class="sidebar-accordion__item sidebar-accordion__item--active">…</div>
   ========================================================================== */
.sidebar-accordion__item--active .sidebar-accordion__content {
  display: block;
}

.sidebar-block {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.sidebar-block {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
}


.sidebar-block:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s ease-in-out;
}

.sidebar-block {
  padding: 16px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.accordion-item:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 8px;
}

.accordion-tab.active {
  box-shadow: inset 0 -2px 0 #ffffff;
}

.sidebar-accordion__content {
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 480px) {
  .sidebar-block h3 {
    font-size: 1.1em;
  }
}

.sidebar-block--highlight {
  border-left: 4px solid #E63946; /* a festive red */
}












.hero-img-wrapper {
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  border-radius: 6px; /* optional */
}

.hero-img {
  width: 100%;  /* fills container width */
  height: auto; /* preserves aspect ratio */
  display: block;
  border-radius: 0px; /* optional rounded corners */
}

nav ul { 
  list-style: none; 
  padding: 0; margin: 0; display: flex; flex-wrap: wrap; }
nav ul li { margin: 0px 10px; position: relative; }
nav ul li a { text-decoration: none; color: #333; font-weight: bold; }
/* Hide only the first bullet, keep the same left indent */
ul.nav li:first-child::marker { content: ""; }

ul li {
  #display: list-item;
  #width: 100%;
}
header { background: #f8f8f8; padding: 15px 0; }
footer { margin-bottom: 25px; }

.image-row {
  display: flex;
  justify-content: space-between;
  gap: 20px; /* sets 20px between the images */
}

.image-row img {
  width: calc(50% - 10px); /* 10px from each side of the gap = 20px total */
  height: auto;
  display: block;
}

.sidebar-image-box {
  margin: 20px 0;
  text-align: center;
}

.sidebar-image-box img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sidebar-image-box .caption {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #444;
  line-height: 1.4;
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.image-grid figure {
  width: calc(50% - 10px); /* Keeps the 2-up layout */
  margin: 0;
}

.image-grid img {
  width: 100%;
  height: auto;
  display: block;
}

.image-grid figcaption {
  font-size: 0.9rem;
  color: #555;
  text-align: center;
  margin-top: 6px;
}


/* ==========================================================================
   tpl3 Featured Grid
   --------------------------------------------------------------------------
   Template: tpl3 (Series parent pages—“Things To Do in X”)
   Purpose : Container for the 3×2 top‑6 featured card grid
   HTML    : <div class="tpl3‑featured‑grid">…</div>
   ========================================================================== */
.tpl3‑featured‑grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ==========================================================================
   tpl3 Featured Grid Item
   --------------------------------------------------------------------------
   Template: tpl3
   Purpose : Styles each individual card in the featured grid
   HTML    : <article class="tpl3‑featured‑grid__item">…</article>
   ========================================================================== */
.tpl3‑featured‑grid__item {
  background: #fff;
  border-radius: 6px;
  padding: 1em;
}

/* ==========================================================================
   tpl3 Featured Grid Image Wrapper
   --------------------------------------------------------------------------
   Template: tpl3
   Purpose : Wrapper for the image link inside each card
   HTML    : <a class="tpl3‑featured‑grid__img"><img …></a>
   ========================================================================== */
.tpl3‑featured‑grid__img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* ==========================================================================
   tpl3 Featured Grid Title
   --------------------------------------------------------------------------
   Template: tpl3
   Purpose : Styles the H2 title within each card
   HTML    : <h2 class="tpl3‑featured‑grid__title">…</h2>
   ========================================================================== */
.tpl3‑featured‑grid__title {
  margin: 0.5em 0 0.3em;
  font-size: 1.2rem;
}

/* ==========================================================================
   tpl3 Featured Grid Excerpt
   --------------------------------------------------------------------------
   Template: tpl3
   Purpose : Styles the paragraph excerpt under each title
   HTML    : <p class="tpl3‑featured‑grid__excerpt">…</p>
   ========================================================================== */
.tpl3‑featured‑grid__excerpt {
  margin: 0 0 0.5em;
  font-size: 0.9rem;
}

/* ==========================================================================
   tpl3 Featured Grid CTA Button
   --------------------------------------------------------------------------
   Template: tpl3
   Purpose : Styles the “Read More” call‑to‑action link/button
   HTML    : <a class="tpl3‑featured‑grid__cta">Read More</a>
   ========================================================================== */
.tpl3‑featured‑grid__cta {
  display: inline-block;
  padding: 0.4em 0.8em;
  text-decoration: none;
  border: 1px solid #333;
  border-radius: 4px;
  font-size: 0.85rem;
}


.photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}







.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.image-grid figure {
  width: calc(50% - 10px); /* Keeps the 2-up layout */
  margin: 0;
}

.image-grid img {
  width: 100%;
  height: auto;
  display: block;
}

.image-grid figcaption {
  font-size: 0.9rem;
  color: #555;
  text-align: center;
  margin-top: 6px;
}

/* === Image Grid === */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.image-grid-item {
  background: #fff;
  padding: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.image-grid-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.image-grid-item img {
  width: 100%;
  height: auto;
  display: block;
}
.image-grid-item h3 {
  margin: 10px 0 5px;
}
.image-grid-item p {
  margin: 0;
  font-size: 17px;
}

@media (max-width: 1024px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================================================================
   Homepage Image Grid
   --------------------------------------------------------------------------
   Component : homepage-image-grid
   Purpose   : Strict 3‑column gallery confined to main content area
   HTML      : 
   <div class="homepage-image-grid">
     <article class="homepage-image-grid__item">…</article>
     …
   </div>
   --------------------------------------------------------------------------
   - Use max-width to match your content column (e.g., 780px)
   - Ensure this is placed inside your main content wrapper
   ========================================================================== */
.homepage-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 780px; 
  max-width: 100%;      /* match content column width */
  margin: 0 auto;         /* center within content */
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .homepage-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .homepage-image-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Homepage Image Grid Item
   --------------------------------------------------------------------------
   Component : homepage-image-grid__item
   Purpose   : Sets spacing and prevents overflow
   HTML      : <article class="homepage-image-grid__item">…</article>
   ========================================================================== */
.homepage-image-grid__item {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.homepage-image-grid__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Homepage Image Grid Image
   --------------------------------------------------------------------------
   Component : homepage-image-grid__img
   Purpose   : Ensures images fit grid item width
   HTML      : <img class="homepage-image-grid__img">…
   ========================================================================== */
.homepage-image-grid__img {
  width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
  flex-shrink: 0;
}

/* ==========================================================================
   Homepage Image Grid Title
   --------------------------------------------------------------------------
   Component : homepage-image-grid__title
   Purpose   : Title under each image
   HTML      : <h3 class="homepage-image-grid__title">…</h3>
   ========================================================================== */
.homepage-image-grid__title {
  margin: 10px 15px 5px;
  font-size: 1.1rem;
  line-height: 1.3;
}

/* ==========================================================================
   Homepage Image Grid Caption
   --------------------------------------------------------------------------
   Component : homepage-image-grid__caption
   Purpose   : Description text
   HTML      : <p class="homepage-image-grid__caption">…</p>
   ========================================================================== */
.homepage-image-grid__caption {
  margin: 0 15px 15px;
  font-size: 0.9rem;
  color: #555;
  flex-grow: 1;
  text-align: left;
}

/* ==========================================================================
   Sidebar Widget Image Grid
   --------------------------------------------------------------------------
   Component : sidebar-image-grid
   Purpose   : 2-column compact gallery in sidebar
   HTML      : <div class="sidebar-image-grid">…</div>
   ========================================================================== */
.sidebar-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* ==========================================================================
   Sidebar Image Grid Item
   --------------------------------------------------------------------------
   Component : sidebar-image-grid__item
   Purpose   : Wrapper for each figure
   HTML      : <figure class="sidebar-image-grid__item">…</figure>
   ========================================================================== */
.sidebar-image-grid__item {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==========================================================================
   Sidebar Image Grid Image
   --------------------------------------------------------------------------
   Component : sidebar-image-grid__img
   Purpose   : Ensures images fit their grid cell
   HTML      : <img class="sidebar-image-grid__img">…
   ========================================================================== */
.sidebar-image-grid__img {
  width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
}

/* ==========================================================================
   Sidebar Image Grid Caption
   --------------------------------------------------------------------------
   Component : sidebar-image-grid__caption
   Purpose   : Caption under sidebar images
   HTML      : <figcaption class="sidebar-image-grid__caption">…</figcaption>
   ========================================================================== */
.sidebar-image-grid__caption {
  margin-top: 4px;
  font-size: 0.85rem;
  color: #666;
  text-align: center;
}

.excerpt-block .cta-button {
  background: #008080;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
    margin: 30px auto 20px auto;  /* only affects excerpt buttons */
    cursor: pointer;
    display: block;
    text-align: center;
}


button.guide-btn {
  background: #008080;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.cta-button:hover {
  background: #006666;
}









.header-bar {
    width: 100%;
    background: black; /* full width background */
    padding: 20px 0;
}

.content-wrapper {
    width: 1024px;       /* same as your page content */
    margin: 0 auto;      /* center the wrapper itself */
}

.site-logo {
    display: block;
    margin: 0;           /* no auto-center, aligns left naturally */
    max-width: 300px;    /* optional */
}

.category-groups {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.category-block h2 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.category-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* space between items */
    justify-content: space-between; /* distribute evenly */
}

.category-item {
    flex: 1 1 calc(33.333% - 20px); /* each gets 1/3 minus gutter space */
    max-width: calc(33.333% - 20px);
    text-align: center;
}

.category-item img {
    width: 100%;   /* fills its column width */
    height: auto;  /* maintain aspect ratio */
    max-height: 300px; /* optional safety cap */
    object-fit: cover;
    border-radius: 6px;
    display: block;
    margin: 0 auto 10px;
}



.view-all {
    margin-top: 10px;
}
.view-all a {
    text-decoration: underline;
    font-weight: bold;
}
.popular-title {
    font-size: 2em;
    margin-bottom: 30px;
}
/* Sticky header container */
.stickyheader {
  position: sticky;      /* makes it stick as you scroll */
  top: 0;
  z-index: 1000;         /* above page content */
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(6px);
  -webkit-backdrop-filter: saturate(140%) blur(6px); /* Safari */
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* Inner layout */
.stickyheader .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Brand & nav */
.stickyheader .brand { font-weight: 700; font-size: 1.1rem; }
.stickyheader nav { margin-left: auto; display: flex; gap: 18px; }
.stickyheader a { color: inherit; text-decoration: none; }
.stickyheader a:hover { text-decoration: underline; }

/* Mobile */
@media (max-width: 768px) {
  .stickyheader .wrap { padding: 8px 12px; }
  .stickyheader nav { gap: 12px; font-size: 0.95rem; }
}

:root { --topbar-h: 64px; --nav-h: 56px; } /* JS will overwrite both */

@media (max-width: 900px){
  .ttd-menu{
    position:fixed; left:0; right:0;
    top:calc(var(--topbar-h) + var(--nav-h)); /* sits exactly under topbar+nav */
    ...
  }
}
.ttd-nav { display: flow-root; } /* prevents child margin collapse in sticky */

.sidebar-featured-image {
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px 0;
}

.sidebar-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    border-radius: 4px; /* optional */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* optional */
}

.sidebar-featured-image figcaption {
    font-size: 0.85rem;
    line-height: 1.3;
    margin-top: 6px;
    color: #555;
}
