* {
  cursor: url("../cursors/default-cursor.png"), auto;
}

a {
  cursor: url("../cursors/pointer-cursor.png"), pointer;
}

a:active {
  cursor: url("../cursors/clicked-cursor.png"), pointer;
}

body {
  margin: 0;
  overflow-x: hidden;
}

p {
  font-family: "brandon-grotesque", sans-serif;
}

h1,
h2 {
  font-family: "Rafaella-Shadow", serif;
  font-size: 2rem;
  line-height: 1rem;
}

/* Background paper image */
#paper-b {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Prevent interference with clicking */
  opacity: 0.6; /* Adjust for more or less grain */
  z-index: -100;
}

/* 🔥 Cinematic drifting photos */
.floating-photo-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -3; /* behind grain + paper */
  pointer-events: none;
}

/* Base photo style */
.float-pic {
  position: absolute;
  width: 20rem;
  height: auto;
  object-fit: cover;
  filter: blur(20px) brightness(1.3);
  border-radius: 14px;
  opacity: 0.8;
  animation: drift 38s linear infinite alternate;
  will-change: transform;
  transform: translate(-10%, -10%) rotate(-4deg);
}

/* Individual random offsets + speeds */
.f1 {
  top: -5vh;
  left: 7vw;
  animation-duration: 46s;
}
.f2 {
  top: 50vh;
  left: 20vw;
  animation-duration: 52s;
}
.f3 {
  top: 15vh;
  left: 82vw;
  animation-duration: 60s;
}
.f4 {
  top: 55vh;
  left: 70vw;
  animation-duration: 50s;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1) rotate(-3deg);
  }
  50% {
    transform: translate(-30%, 30%) scale(1.06) rotate(-5deg);
  }
  100% {
    transform: translate(4%, -6%) scale(1.03) rotate(-2deg);
  }
}

/* Plant shadows */
.plant-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.6 !important; /* Semi-transparent */
  z-index: -100; /* Above background but below text */
  filter: blur(10px);
  pointer-events: none;
}

.plant-shadow-left {
  bottom: 0; /* Position at the bottom */
  left: 0; /* Align left */
  transform: translateY(20%) scaleX(1.2); /* Adjust position and scale */
  pointer-events: none;
  z-index: -100;
}

.plant-shadow,
.plant-shadow-left,
#grain,
#paper-b {
  position: fixed;
  top: -40vh; /* start ABOVE viewport */
  height: 250vh; /* tall enough to cover entire scroll range */
  opacity: 0.22;
  pointer-events: none;
  mix-blend-mode: multiply;
  user-select: none;
  z-index: -2;
  will-change: transform;
}

.plant-shadow {
  left: -3vw;
}
.plant-shadow-2 {
  right: -3vw;
  transform: scaleX(-1);
  opacity: 0.18;
}

#grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Prevent interference with clicking */
  opacity: 0.2; /* Adjust for more or less grain */
  z-index: 1000;
  filter: blur(1px);
}

#paper-b,
.plant-shadow,
#grain {
  will-change: transform;
  transition: transform 0.15s linear;
}

.header-container {
  position: fixed;
  top: 3.5rem;
  left: 4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem; /* Space between logo and menu */
  z-index: 1001;
}

#logo-png {
  width: 6rem;
  z-index: 1001;
  margin-right: -0.5rem;
  cursor: url("../cursors/pointer-cursor.png"), pointer;
}

#logo-png:hover {
  animation: rotate 1s infinite forwards linear;
}

#logo-png:active {
  cursor: url("../cursors/clicked-cursor.png");
}

@keyframes rotate {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

.close-menu {
  display: inline;
  position: absolute;
  top: 0rem;
  right: 1.9rem;
  font-size: 3rem;
  color: black;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2000;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 400;
  font-style: normal;
  cursor: url("../cursors/pointer-cursor.png"), pointer;
  padding: 1rem;
}

.close-menu:hover {
  color: white;
}

.close-menu:active {
  cursor: url("/cursors/clicked-cursor.png"), pointer;
}

.header-container {
  position: fixed;
  top: 3.5rem;
  left: 4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem; /* Space between logo and menu */
  z-index: 1001;
}

/* Menu Button - Positioned in the top-right corner */
.menu-toggle {
  padding: 1.9rem 2rem 1rem 0;
  background: none;
  color: rgb(48, 48, 48);
  font-family: "rafaella-shadow", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  border: none;
  z-index: 2000;
  transition: transform 0.3s ease-in-out;
  cursor: url("../../cursors/pointer-cursor.png"), default;
}

.menu-toggle:hover {
  color: white;
}

.menu-toggle:active {
  color: white;
  cursor: url("../../cursors/clicked-cursor.png"), default;
}

#dropdown-title a {
  font-family: "rafaella-shadow", sans-serif;
  font-weight: 700;
  font-size: 3.3rem;
  color: #333;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 2rem;
  transition: transform 0.6s ease-in-out;
  background: none;
  padding: none;
  line-height: 4rem;
  cursor: url("../../cursors/pointer-cursor.png"), pointer;
}

#dropdown-title a:hover {
  transform: rotate(-2deg);
}

#dropdown-title a:active {
  cursor: url("../../cursors/clicked-cursor.png"), pointer;
}

/* Fullscreen overlay when menu is open */
.dropdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.197); /* Dark overlay */
  backdrop-filter: blur(7px); /* Blur effect */
  display: none; /* Initially hidden */
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.3s ease-in-out;
}

/* Dropdown container */
.dropdown-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url("/photos-regular/paper.jpg") no-repeat center center / cover;
  position: relative;
  padding: 30px;
  border-radius: 20px;
  width: 95%;
  max-width: 36rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 1s ease-in-out;
}

/* Add a crumpled texture effect like the home page */
.dropdown-menu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/photos-regular/grain.png"); /* Match home-style.css */
  opacity: 0.1;
  z-index: -1;
  border-radius: 20px;
}

/* Add plant shadow effect */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/photos-regular/plant-shadow-left.jpg") no-repeat center
    center / cover;
  opacity: 0.3;
  z-index: -1;
  border-radius: 20px;
}

/* Show dropdown when active */
.dropdown-overlay.active {
  display: flex;
}

/* Animate dropdown entrance */
.dropdown-overlay.active .dropdown-menu {
  animation: slideIn 0.6s ease-out forwards;
}

.dropdown-overlay.closing .dropdown-menu {
  animation: slideOut 0.8s ease-in forwards;
}

@keyframes slideIn {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Slide Out */
@keyframes slideOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

/* Options styling */
.options a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 93%;
  padding: 15px 20px;
  margin-bottom: 1.5rem;
  text-decoration: none;
  color: #333;
  background-color: white;
  border-radius: 50px;
  transition: background-color 0.3s ease;
  font-size: 1.5rem;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 400;
  font-style: normal;
  cursor: url("../../cursors/pointer-cursor.png"), pointer;
}

.options a span {
  margin-left: 4rem;
  margin-right: 4rem;
  text-align: center;
}

.options a img {
  width: 2rem; /* Adjust size as needed */
  height: 2rem;
  margin-top: 0.3rem; /* Keeps spacing balanced */
}

.options a:hover {
  background-color: rgba(89, 89, 89, 0.397);
}

.options a:active {
  cursor: url("../../cursors/clicked-cursor.png"), pointer;
}

/* ———— Page Structure ———— */
.page-wrap {
  width: 92%;
  max-width: 60rem;
  margin: auto;
  padding-top: 120px;
  padding-bottom: 90px;
  text-align: center;
}

/* --- Leaf decoration around Pricing Title --- */
.pricing-title-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem; /* spacing between leaves + text */
}

.leaf {
  width: 4rem; /* adjust size easily */
  opacity: 0.9;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
  transition: 0.3s;
  margin-bottom: 1.5rem;
}

/* Flip left leaf horizontally */
.leaf.left {
  transform: scaleX(-1);
}

/* Slight hover luxury animation */
.pricing-title-wrap:hover .leaf {
  transform: rotate(5deg);
}
.pricing-title-wrap:hover .leaf.left {
  transform: rotate(-6deg) scaleX(-1);
}

/* ———— Hero Title (COPIED FROM CP PAGE) ———— */
.pricing-title {
  font-family: "Rafaella-Shadow", serif;
  font-size: 4rem;
  line-height: 0;
  transition: 0.3s;
}

.pricing-title:hover {
  transform: rotate(-2deg);
}

.subtitle {
  font-size: 1.2rem;
  margin: 1rem auto 3rem;
  line-height: 1.6;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.958);
  backdrop-filter: blur(3px);
  border: solid black 3px;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transition: 0.25s;
}

.pricing-card p {
  font-size: 1.2rem;
  max-width: 30rem;
  margin: 1.5rem auto 1.5rem;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.corner-icon {
  width: 4rem; /* adjust size here */
  position: absolute;
  z-index: 5;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.25));
}

/* Alternating positions */
.corner-icon.left {
  top: -1rem;
  left: -1rem;
}

.corner-icon.right {
  top: -1.5rem;
  right: -1rem;
}

.smaller-icon {
  width: 3.2rem;
  top: -1.2rem !important;
}

/* Ensure cards allow overlap positioning */
.pricing-card {
  position: relative;
  overflow: visible;
}

/* Buttons identical to CP .book-btn */
.book-btn {
  display: inline-block;
  background: #ffffff;
  color: #000000;
  padding: 14px 36px;
  border: black solid 2px;
  border-radius: 50px;
  font-size: 1.2rem;
  text-decoration: none;
  transition: 0.25s;
  margin-top: 0.5rem;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 600;
  width: 80%;
  max-width: 25rem;
}

.book-btn:hover {
  border: none;
  background: #c5c5c5;
  transform: scale(1.03);
}

.calligraphy-line {
  width: 80%; /* Adjust width as needed */
  max-width: 30rem; /* Prevent it from getting too big */
  opacity: 0.7; /* Slightly faded effect */
  margin: -4rem auto -8rem;
  pointer-events: none;
}

/* Title above paragraph */
.pricing-mini-title {
  margin: 5rem auto 2rem;
  font-size: 3rem;
  line-height: 3rem;
}

.scroll-highlights {
  margin: 2rem auto;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 18%,
    black 82%,
    transparent
  );
  z-index: 3;
}

.scroll-highlights p {
  width: 100%;
  margin: 2rem auto;
  font-size: 3rem;
  z-index: 8;
}

.scroll-track {
  display: inline-flex;
  gap: 2rem;
  white-space: nowrap;
  animation: scrollLoop 45s linear infinite;
  will-change: transform;
  font-family: "brandon-grotesque", sans-serif;
  overflow: hidden;
}

/* TRUE INFINITE SCROLL — seamless forever */
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  } /* half, because two copies exist */
}

.scroll-track span {
  font-size: 1rem;
  transition: 0.5s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.scroll-track span:hover {
  opacity: 1;
  transform: scale(1.1);
  font-weight: 600;
}

.scroll-track span:nth-child(2n) {
  font-size: 0; /* hide dash text */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem; /* size of the lens image */
  height: auto;
  background-image: url("icons/lens.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 10px;
}

.explain-text {
  font-size: 1.2rem;
}

/* ─────────────── Why Us Section ─────────────── */

#cal-2 {
  margin: -1rem auto -11rem;
}

/* Editorial Spread — Why Us */

.editorial-why-us {
  width: 100%;
  max-width: 80rem;
  margin: auto;
  padding: 6rem 0;
}

.ed-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  font-weight: 600;
}

.ed-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
}

/* alternate layout */
.ed-row.reverse {
  flex-direction: row-reverse;
}

.ed-image {
  flex: 1;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-radius: 22px;
  filter: brightness(0.92) contrast(1.05);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(0) scale(1.03);
  transition: transform 0.18s ease-out;
  will-change: transform;
}

.ed-text h3 {
  font-size: 1.8rem;
  font-family: "brandon-grotesque", sans-serif;
  text-transform: uppercase;
  line-height: 2rem;
  margin-bottom: -1rem;
}

.ed-text {
  flex: 1;
  font-size: 1.2rem;
  line-height: 1.7rem;
}

.funny-ftn {
  margin-top: 2rem;
  font-size: 0.8rem;
}

.book-btn.about-us {
  text-transform: uppercase;
  width: 100%;
  max-width: 30rem;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .ed-row,
  .ed-row.reverse {
    flex-direction: column;
  }
  .ed-image {
    width: 100%;
  }
}

footer {
  background-image: url("../booking/hawk.jpg"); /* Path to your image */
  background-size: cover; /* Makes the image cover the entire container */
  background-position: top; /* Centers the image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  color: #ffffff;
  text-align: center;
  font-family: "brandon-grotesque", sans-serif;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0 0.5rem 0;
}

.footer-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  transition: color 0.3s;
  cursor: url("../cursors/pointer-cursor.png"), pointer;
}

.footer-links a:hover {
  color: black;
}

.footer-links a:active {
  cursor: url("../cursors/clicked-cursor.png"), pointer;
}

@media (max-width: 768px) {
  html,
  body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  /* Hard-stop any accidental wide children */
  * {
    box-sizing: border-box;
  }

  body {
    padding: 0;
    margin: 0;
  }
}

@media (max-width: 1024px) {
  .dropdown-overlay.active + .header-container {
    visibility: hidden; /* Hide but keep space */
    opacity: 0; /* Make it invisible */
    pointer-events: none; /* Prevent interaction */
  }

  .dropdown-overlay:not(.active) + .header-container {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .dropdown-menu {
    max-width: 90vw !important;
  }

  .f1 {
    top: -5vh;
    left: 10vw;
    animation-duration: 46s;
    transform: rotate(-20deg) !important;
  }

  .close-menu {
    display: inline;
    position: absolute;
    top: 0rem;
    right: 1.5rem;
    font-size: 3rem;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2000;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 400;
    font-style: normal;
    cursor: url("../../cursors/pointer-cursor.png"), pointer;
    padding: 1rem;
  }

  .close-menu:hover {
    color: white;
  }

  .close-menu:active {
    cursor: url("../../cursors/clicked-cursor.png"), pointer;
  }

  #logo-png {
    width: 5rem;
    margin-right: auto;
    margin-left: 1.5rem;
  }

  .menu-toggle {
    padding: 1.7rem 1.5rem 1rem 0;
    font-size: 1.5rem;
  }

  .options a {
    width: 100%;
    margin: none;
  }

  .options a span {
    margin: 0;
  }

  .header-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }

  .options a {
    font-size: 1.2rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    margin-bottom: 0.7rem;
    margin-top: 0.7rem;
  }

  #dropdown-title a {
    font-size: 2.8rem;
    line-height: 3rem;
    white-space: inherit;
  }

  .page-wrap {
    margin-top: -6rem;
  }

  .leaf {
    opacity: 0;
    margin: -10rem;
  }

  .pricing-title {
    font-size: 3rem;
  }

  .pricing-grid p,
  .subtitle,
  .scroll-track span,
  .explain-text {
    font-size: 1rem !important;
  }

  .pricing-grid a {
    font-size: 0.8rem;
    padding: 0.7rem;
    width: 90%;
  }

  .corner-icon {
    width: 3rem;
  }

  .smaller-icon {
    width: 2.5rem;
  }

  .pricing-mini-title {
    font-size: 2.3rem;
  }

  .calligraphy-line {
    margin: -2.8rem auto -8rem;
  }

  .explain-text {
    margin-bottom: -2rem;
  }

  .float-pic {
    opacity: 0.6;
  }

  .ed-title {
    margin: 3rem auto 4rem;
    font-size: 2.3rem;
  }

  .ed-text {
    margin: -2rem auto -3rem;
  }

  .funny-ftn {
    margin-top: 0rem;
  }

  .editorial-why-us {
    margin-bottom: -5rem;
  }
}

@media (max-width: 768px) {
  .float-pic {
    width: 10rem !important;
  }

  .ed-image {
    background-attachment: scroll !important;
  }

  .book-btn.about-us {
    font-size: 0.8rem;
    padding-left: 0;
    padding-right: 0;
  }

  .ed-text h3 {
    font-size: 1.5rem;
  }

  .ed-text p {
    font-size: 1rem;
  }

  .funny-ftn {
    font-size: 0.8rem !important;
  }
}

@media (max-width: 400px) {
  .ed-text h3 {
    font-size: 1.4rem;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
