@font-face {
  font-family: "MomsTypewriter";
  src: url("../fonts/moms-typewriter.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* ------------------------------
   ROOT VARIABLES
--------------------------------*/
:root {
  --color-announcement: #AC9376; 
  --color-utility: #f7f0e7;      
  --color-main-bg: #F9FEFF;
  --text-color: #333;
  --logo-size: 140px;
  --transition-speed: 3s;
}

/* ------------------------------
   GLOBAL RESETS
--------------------------------*/
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text-color);
}

/* ------------------------------
   INTRO OVERLAY
--------------------------------*/
.intro-overlay {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 0.8s ease;
}

/* Fade-out state */
.intro-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* ------------------------------
   INTRO LETTERS CONTAINER
--------------------------------*/
.intro-letters {
  position: relative;
  width: 100%;
  height: 100%;
  font-family: "MomsTypewriter", monospace;
  font-weight: bold;
  color: #bfa48e;
  pointer-events: none;
  display: block;
  font-size: clamp(28px, 6vw, 60px);
  transition: opacity 0.8s ease;
}

/* ------------------------------
   INDIVIDUAL LETTERS
--------------------------------*/
.intro-letter {
  position: absolute;
  font-size: clamp(28px, 6vw, 60px);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.4s ease, transform 0.4s ease;
  font-family: "MomsTypewriter", monospace !important;
}

/* ------------------------------
   SHUFFLE WIGGLE ANIMATION
--------------------------------*/
@keyframes shuffle {
  0% { transform: translateY(0); }
  25% { transform: translateY(-10px); }
  50% { transform: translateY(10px); }
  75% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* ------------------------------
   LOGO FADE-IN
--------------------------------*/
#introLogo {
  position: absolute;
  width: 420px;
  max-width: 80vw;
  opacity: 0;
  transition: opacity 1.4s ease;
}

#introLogo.show-logo {
  opacity: 1;
}

/* ------------------------------
   MOBILE FIXES
--------------------------------*/
@media (max-width: 700px) {
  #introLetters {
    transform: scale(0.75);
    transform-origin: center;
  }
}


/* ------------------------------
   ANNOUNCEMENT BAR
--------------------------------*/
.announcement-bar {
  background: var(--color-announcement);
  text-align: center;
  padding: 0.5px 0;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: #ffffff;
}

/* ------------------------------
   UTILITY NAV
--------------------------------*/
.utility-nav {
  background: var(--color-utility);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 60px;
  font-size: 0.95rem;
}

.utility-left a,
.utility-right a {
  margin-right: 12px;
  text-decoration: none;
  color: var(--text-color);
}

.utility-right a {
  margin-left: 28px;
}

.utility-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: inline-block;
}

/* ------------------------------
   MAIN NAV
--------------------------------*/
.main-nav {
  background: var(--color-main-bg);
  padding: 25px 0;
  display: flex;
  justify-content: center;
}

.main-nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 900px;
  gap: 2px;
}

.brand-left,
.brand-right {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
  font-family: "MomsTypewriter", monospace;
}

/* ------------------------------
   LOGO CIRCLE + FLIP ANIMATION
--------------------------------*/
.logo-wrapper {
  position: relative;
}

.logo-circle {
  width: var(--logo-size);
  height: var(--logo-size);
  border-radius: 50%;
  position: relative;
  perspective: 1000px;
}

.logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  backface-visibility: hidden;
  object-fit: cover;
}

.img-front {
  animation: flipFront var(--transition-speed) infinite;
}

.img-back {
  transform: rotateY(180deg);
  animation: flipBack var(--transition-speed) infinite;
}

@keyframes flipFront {
  0% { transform: rotateY(0); }
  45% { transform: rotateY(0); }
  50% { transform: rotateY(180deg); }
  95% { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}

@keyframes flipBack {
  0% { transform: rotateY(180deg); }
  45% { transform: rotateY(180deg); }
  50% { transform: rotateY(360deg); }
  95% { transform: rotateY(360deg); }
  100% { transform: rotateY(540deg); }
}

/* ------------------------------
   RESPONSIVE TWEAKS
--------------------------------*/
@media (max-width: 600px) {
  .brand-left,
  .brand-right {
    font-size: 1.4rem;
  }

  .logo-circle {
    --logo-size: 100px;
  }
}

/* ------------------------------
   FEATURE SECTION WRAPPER (FULL WIDTH BG)
--------------------------------*/
.feature-wrapper {
  background: #F9FEFF;
  padding: 10px 0;
}

/* ------------------------------
   FEATURE SECTION (CENTERED CONTENT)
--------------------------------*/
.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-box {
  position: relative;
  aspect-ratio: 7 / 5;
  overflow: hidden;
  border-radius: 10px;
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-overlay {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.feature-overlay h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.2;
}

.feature-btn {
  display: inline-block;
  padding: 14px 30px;
  background: rgba(0,0,0,0.7);
  color: white;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: 0.2s ease;
}

.feature-btn:hover {
  background: rgba(0,0,0,0.9);
}

.handwritten {
  font-family: "Homemade Apple", cursive;
  font-size: 2.6rem;
  font-weight: normal;
  letter-spacing: 1px;
  display: inline-block;
  margin-top: 5px;
}

/* ------------------------------
   WHY CHOOSE SECTION
--------------------------------*/
.why-section {
  background: #F9FEFF;
  padding: 30px 20px;
  margin-top: 0px;
}

.why-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.why-hello {
  font-size: 2.4rem;
  color: #AC9376;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.why-title {
  font-family: "Homemade Apple", cursive;
  font-size: 2.8rem;
  color: #AC9376;
  margin-bottom: 25px;
}

.why-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #000000;
  max-width: 750px;
  margin: 0 auto;
}

/* ------------------------------
   FOUR IMAGE GRID SECTION
--------------------------------*/
.four-grid-section {
  background: #F9FEFF;
  padding: 20px 20px;
  margin-top: 0px;
}

.four-grid-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.grid-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.grid-item:nth-child(2) img {
  height: 120%;
  transform: translateY(-12%);
}

/* ------------------------------
   ABOUT US SECTION
--------------------------------*/
.about-section {
  background: #F9FEFF;
  padding: 10px 20px;
  margin-top: 0px;
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-hello {
  font-size: 2.4rem;
  color: #AC9376;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.about-title {
  font-family: "Homemade Apple", cursive;
  font-size: 2.8rem;
  color: #AC9376;
  margin-bottom: 25px;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #000000;
  max-width: 750px;
  margin: 0 auto;
}

/* ------------------------------
   MARQUEE SECTION
--------------------------------*/
.marquee-section {
  background: #AC9376;
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
}

.marquee-inner {
  display: inline-flex;
  gap: 50px;
  animation: marqueeScroll 15s linear infinite;
}

.marquee-inner span {
  color: #ffffff;
  font-size: 1.3rem;
  letter-spacing: 1px;
  padding-right: 50px;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ------------------------------
   CONTACT FORM SECTION
--------------------------------*/
.contact-form-section {
  background: #F9FEFF;
  padding: 60px 20px;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #AC9376;
  margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #d8c7b4;
  border-radius: 8px;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  background: #ffffff;
  transition: 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #AC9376;
  box-shadow: 0 0 0 3px rgba(172,147,118,0.25);
}

.contact-submit {
  margin: 20px auto 0 auto;
  padding: 14px 30px;
  background: #AC9376;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.2s ease;
  display: block;
}

.contact-submit:hover {
  background: #8f775d;
}

/* ------------------------------
   THANK YOU POPUP
--------------------------------*/
.thank-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.thank-popup-content {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 380px;
  width: 90%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.thank-popup-content img {
  width: 120px;
  margin-bottom: 20px;
}

.thank-popup-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
}

/* ------------------------------
   LIGHTBOX (THIS FIXES THE CROSS)
--------------------------------*/
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
}

/* ------------------------------
   NEWSLETTER SECTION
--------------------------------*/
.newsletter-section {
  margin-top: 0;
}

/* TOP BAR */
.newsletter-top {
  background: #AC9376;
  text-align: center;
  padding: 15px 20px;
  color: white;
}

.newsletter-title {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.newsletter-sub {
  font-size: 1.2rem;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 14px 16px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  width: 260px;
}

.newsletter-btn {
  padding: 14px 30px;
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.2s ease;
}

.newsletter-btn:hover {
  background: rgba(0,0,0,0.9);
}

/* ------------------------------
   FOOTER SECTION
--------------------------------*/
.site-footer {
  background: #f7f0e7;
  color: #000;
  padding: 50px 20px 30px 20px;
  margin-top: 0;
  font-size: 1rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

/* Logo */
.footer-logo {
  width: 120px;
  height: auto;
  border-radius: 50%;
}

/* Middle section */
.footer-middle {
  text-align: center;
}

.footer-middle p {
  margin: 6px 0;
}

/* Right section */
.footer-right {
  text-align: right;
}

.footer-heading {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.footer-link {
  display: block;
  color: #000;
  text-decoration: none;
  margin-bottom: 6px;
  border-bottom: 1px solid transparent;
  transition: 0.2s ease;
}

.footer-link:hover {
  border-bottom: 1px solid #000;
}

/* Bottom line */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-bottom a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-bottom a:hover {
  border-bottom: 1px solid #000;
}

/* Responsive */
@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 10px;
  }
}

/* ------------------------------
   INFO MODALS (PRIVACY / RETURNS)
--------------------------------*/
.info-modal {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.info-modal-content {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  text-align: left;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.info-modal-content h2 {
  margin-top: 0;
  color: #AC9376;
  font-family: "Homemade Apple", cursive;
  font-size: 2rem;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  cursor: pointer;
  color: #ffffff !important;
  text-shadow: 0 0 6px rgba(0,0,0,0.6);
}

}

/* ============================================================
   GLOBAL MOBILE FIXES
============================================================ */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  /* Reduce global padding */
  section {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* ============================================================
   UTILITY NAV
============================================================ */
@media (max-width: 768px) {
  .utility-nav {
    padding: 12px 20px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .utility-left a,
  .utility-right a {
    margin: 0 10px;
  }

  .utility-icon {
    width: 36px;
    height: 36px;
  }
}

/* ============================================================
   MAIN NAV (BRAND + LOGO)
============================================================ */
@media (max-width: 768px) {
  .main-nav {
    padding: 15px 0;
  }

  .main-nav-inner {
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
  }

  .brand-left,
  .brand-right {
    font-size: 1.4rem;
  }

  .logo-circle {
    width: 100px;
    height: 100px;
  }
}

/* ============================================================
   FEATURE SECTION — MOBILE HERO FIX
   (Show ONLY the left feature box)
============================================================ */
@media (max-width: 768px) {

  /* Make left feature full width */
  .feature-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-box {
    aspect-ratio: 1 / 1;
  }

  .feature-overlay {
    top: 60%;
  }

  .feature-overlay h2 {
    font-size: 1.8rem;
  }

  .handwritten {
    font-size: 2rem;
  }

  .feature-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

/* ============================================================
   WHY CHOOSE SECTION
============================================================ */
@media (max-width: 768px) {
  .why-hello {
    font-size: 1.8rem;
  }

  .why-title {
    font-size: 2.2rem;
  }

  .why-text {
    font-size: 1rem;
    padding: 0 10px;
  }
}

/* ============================================================
   FOUR IMAGE GRID
============================================================ */
@media (max-width: 900px) {
  .four-grid-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .four-grid-inner {
    grid-template-columns: 1fr;
  }

  .grid-item {
    aspect-ratio: 1 / 1;
  }
}

/* ============================================================
   ABOUT SECTION
============================================================ */
@media (max-width: 768px) {
  .about-hello {
    font-size: 1.8rem;
  }

  .about-title {
    font-size: 2.2rem;
  }

  .about-text {
    font-size: 1rem;
  }
}

/* ============================================================
   MARQUEE
============================================================ */
@media (max-width: 768px) {
  .marquee-inner span {
    font-size: 1rem;
  }
}

/* ============================================================
   CONTACT FORM
============================================================ */
@media (max-width: 768px) {
  .contact-form {
    padding: 0 10px;
  }

  .contact-form label {
    font-size: 1rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
    padding: 12px 14px;
  }

  .contact-submit {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

/* ============================================================
   NEWSLETTER
============================================================ */
@media (max-width: 768px) {
  .newsletter-title {
    font-size: 2rem;
  }

  .newsletter-sub {
    font-size: 1rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-form input {
    width: 100%;
  }

  .newsletter-btn {
    width: 100%;
  }
}

/* ============================================================
   FOOTER
============================================================ */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-right {
    text-align: center;
  }

  .footer-logo {
    width: 100px;
  }

  .footer-heading {
    font-size: 1rem;
  }

  .footer-bottom {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .utility-icon {
    display: none;
  }
}

@media (max-width: 768px) {

  /* Replace grid with a clean flex column */
  .main-nav-inner {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 4px;
  }

  /* Ensure the logo wrapper is truly centred */
  .logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto !important;
    padding: 0;
  }

  /* Ensure the circle itself is centred */
  .logo-circle {
    margin: 0 auto !important;
  }

  /* Text above and below */
  .brand-left,
  .brand-right {
    font-size: 1.6rem;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {

  /* Ensure the wrapper is truly centered */
  .logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Force the circle to center itself */
  .logo-circle {
    margin: 0 auto !important;
    transform-origin: center center !important;
  }

  /* Force BOTH flipping images to align perfectly */
  .logo-img {
    left: 0;
    right: 0;
    margin: 0 auto;
    transform-origin: center center !important;
  }
}

@media (max-width: 768px) {

  /* Ensure the whole section stays centered */
  .contact-form-section {
    padding: 40px 15px;
  }

  /* Center the form and prevent overflow */
  .contact-form {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
  }

  /* Inputs scale properly */
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
  }

  /* Button centered and contained */
  .contact-submit {
    width: 100%;
    max-width: 260px;
    margin: 20px auto 0 auto;
    display: block;
  }
}

@media (max-width: 768px) {

  /* Ensure the whole newsletter section fits the screen */
  .newsletter-top {
    padding: 25px 15px;
  }

  /* Stack the form vertically */
  .newsletter-form {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
  }

  /* Fix the input width overflow */
  .newsletter-form input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    font-size: 1rem;
  }

  /* Button also full-width but nicely contained */
  .newsletter-btn {
    width: 100%;
    max-width: 260px;
    box-sizing: border-box;
    padding: 14px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {

  /* Make the footer a clean vertical stack */
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  /* Ensure the right column is no longer right-aligned */
  .footer-right {
    text-align: center;
    width: 100%;
  }

  /* Centre the middle text block */
  .footer-middle {
    text-align: center;
    width: 100%;
  }

  /* Centre the logo */
  .footer-logo {
    margin: 0 auto;
  }

  /* Centre the bottom copyright line */
  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .newsletter-section {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .feature-overlay {
    top: 50%;
  }
}

/* MOBILE: make the 4‑image grid 2×2 */
@media (max-width: 768px) {
  .four-grid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px; /* adjust spacing if needed */
    width: 100%;
  }

  .four-grid-inner .grid-item {
    width: 100%;
  }

  .four-grid-inner img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* Cookie Bar */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222;
  color: #fff;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;   /* centered horizontally */
  justify-content: center;
  font-size: 15px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  z-index: 9999;
  text-align: center;    /* center text */
}

.cookie-bar p {
  margin: 0;
  line-height: 1.4;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  padding: 8px 14px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}

#cookie-accept {
  background: #4caf50;
  color: #fff;
}

#cookie-reject {
  background: #555;
  color: #fff;
}

/* Fade-in animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hidden state */
.hidden {
  display: none;
}

#instagram-placeholder {
  background: #f3f3f3;
  padding: 40px;
  text-align: center;
  border-radius: 8px;
  color: #555;
  font-size: 16px;
}

/* MOBILE: Replace utility bar with hamburger + search bar */
@media (max-width: 768px) {

  /* Hide desktop utility items */
  .utility-left,
  .utility-right {
    display: none !important;
  }

  /* Show mobile utility row */
  .mobile-utility {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 16px;
  }

  .mobile-hamburger {
    font-size: 2rem;
    cursor: pointer;
  }

  .mobile-search {
    flex: 1;
    padding: 8px 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
}

/* DESKTOP: Hide mobile utility */
@media (min-width: 769px) {
  .mobile-utility {
    display: none !important;
  }
}

/* MOBILE: Replace utility bar with hamburger + search bar */
@media (max-width: 768px) {

  /* Hide desktop utility items */
  .utility-left,
  .utility-right {
    display: none !important;
  }

  /* Show mobile utility row */
  .mobile-utility {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 16px;
  }

  .mobile-hamburger {
    font-size: 2rem;
    cursor: pointer;
    position: relative;
    z-index: 9999;
  }

  .mobile-search {
    flex: 1;
    padding: 8px 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
  }

  /* MOBILE MENU */
  .mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 16px;
    border-bottom: 1px solid #eee;
  }

  .mobile-menu a {
    padding: 12px 0;
    font-size: 1.2rem;
    text-decoration: none;
    color: #333;
  }

  .mobile-menu.open {
    display: flex;
  }
}

/* DESKTOP: Hide mobile utility */
@media (min-width: 769px) {
  .mobile-utility,
  .mobile-menu {
    display: none !important;
  }
}

/* Highlight style for search matches */
.search-highlight {
    background-color: #f7f0e7; /* bright yellow */
    padding: 2px 0;
}

.intro-overlay {
    z-index: 99999;
}


