* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: url("../../cursors/default-cursor.png"), pointer;
}

body {
  font-family: Arial, sans-serif;
  background: #fafafa;
  overflow-x: hidden;
}

/* 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;
}

#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);
}

p {
  font-family: "brandon-grotesque", sans-serif;
}

#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: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.header-container h1 {
  font-size: 4rem;
  font-family: "Rafaella-Shadow", serif;
  line-height: 2.8rem; /* a bit more natural for that size */
  text-align: center;
  margin-top: 1rem;
}

/* Menu Button - Positioned in the top-right corner */
.menu-toggle {
  padding: 1.9rem 2rem 1rem 0;
  background: none;
  color: rgb(27, 27, 27);
  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"), pointer;
}

.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;
  line-height: 4rem;
  white-space: nowrap; /* 🔥 Prevents wrapping */
  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: 38rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 1s ease-in-out;
}

.dropdown-menu .options {
  display: flex;
  flex-direction: column;
  align-items: center; /* ← this is the missing piece */
  width: 100%;
}

/* 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 {
  /* Add this */
  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;
}

/* MAIN LAYOUT */
.about-us-container {
  display: flex;
  width: 100%;
  z-index: 1;
}

.film-strip {
  position: absolute;
  top: 0;
  width: 22%;
  overflow: hidden;
  padding: 3rem;
  z-index: 1; /* behind content */
}

.film-left {
  left: 0;
}

.film-right {
  right: 0;
}

.film-track {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.film-track img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
  filter: brightness(0.97) contrast(1.05);
  z-index: 3;
}

.about-content {
  display: block !important; /* ⬅ THIS removes all flex spacing behavior */
  width: 95%;
  max-width: 50rem;
  min-width: 50rem;
  height: min-content;
  background: white;
  padding: 2.5rem 2rem;
  margin: 11rem auto 0; /* adjust vertically as needed */
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 3;
  position: relative;
  z-index: 2;
}

.about-content::before {
  content: "";
  position: absolute;
  width: 4.6rem;
  height: 1.8rem;
  background: rgba(255, 255, 210, 0.75);
  opacity: 0.85;
  top: -0.9rem;
  filter: blur(0.4px);
  border-radius: 2px;
}

.about-content::before {
  left: 45%;
  transform: rotate(8deg);
}

.about-content h1 {
  opacity: 0;
  display: none;
}

.about-content p {
  font-size: 1.1rem;
  width: 95%;
  margin: 0 auto; /* ⬅ important: no more vertical auto margin */
  line-height: 1.6;
  text-align: left;
}

.leaf-wrapper {
  position: relative; /* leaves now anchor to THIS */
  width: fit-content;
  margin: 0 auto;
  z-index: 0;
}

/* LEAVES — now stable and behind the card */
#leaf-behind,
#leaf-behind-2,
#leaf-behind-3,
#leaf-behind-4 {
  position: absolute;
  z-index: 0; /* BELOW the content */
  pointer-events: none;
  transition: opacity 0.8s ease, filter 1.2s ease;
}

/* RIGHT leaf */
#leaf-behind {
  top: 18rem; /* adjust where it sits confidently */
  right: -5rem;
  width: 8rem;
  transform: rotate(70deg);
}

/* LEFT lower leaf */
#leaf-behind-2 {
  top: 60rem;
  left: -4rem;
  width: 6rem;
  transform: rotate(-40deg);
  opacity: 1;
}

#leaf-behind-3 {
  top: 10rem; /* adjust where it sits confidently */
  right: -5rem;
  width: 6rem;
  transform: rotate(70deg);
}

/* LEFT lower leaf */
#leaf-behind-4 {
  top: 60rem;
  left: -8rem;
  width: 6rem;
  transform: rotate(-100deg);
}

/* ============================
   HOBBIES SECTION — SCRAPBOOK STYLE
   ============================ */
.hobbies-section {
  width: 95%;
  max-width: 50rem;
  min-width: 50rem;
  margin: 3.5rem auto 2rem;
  padding: 2rem 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  position: relative;
}

/* Decorative tape on top (reusing favorite-section vibe) */
.hobbies-section::before {
  content: "";
  position: absolute;
  width: 4.6rem;
  height: 1.8rem;
  background: rgba(255, 255, 210, 0.75);
  opacity: 0.85;
  top: -0.9rem;
  filter: blur(0.4px);
  border-radius: 2px;
}

.hobbies-section::before {
  left: 45%;
  transform: rotate(-5deg);
}

/* Heading */
.hobbies-section h2 {
  font-family: "Rafaella-Shadow", serif;
  font-size: 3rem;
  text-align: center;
  margin: 1rem auto 1.5rem;
  line-height: 3rem;
}

/* List styling */
.hobby-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hobby-list li {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1.1rem;
  padding-left: 1.8rem;
  position: relative;
}

/* Polaroid beside "Things We Love" */
.polaroid-love {
  position: absolute;
  top: 10rem;
  right: 5rem;
  width: 13rem;
  background: white;
  padding: 0.7rem;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: rotate(4deg);
  z-index: 5;
}

.polaroid-love img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.polaroid-love .caption {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 1.8rem;
  color: #000000;
  font-family: "lindsey-signature", sans-serif;
  line-height: 1rem;
}

.favorites-section {
  width: 95%;
  max-width: 50rem;
  min-width: 50rem;
  margin: 4rem auto;
  padding: 2rem 1.5rem;
  background: none;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* Decorative tape on top (reusing favorite-section vibe) */
.favorites-section::before {
  content: "";
  position: absolute;
  width: 4.6rem;
  height: 1.8rem;
  background: rgba(255, 255, 210, 0.75);
  opacity: 0.85;
  top: -0.9rem;
  filter: blur(0.4px);
  border-radius: 2px;
}

.favorites-section::before {
  left: 50%;
  transform: rotate(8deg);
}

.favorites-section h2 {
  text-align: center;
  font-size: 3rem;
  font-family: "Rafaella-Shadow", serif;
  line-height: 2rem;
  margin: 1rem auto 2rem;
}

.favorites-table {
  display: grid;
  grid-template-columns: 0.4fr 1fr 1fr; /* narrower category column */
  gap: 0.5rem;
}

.fav-row {
  display: contents;
}

.fav-col {
  padding: 1.3rem 1rem 1rem 1rem;
  background: rgb(255, 255, 255);
  border-radius: 10px;
  text-align: center;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  /* border: 2.5px solid black; */
}

.fav-col:hover {
  transform: scale(0.98);
}

.fav-col.category.empty-box {
  opacity: 0;
}

.fav-col.category {
  font-weight: 600;
  text-align: right;
  padding-right: 1.2rem;
  background: none;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1.1rem;
  border: none;
  box-shadow: none;
}

.fav-row.header .fav-col {
  font-weight: bold;
  background: none;
  font-size: 1.1rem;
  font-family: "brandon-grotesque", sans-serif;
  padding: 0.5rem;
  border: none;
  box-shadow: none;
  margin-top: 1rem;
}

/* FAQ SECTION WRAPPER */
.faq-section {
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding: 2rem 2rem;
  position: relative;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Tape Decorations */
.faq-section::before {
  content: "";
  position: absolute;
  width: 4.6rem;
  height: 1.8rem;
  background: rgba(255, 255, 210, 0.75);
  opacity: 0.85;
  top: -0.9rem;
  filter: blur(0.4px);
  border-radius: 2px;
}

.faq-section::before {
  left: 45%;
  transform: rotate(-8deg);
}

/* FAQ Title */
.faq-section h2 {
  font-family: "Rafaella-Shadow", serif;
  font-size: 3rem;
  text-align: center;
  margin: 1rem auto 1.5rem;
  line-height: 3rem;
  width: 80%;
}

/* FAQ CONTAINER */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* FAQ BOX — default closed state */
.faq-box {
  background: #ffffff;
  padding: 0.7rem 1.2rem;
  border-radius: 50px; /* closed radius */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: border-radius 0.35s ease, background 0.3s ease;
  border: 2px solid black;
}

.faq-box:hover {
  transform: scale(0.99);
}

/* Open state modifier */
.faq-box.open {
  border-radius: 15px; /* open radius */
}

/* QUESTION BUTTON */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1.1rem;
  text-align: left;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: url("../../cursors/pointer-cursor.png"), pointer;
  font-family: "brandon-grotesque", sans-serif;
}

.faq-question:active {
  cursor: url("../../cursors/clicked-cursor.png"), pointer;
}

/* Arrow */
.faq-question .arrow {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
  cursor: url("../../cursors/pointer-cursor.png"), pointer;
  font-family: "brandon-grotesque", sans-serif;
}

.faq-question .arrow:active {
  cursor: url("../../cursors/clicked-cursor.png"), pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
  display: block; /* This is the missing key */
  line-height: 1.5; /* Ensures no clipping */
}

.faq-answer.open {
  padding: 0.5rem 0;
}

/* Rotate arrow when open */
.faq-question.active .arrow {
  transform: rotate(45deg);
}

.action-link {
  text-align: center;
  margin-top: 1rem;
  font-size: 1rem;
  opacity: 0.85;
  letter-spacing: 0.3px;
}

.action-link.shrunk {
  opacity: 0;
  display: none;
}

.action-link a {
  color: #2c2c2c;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 2px;
  transition: opacity 0.25s ease, border-color 0.25s ease;
  cursor: url("../../cursors/pointer-cursor.png"), pointer;
}

.action-link a:hover {
  opacity: 0.6;
  border-color: rgba(0, 0, 0, 0.3);
}

footer {
  color: #000000;
  text-align: center;
  font-family: "brandon-grotesque", sans-serif;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0 0.5rem 0;
  position: relative;
  cursor: url("../../cursors/pointer-cursor.png"), pointer;
}

.footer-links a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  transition: color 0.3s;
  cursor: url("../../cursors/pointer-cursor.png"), pointer;
  padding: 0.5rem 0;
}

.footer-links a:hover {
  color: black;
  cursor: url("../../cursors/pointer-cursor.png"), pointer;
}

.footer-links a:active {
  cursor: url("../../cursors/clicked-cursor.png"), pointer;
}

/* ANIMATION — DOWN/UP */
@keyframes scrollDown {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0%);
  }
}

@keyframes scrollUp {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-50%);
  }
}

.left-moving {
  animation: scrollDown 70s linear infinite;
}
.right-moving {
  animation: scrollUp 70s linear infinite;
}

/* PHONES (iPhones & small screens) */
@media (max-width: 600px) {
  .polaroid-love {
    width: 9rem;
    margin: 1.5rem auto 0;
    transform: rotate(-2deg);
    padding: 0.4rem;
  }
  .polaroid-love .caption {
    font-size: 1.3rem;
    line-height: 0rem;
    margin-bottom: 0.3rem;
  }

  .header-container h1 {
    font-size: 1.8rem !important;
    line-height: 2rem;
  }

  p,
  li,
  .faq-answer,
  .faq-question {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 1024px) {
  html,
  body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  /* Hard-stop any accidental wide children */
  * {
    box-sizing: border-box;
  }

  .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;
  }

  .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;
  }

  .header-container h1 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1rem;
    text-align: center;
    width: max-content;
    pointer-events: none; /* prevents blocking menu button */
  }

  .about-content h1 {
    font-size: 3rem !important;
    font-family: "Rafaella-Shadow", serif;
    line-height: 2.8rem; /* a bit more natural for that size */
    text-align: center;
    margin: 1rem auto 2rem;
    opacity: 1;
    display: block;
  }

  .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;
  }

  .hobbies-section {
    width: 90% !important;
    max-width: 90% !important;
    min-width: 0 !important;
  }

  .hobbies-section h2,
  .faq-section h2 {
    font-size: 2.2rem;
    line-height: 2.2rem;
  }

  .faq-section {
    width: 90%;
  }

  .polaroid-love {
    position: relative;
    margin: 2.5rem auto 0;
    right: auto;
    top: auto;
    width: 11rem;
    transform: rotate(3deg);
  }

  .action-link {
    font-size: 0.8rem !important;
  }

  .action-link.shrunk {
    opacity: 1;
    display: block;
  }

  #destroyed {
    opacity: 0 !important;
    display: none;
  }
}

/* ===============================
   MOBILE FIXES (DO NOT TOUCH DESKTOP)
   =============================== */
@media (max-width: 850px) {
  .header-container {
    position: relative;
    width: 100%;
    top: 0;
    transform: none;
    padding: 1rem;
    justify-content: space-between;
  }

  .header-container h1 {
    font-size: 2.5rem;
    width: 25%;
  }

  .about-us-container {
    height: auto; /* <-- THIS is the key fix */
    padding-bottom: 2rem;
    flex-direction: column;
    margin-top: 3rem;
  }

  #mobile-horizontal-top {
    margin-top: 1.5rem;
  }

  .about-content {
    width: 90%;
    margin: 0 auto;
    padding: 3rem 1.2rem; /* balanced spacing */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .about-content p {
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 0.5rem;
  }

  .film-strip {
    display: none;
  } /* Hide desktop reels */

  #mobile-horizontal {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    overflow: hidden;
  }

  .mobile-strip {
    display: flex;
    gap: 12px;
    width: max-content;
  }

  .mobile-strip img {
    height: 18vh;
    border-radius: 10px;
    object-fit: cover;
  }

  #mobile-horizontal {
    margin-top: 3rem; /* clean spacing below text */
    margin-bottom: 2.5rem;
    margin-top: 2.8rem;
  }

  /* animations — exact desktop system but sideways */
  @keyframes scrollRight {
    from {
      transform: translateX(-50%);
    }
    to {
      transform: translateX(0);
    }
  }
  @keyframes scrollLeft {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }

  .scroll-right {
    animation: scrollRight 45s linear infinite;
  }
  .scroll-left {
    animation: scrollLeft 45s linear infinite;
  }

  /* RIGHT leaf */
  #leaf-behind {
    right: -3rem;
  }

  /* LEFT lower leaf */
  #leaf-behind-2 {
    left: -3rem;
  }

  #leaf-behind-3 {
    right: -5.5rem;
  }

  /* LEFT lower leaf */
  #leaf-behind-4 {
    top: 78rem;
    left: -11rem;
  }

  p,
  li {
    font-size: 1rem !important;
  }

  .faq-answer p,
  .faq-question {
    font-size: 0.9rem !important;
  }

  .faq-box {
    padding: 0.5rem 1rem !important;
  }

  .favorites-section h2 {
    display: block !important;
    opacity: 1 !important;
    font-size: 2.2rem !important;
  }

  .about-content,
  .hobbies-section,
  .favorites-section {
    width: 92% !important;
    max-width: 92% !important;
    min-width: 0 !important;
    margin-left: auto;
    margin-right: auto;
  }

  .favorites-section {
    margin-bottom: 2rem;
  }

  .faq-section {
    margin-top: 2.5rem;
  }

  .hobbies-section {
    padding-left: 0;
  }

  /* Mobile favorites table layout */
  .favorites-table {
    grid-template-columns: 1fr 1fr !important;
    margin-top: -4.5rem !important;
  }

  .fav-col {
    padding: 1rem !important;
    font-size: 1rem !important;
    line-height: 1.3rem !important;
  }

  /* Make mobile film strip images smaller so they don’t dominate */
  .mobile-strip img {
    height: 16vh !important;
  }

  .leaf-wrapper {
    padding: 0 !important;
  }

  .favorites-table {
    grid-template-columns: 0.1fr 1fr 1fr !important;
    width: 100%;
    margin: 0 auto;
  }

  /* Category spans across the top */
  .fav-col.category {
    text-align: center !important;
    padding: 1rem !important;
    border-left: none !important;
  }

  /* Each answer cell */
  .fav-col {
    text-align: center !important;
    font-size: 1rem !important;
    padding: 1rem 0.5rem !important;
    margin: auto;
    width: 100%;
  }

  /* Prevent weird spacing */
  .fav-row.header .fav-col {
    margin: 4rem auto -1rem !important;
  }
}

.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;
}
