html {
    scroll-padding-top: 100px; /* Adjust this number to match the height of your fixed menu bar */
}

/* ========================= */
/* HERO WITH BACKGROUND LOGO */
/* ========================= */

.pf-hero-with-logo {
  position: relative;
  min-height: 700px;
  padding: 80px 20px;
  text-align: center;
  color: white;
  background-color: #000;
  overflow: hidden;
}

/* Parallax-style background */
.pf-hero-with-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('Picklefalls Logo.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.25;
  z-index: 1;
  background-attachment: fixed;
}

/* THREE-COLUMN HERO LAYOUT */

.hero-inner {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  animation: fadeInHero 0.8s ease forwards;
}

/* ========================= */
/* MAIN TITLE — SLOW ZOOM-IN */
/* ========================= */

.pf-tagline {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow:
    0 0 12px rgba(255,255,255,0.7),
    0 0 22px rgba(255,255,255,0.5),
    0 0 42px rgba(255,255,255,0.3);

  opacity: 0;
  animation: slowZoomIn 1.8s ease forwards;
  animation-delay: 0.1s;
}

/* ========================= */
/* SUBTITLE — SLOW ZOOM-IN */
/* ========================= */

.pf-subtagline {
  font-size: 25px;
  font-weight: 300;
  margin-top: -5px;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
  color: #ffffff;

  opacity: 0;
  animation: slowZoomIn 1.8s ease forwards;
  animation-delay: 0.4s;
}

/* ========================= */
/* CENTER LOGO */
/* ========================= */

.center-logo {
  display: block;
  margin: 0 auto 20px auto;
  width: 500px;
  max-width: 60%;
  height: auto;
  cursor: pointer;
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: 0.7s;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.4));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.center-logo:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 28px rgba(255,255,255,0.7));
}

/* ========================= */
/* SIDE PHOTO COLUMNS */
/* ========================= */

.side-photos {
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Staggered fade-in for left & right columns */
.side-photos div {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.side-photos div:nth-child(1) { animation-delay: 0.2s; }
.side-photos div:nth-child(2) { animation-delay: 0.35s; }
.side-photos div:nth-child(3) { animation-delay: 0.5s; }
.side-photos div:nth-child(4) { animation-delay: 0.65s; }

.side-photos div {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  opacity: 0.9;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

/* Hover zoom + glow */
.side-photos div:hover {
  transform: scale(1.03);
  box-shadow: 0 0 18px rgba(255,255,255,0.4);
  opacity: 1;
}

/* LEFT COLUMN IMAGES */
.side-photos.left div:nth-child(1) { background-image: url('photo1.jpg'); }
.side-photos.left div:nth-child(2) { background-image: url('photo2.jpg'); }
.side-photos.left div:nth-child(3) { background-image: url('photo3.jpg'); }
.side-photos.left div:nth-child(4) { background-image: url('photo4.jpg'); }

/* RIGHT COLUMN IMAGES */
.side-photos.right div:nth-child(1) { background-image: url('photo5.jpg'); }
.side-photos.right div:nth-child(2) { background-image: url('photo6.jpg'); }
.side-photos.right div:nth-child(3) { background-image: url('photo7.jpg'); }
.side-photos.right div:nth-child(4) { background-image: url('photo8.jpg'); }

/* ========================= */
/* CLICK-TO-ENLARGE MODAL */
/* ========================= */

.photo-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999999;
  backdrop-filter: blur(10px);
}

.photo-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.photo-modal-content {
  text-align: center;
  max-width: 90%;
}

/* Zoom animation + subtle glow */
.photo-modal-content img {
  max-width: 700px;
  width: 90%;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255,255,255,0.3);
  animation: zoomIn 0.25s ease;
}

/* Caption fade-in */
.photo-modal-content p {
  margin-top: 15px;
  font-size: 20px;
  color: white;
  opacity: 0;
  animation: fadeInCaption 0.3s ease forwards;
  animation-delay: 0.2s;
}

/* ========================= */
/* MODAL BUTTONS */
/* ========================= */

.modal-close,
.modal-prev,
.modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 40px;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 1000000;
}

.modal-close {
  top: 20px;
  right: 20px;
  transform: none;
  font-size: 45px;
}

.modal-prev { left: 20px; }
.modal-next { right: 20px; }

.modal-prev:hover,
.modal-next:hover,
.modal-close:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.05);
}

.modal-close:hover {
  transform: scale(1.1);
}

/* ========================= */
/* ANIMATIONS */
/* ========================= */

@keyframes fadeInUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

@keyframes fadeInCaption {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInHero {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slowZoomIn {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ========================= */
/* GLOBAL STYLES */
/* ========================= */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  padding-top: 75px;
}

.section {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
}

#about.section {
    padding-top: 0;
}

#about h2 {
    color: #7ddf96;
    text-align: center;
    font-size: 36px;
    margin-bottom: 25px;
}

#about p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
}


#retreats.section { padding-top: 40px; }

.section h2 {
    color: #7ddf96;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.section p {
    color: #ffffff;
}

/* ========================= */
/* SECTION HEADINGS */
/* ========================= */

#about h2,
#pricing h2,
#calendar h2,
#booking h2,
#retreats h2 {
    color: #7ddf96;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.section p {
    color: #ffffff;
}

/* ========================= */
/* MOUNTAIN BACKGROUND */
/* ========================= */

.mountain-background {
  background-image: url('Mountains.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}

.mountain-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.mountain-background > * {
  position: relative;
  z-index: 2;
}

/* ========================= */
/* NAVIGATION */
/* ========================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;

    background: rgba(0,0,0,.45);
    backdrop-filter: blur(10px);

    padding: 18px 40px;
    box-sizing: border-box;
}

.nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 38px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;

    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition: color .25s ease,
                text-shadow .25s ease,
                transform .25s ease;
}

.nav a:hover {
    color: #7ddf96;
    text-shadow: 0 0 12px rgba(125,223,150,.8);
    transform: translateY(-2px);
}

/* ========================= */
/* CTA BUTTON */
/* ========================= */

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #1c7c54;
  color: white !important;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
  background: #155c3f;
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(21,92,63,0.7);
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer {
  text-align: center;
  padding: 40px 0;
  background: #0a1a14;
  color: white;
}

/* ========================= */
/* FIXED BOTTOM-RIGHT CALENDAR */
/* ========================= */

.pf-calendar-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 260px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px;
  z-index: 9999999;
  box-shadow: 0 0 18px rgba(0,0,0,0.5);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.pf-calendar-widget:hover {
  transform: scale(1.03);
}

.pf-calendar-header {
  font-size: 18px;
  font-weight: 700;
  color: #7ddf96;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pf-calendar-img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

/* ========================= */
/* RETREAT CARDS */
/* ========================= */

.retreat-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    transition: transform .25s ease, box-shadow .25s ease;
}

.retreat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,.45);
}

.retreat-card h3 {
    margin-top: 0;
    color: #7ddf96;
    font-size: 28px;
}

.retreat-card p {
    color: white;
    line-height: 1.7;
    font-size: 17px;
}

/* ========================= */
/* PRICING SECTION */
/* ========================= */

#pricing.section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.pricing-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.pricing-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  color: white;
}

.pricing-table th,
.pricing-table td {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.35);
}

.pricing-table thead th {
  background: rgba(255,255,255,.18);
  color: #7ddf96;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.pricing-table tbody th {
  background: rgba(255,255,255,.05);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.pricing-table td {
  background: rgba(255,255,255,.05);
  font-size: 18px;
  text-align: center;
}

.pricing-table tbody tr:hover th,
.pricing-table tbody tr:hover td {
  background: rgba(255,255,255,.10);
}

.group-savings {
  margin: 25px 0 0;
  padding: 16px;
  background: rgba(125,223,150,.18);
  border: 1px solid rgba(125,223,150,.40);
  border-radius: 8px;
  color: white;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}

.pricing-note {
  margin: 15px 0 0;
  color: white;
  opacity: .9;
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 768px) {
  .pricing-card {
    padding: 18px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px;
    font-size: 15px;
  }

  .pricing-table thead th {
    font-size: 16px;
  }

  .group-savings {
    font-size: 17px;
  }
}

/* ========================= */
/* BOOKING CALL TO ACTION */
/* ========================= */

#booking.section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.booking-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  text-align: center;
}

.booking-intro {
  max-width: 700px;
  margin: 0 auto 8px;
  color: white;
  font-size: 18px;
  line-height: 1.7;
}

.booking-btn {
  margin-top: 22px;
  padding: 15px 30px;
  font-size: 18px;
  letter-spacing: .3px;
}

@media (max-width: 768px) {
  .booking-card {
    padding: 28px 18px;
  }

  .booking-intro {
    font-size: 16px;
  }

  .booking-btn {
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
  }
}

/* ========================= */
/* RETREAT CALENDAR */
/* ========================= */

#calendar.section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.calendar-intro,
.calendar-note {
  color: white;
  text-align: center;
  line-height: 1.7;
}

.calendar-intro {
  margin: -6px auto 26px;
  font-size: 18px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.calendar-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  min-height: 220px;
  overflow: hidden;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.calendar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}

.calendar-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 22px 12px;
  background: rgba(28,124,84,.92);
  color: white;
  text-align: center;
}

.calendar-month {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.calendar-days {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.calendar-year {
  font-size: 15px;
  opacity: .9;
}

.calendar-card-content {
  padding: 24px;
}

.calendar-card h3 {
  margin: 14px 0 10px;
  color: #7ddf96;
  font-size: 22px;
}

.calendar-card p {
  margin: 0;
  color: white;
  font-size: 16px;
  line-height: 1.6;
}

.status-badge {
  display: inline-block;
  padding: 7px 12px;
  border: 1px solid rgba(125,223,150,.5);
  border-radius: 999px;
  background: rgba(125,223,150,.20);
  color: white;
  font-size: 13px;
  font-weight: 700;
}

.calendar-note {
  margin: 22px auto 0;
  max-width: 760px;
  font-size: 14px;
  opacity: .9;
}

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

  .calendar-card {
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 0;
  }

  .calendar-date-block {
    padding: 18px 10px;
  }

  .calendar-days {
    font-size: 27px;
  }

  .calendar-card-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .calendar-card {
    grid-template-columns: 1fr;
  }

  .calendar-date-block {
    flex-direction: row;
    gap: 8px;
  }
}

/* ========================= */
/* SIDE PHOTO HOVER CAPTIONS */
/* ========================= */

.side-photos div[data-image] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  outline: none;
}

.side-photos div[data-image]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,.88), rgba(0,0,0,.08) 62%);
  opacity: 0;
  transition: opacity .25s ease;
}

.side-photos div[data-image]::after {
  content: attr(data-title);
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  text-shadow: 0 2px 6px rgba(0,0,0,.9);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}

.side-photos div[data-image]:hover::before,
.side-photos div[data-image]:hover::after,
.side-photos div[data-image]:focus-visible::before,
.side-photos div[data-image]:focus-visible::after {
  opacity: 1;
}

.side-photos div[data-image]:hover::after,
.side-photos div[data-image]:focus-visible::after {
  transform: translateY(0);
}

.side-photos div[data-image]:focus-visible {
  box-shadow: 0 0 0 3px #7ddf96, 0 0 18px rgba(255,255,255,.45);
}

/* ========================= */
/* PHOTO LIGHTBOX ENHANCEMENTS */
/* ========================= */

body.modal-open {
  overflow: hidden;
}

.photo-modal {
  padding: 72px 88px 36px;
  box-sizing: border-box;
  background: rgba(0,0,0,.88);
}

.photo-modal-content {
  margin: 0;
  width: min(100%, 980px);
  max-height: calc(100vh - 108px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.photo-modal-content img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 245px);
  object-fit: contain;
}

.photo-modal-content figcaption {
  max-width: 820px;
}

.photo-modal-content h2 {
  margin: 18px 0 5px;
  color: #7ddf96;
  font-size: 27px;
}

.photo-modal-content p {
  margin: 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.55;
}

.modal-close,
.modal-prev,
.modal-next {
  font-family: Arial, sans-serif;
}

@media (max-width: 768px) {
  .photo-modal {
    padding: 70px 18px 24px;
  }

  .photo-modal-content img {
    max-height: calc(100vh - 270px);
  }

  .photo-modal-content h2 {
    font-size: 22px;
  }

  .photo-modal-content p {
    font-size: 16px;
  }

  .modal-prev,
  .modal-next {
    top: auto;
    bottom: 18px;
    transform: none;
    font-size: 28px;
  }

  .modal-prev:hover,
  .modal-next:hover {
    transform: scale(1.05);
  }
}

/* ========================= */
/* CONTACT SECTION */
/* ========================= */

#contact {
  padding-top: 50px;
  padding-bottom: 70px;
}

.contact-card {
  width: calc(100% - 40px);
  max-width: 500px;
  margin: 280px auto 0 auto;
  padding: 35px;
  box-sizing: border-box;
  background: rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}

.contact-card h2 {
  margin: 0 0 10px;
  color: #7ddf96;
  font-size: 32px;
  text-align: center;
}

/* Optional hospitality-style line below the Contact Us heading. */
.contact-tagline {
  margin: 0 0 25px !important;
  color: rgba(255,255,255,.88) !important;
  font-size: 18px !important;
  font-style: italic;
  line-height: 1.5 !important;
  text-align: center;
}

.contact-card p {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
}

.contact-card p:last-of-type {
  margin-bottom: 0;
}

.contact-card a:not(.cta-btn) {
  color: #ffd76a;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.contact-card a:not(.cta-btn):hover,
.contact-card a:not(.cta-btn):focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

/* Optional final booking button inside the contact card. */
.contact-card .cta-btn {
  display: block;
  width: fit-content;
  margin: 28px auto 0;
  padding: 14px 26px;
  text-align: center;
}

.contact-card .cta-btn:focus-visible {
  outline: 3px solid #ffd76a;
  outline-offset: 3px;
}

@media (max-width: 600px) {
  #contact {
    padding-top: 35px;
    padding-bottom: 50px;
  }

  .contact-card {
    width: calc(100% - 24px);
    padding: 28px 22px;
  }

  .contact-card h2 {
    font-size: 28px;
  }

  .contact-tagline,
  .contact-card p {
    font-size: 16px !important;
  }

  .contact-card .cta-btn {
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-card {
    transition: none;
  }

  .contact-card:hover {
    transform: none;
  }
}
