<!-- ____________________ Style for dropdown _________________________ -- > 
.nav-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  gap: 10px;
  font-family: Helvetica, Arial, sans-serif;
}

.nav-item {
  width: 980px;
  max-width: 90%;
}

.nav-btn {
  width: 100%;
  /* height: 75px;*/
  height: 50px;
  background: #c4d8eb;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s;
  font-family: inherit;
}
.nav-btn:hover {
  background: #f3f3f2;
  border-color: rgba(0, 0, 0, 0.2);
}
.nav-btn.open {
  background: #f3f3f2;
  border-color: rgba(0, 0, 0, 0.2);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}

.chevron {
  font-size: 16px;
  color: #888;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nav-btn.open .chevron {
  transform: rotate(180deg);
}

/* FAQs icon */
.btn-icon {
  font-size: 22px;
  color: #666;
}
.btn-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dropdown {
  display: none;
  background: #f3f3f2;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-top: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow: hidden;
}
.dropdown.open {
  display: block;
}

/* Plain text panel for Cottage / Location / Availability */
.text-panel {
  padding: 20px 28px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* FAQ nested accordion */
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  font-size: 15px;
  color: #1a1a1a;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-weight: 400;
  transition: background 0.12s;
}
.faq-q:hover {
  background: #fff;
}

.faq-chev {
  font-size: 14px;
  color: #888;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-q.open .faq-chev {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 28px 16px 28px;
  font-size: 14px;
  color: #555;
  line-height: 1.65;
}
.faq-a.open {
  display: block;
}

@media (max-width: 1028px) {
  .nav-item {
    width: 90%;
    max-width: 90%;
  }
}

/*   ____________________   End of Style for  dropdown   _________________________    */

/*   ____________________   Style for  pan   _________________________    */

body {
  background-color: #ffffff;
  margin: 0;
  padding: 20px;
}

.panorama-window {
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 400px;
  overflow: hidden;
  position: relative;
  border: 3px solid #222;
  margin: 0 auto;
  background-color: #000;
}

/* Each image sits stacked in the same position */
.panorama-window img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
  min-width: 150%; /* ensures there's room to pan */
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

/* The active image is visible and panning */
.panorama-window img.active {
  opacity: 1;
  animation: pan 8s linear forwards;
}

/* Pan left-to-right across the image */
@keyframes pan {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% + 600px));
  }
}

/* Pause on hover */
.panorama-window:hover img.active {
  animation-play-state: paused;
}

@media (max-width: 700px) {
  .panorama-window {
    width: 85vw;
    height: 85vw;
  }
  @keyframes pan {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-100% + 85vw));
    }
  }
}

/*   ____________________   Ens of Style for  pan   _________________________    */

/*  -------------------------  start style for bullet points  -------*/

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  background: #fff;
  color: #1a1a1a;
  padding: 20px;
}

/* ── Outer wrapper – mirrors .container.fearure-item ── */
.cottage-description {
  margin-right: auto;
  margin-left: auto;
  padding: 26px 15px 20px;
  min-width: 300px;
  max-width: 1000px;
}

/* ── Intro prose – Georgia like your h2/h3 ── */
.intro {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 22px;
  border-left: 3px solid #538ec5;
  padding-left: 14px;
}

/* ── Thin rule like your site dividers ── */
.divider {
  border: none;
  border-top: 1px solid #c5d5e4;
  margin-bottom: 20px;
}

/* ── "What's included" label – mirrors .features-heading pattern ── */
.features-label {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #043658;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 16px;
}

/* ── Grid – mirrors .container.features flex wrap ── */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  background-color: #e4ebf0; /* matches your features-container bg */
  padding: 16px 10px 10px;
  border-radius: 4px;
  list-style: none;
  gap: 10px;
}

/* ── Each card – mirrors .container.features-item ── */
.feature-card {
  flex: 1 1 calc(50% - 10px);
  min-width: 220px;
  background: #fff;
  border-left: 3px solid #538ec5;
  border-radius: 0 4px 4px 0;
  padding: 10px 14px;
}

/* ── Card title – mirrors h3.Fearure-item-header ── */
.feature-name {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  color: #043658;
  margin-bottom: 4px;
}

/* ── Card body – mirrors p.paragraph.paragraph-1 ── */
.feature-desc {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #444;
}

/* ── Responsive: single column on narrow screens ── */
@media screen and (max-width: 29.4rem) {
  .feature-card {
    flex: 1 1 100%;
  }
}

/* ── Wider screens – mirrors your 64rem breakpoint sizing ── */
@media screen and (min-width: 40rem) {
  .intro {
    font-size: 16px;
  }
  .feature-name {
    font-size: 17px;
  }
  .feature-desc {
    font-size: 15px;
  }
}

@media screen and (min-width: 64rem) {
  .intro {
    font-size: 16px;
    line-height: 1.7;
  }
  .feature-name {
    font-size: 17px;
  }
  .feature-desc {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .feature-card {
    transition: box-shadow 0.15s ease;
  }
  .feature-card:hover {
    box-shadow: 0 2px 8px rgba(19, 51, 197, 0.1);
  }
}

/*    ---------------------  end style for buillet points  ---------------  */

/*   ____________________   Style for  links   _________________________    */

/* .links-feature-row {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                gap: 20px;
                max-width: 15`00px;
                margin: 40px auto;
            }  */

.links-feature-row {
  display: grid;
  grid-template-columns: repeat(6, 260px);
  justify-content: center;
  gap: 20px;
  padding: 20px;
  margin: 0 auto;
}

/* 3 columns */
@media (max-width: 1659px) {
  .links-feature-row {
    grid-template-columns: repeat(3, 260px);
  }
}

/* 2 columns */
@media (max-width: 819px) {
  .links-feature-row {
    grid-template-columns: repeat(2, 260px);
  }
}

/* 1 column */
@media (max-width: 539px) {
  .links-feature-row {
    grid-template-columns: 260px;
  }
}

.links-feature-box {
  text-align: center;
  text-decoration: none;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}

.links-feature-box img {
  width: 100%;
  display: block;
}

.links-feature-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
/*   ____________________   end of Style for  links   _________________________    */


/*   ____________________   start of Style for  cta   _________________________    */


   /*body {
    font-family: Helvetica, Arial, sans-serif;
    background: #e4ebf0;
    padding: 40px 20px;
    text-align: center;
  }*/

       .cta-button {
        display: inline-block;
        background-color: #538ec5;
        color: #ffffff;
        text-decoration: none;
        font-family: Helvetica, Arial, sans-serif;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        text-align: center;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        line-height: 1.3;
        transition:
          background-color 0.2s ease,
          transform 0.15s ease;

        /* Responsive sizing */
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 14px 16px;

        /* Fluid font-size: scales smoothly between screen sizes so the
       button only goes single-line once there's genuinely room for it */
        font-size: clamp(11px, 3.1vw, 16px);
        white-space: normal; /* wrap whenever the text doesn't fit */
        word-break: normal;
      }

      .cta-button:hover,
      .cta-button:focus {
        /* background-color: #043658;*/
        background-color: #3077b9;
        transform: translateY(-1px);
        color: #ffffff;
      }

      /* Once the viewport is comfortably wide enough for the full
     phrase on one line at a readable size, cap the font-size and
     let it sit naturally on a single line within its container */
      @media (min-width: 700px) {
        .cta-button {
          width: auto;
          white-space: nowrap;
          font-size: 16px;
          padding: 16px 32px;
        }
      }

      @media (min-width: 992px) {
        .cta-button {
          font-size: 17px;
          padding: 18px 36px;
        }
      }
*   ____________________   send of Style for  cta   _________________________    */
