html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  margin: 0;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f4f3ee;
  overflow: hidden;
}

/* =========================
   TABLET (iPad Air, Mini)
   ========================= */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-section {
    min-height: calc(100svh - 70px);
  }

  .hero-video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    max-width: none;
    aspect-ratio: unset;
    overflow: hidden;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* =========================
   DESKTOP (Default)
   ========================= */
.hero-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* =========================
   MOBILE: HERO CLICKABLE LINK 
   ========================= */
   @media (max-width: 767px) {

    .hero-section {
      display: block;
      position: relative;
      width: 100vw;
      height: 100vh;
      margin: 0;
      padding: 0;
      overflow: hidden;
      background: black;
    }
  
    .hero-video-container {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }
  
    .hero-video {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  
    .hero-video-container::after {
      content: "";
      position: absolute;
      inset: 0; 
      background: transparent;
      z-index: 5;
      cursor: pointer;
    }
  
    .hero-video-container:active::after {
      background: rgba(255, 255, 255, 0.1);
    }

  }


.photo-gallery {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}

.view-more-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 2.5rem;
  position: relative;
}

/* =========================
   VIEW MORE BUTTON — MOBILE & TABLET FIX
   ========================= */

   .view-more-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
    width: 100%;
    text-align: center;
  }
  
  #viewMoreBtn {
    display: inline-block;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  
  @media (max-width: 768px) {
    .view-more-wrap {
      margin-top: 1.8rem;
    }
  
    #viewMoreBtn {
      font-size: 1rem;
      padding: 12px 32px;
      border-radius: 999px;
    }
  }
  
  #viewMoreBtn:active {
    transform: scale(0.98);
    opacity: 0.9;
  }
  
/* ===========================
   FROSTED GLASS BUBBLE BUTTONS
=========================== */
.btn-drip {
  --base: rgba(255, 255, 255, 0.35);
  --accent: rgba(255, 255, 255, 0.4);
  --border: rgba(255, 255, 255, 0.6);
  --text: #000000;

  position: relative;
  display: inline-block;
  text-decoration: none;
  color: var(--text);
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 300;
  font-size: 18px;
  padding: clamp(12px, 2vw, 18px) clamp(30px, 4vw, 48px);
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--base), var(--accent));
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  box-shadow:
    inset 0 1px 4px rgba(255, 255, 255, 0.3),
    0 6px 18px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  overflow: hidden;
  transform-origin: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 5;
}

/* Primary: solid frosted white tone */
.btn-primary {
  background: linear-gradient(145deg, var(--base), var(--accent));
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-drip:hover {
  background: linear-gradient(145deg, rgba(255,255,255,0.5), rgba(240,240,240,0.7));
  box-shadow:
    0 10px 26px rgba(213, 160, 47, 0.35),
    inset 0 1px 6px rgba(255, 255, 255, 0.8);
}

/* ------------------- Decorative Bubbles ------------------- */
.btn-drip::before,
.btn-drip::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Default bubbles */
.btn-drip::before {
  background-image:
    radial-gradient(circle at 20% 25%, rgba(255, 233, 90, 0.4) 12px, transparent 18px),
    radial-gradient(circle at 70% 75%, rgba(255, 204, 50, 0.3) 16px, transparent 22px),
    radial-gradient(circle at 40% 60%, rgba(255, 220, 130, 0.35) 10px, transparent 18px),
    radial-gradient(circle at 85% 30%, rgba(255, 213, 0, 0.3) 9px, transparent 16px);
  background-size: 250% 250%;
  animation: bubblesMove 8s infinite cubic-bezier(0.42, 0, 0.58, 1);
  opacity: 0.7;
  filter: blur(2px);
}

/* Secondary Button Variant — Online (different motion + tint) */
.btn-online {
  --base: rgba(255, 245, 255, 0.5);
  --accent: rgba(243, 230, 255, 0.6);
  --border: rgba(215, 180, 255, 0.6);
  --text: #3a2948;

  background: linear-gradient(160deg, var(--base), var(--accent));
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow:
    inset 0 1px 4px rgba(255, 255, 255, 0.4),
    0 6px 18px rgba(189, 125, 255, 0.25);
}

.btn-online::before {
  background-image:
    radial-gradient(circle at 25% 40%, rgba(255, 210, 240, 0.4) 12px, transparent 18px),
    radial-gradient(circle at 70% 70%, rgba(230, 190, 255, 0.3) 14px, transparent 22px),
    radial-gradient(circle at 50% 80%, rgba(255, 233, 250, 0.35) 10px, transparent 18px),
    radial-gradient(circle at 80% 30%, rgba(235, 180, 255, 0.3) 9px, transparent 16px);
  background-size: 260% 260%;
  animation: bubblesFloatAlt 9s infinite ease-in-out alternate;
  opacity: 0.7;
  filter: blur(2px);
}

/* Alternate bubble motion for .btn-online */
@keyframes bubblesFloatAlt {
  0% {
    background-position: 0% 50%;
    filter: hue-rotate(0deg);
  }
  50% {
    background-position: 100% 60%;
    filter: hue-rotate(25deg);
  }
  100% {
    background-position: 0% 50%;
    filter: hue-rotate(0deg);
  }
}

.btn-online:hover {
  background: linear-gradient(160deg, rgba(255,245,255,0.8), rgba(240,220,255,0.9));
  box-shadow:
    0 10px 26px rgba(189, 125, 255, 0.35),
    inset 0 1px 6px rgba(255, 255, 255, 0.7);
}

/* Gloss shine */
.btn-drip::after {
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.7) 45%,
    rgba(255, 255, 255, 0.3) 60%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: shineSlide 5s infinite;
  mix-blend-mode: screen;
}

@keyframes shineSlide {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

@keyframes bubblesMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ================= HERO BUTTON LAYOUT ================= */
.hero-buttons {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  z-index: 20;
}

.hero-buttons .btn-drip {
  z-index: 25;
}
.hollow1 {
  --base: rgba(255, 255, 255, 0.35);
  --accent: rgba(255, 255, 255, 0.4);
  --border: rgba(255, 255, 255, 0.6);
  --text: #2b2b2b;
  
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 300;
  font-size: 18px;
  padding: clamp(12px, 2vw, 18px) clamp(30px, 4vw, 48px);
  color: #000000;
  background: transparent;
  border: 0.5px solid rgba(255, 247, 100, 0.7);
  border-radius: 40px;
  position: relative;

  cursor: pointer;
  overflow: hidden;
  transform-origin: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 5;
}

.hollow1:hover {
  background: linear-gradient(135deg, rgba(240, 213, 58, 0.15), rgba(230, 253, 255, 0.4));
  color: #000000;
  transform: translateY(-2px);
  background: linear-gradient(145deg, rgba(255,255,255,0.5), rgba(240,240,240,0.7));
  box-shadow:
    0 10px 26px rgba(213, 160, 47, 0.35),
    inset 0 1px 6px rgba(255, 255, 255, 0.8);
}  

/* Active / tap effect */
.hollow1:active {
  transform: scale(0.96);
  box-shadow: 0 8px 22px rgba(240, 219, 58, 0.25);
}
/* Mobile Fix */
@media (max-width: 767px) {
  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
    bottom: 8%;
  }

  .btn-drip {
    width: auto;
    text-align: center;
    min-width: 150px;
    padding: 12px 32px;
  }
}
.hollow1,
.hollow:active,
.hollow:hover {
  text-decoration: none !important;
  outline: none;
}


/* ================= AWARDS SECTION ================= */
.awards-section {
  position: relative;
  padding: 2rem 0rem;
  background: #faf5ff;
  background-size: 200% 200%;
  animation: awardsBgShift 12s ease-in-out infinite;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

@keyframes awardsBgShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.awards-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.4) 0%, transparent 70%),
              radial-gradient(circle at bottom left, rgba(240, 220, 255, 0.35) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.awards-section > * {
  position: relative;
  z-index: 1;
}

/* ===========================
   AWARDS SECTION
=========================== */
.awards-title {
  position: relative;
  text-align: center;
  overflow: visible;
  z-index: 10; 
  pointer-events: none; 
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  60% {
    opacity: 1;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-title {
  position: relative;
  z-index: 20;
  background: linear-gradient(90deg, #d6b4fc, #9edff7, #f7b6e6, #c9f6a2);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin: 0 auto;
  font-family: "Lily Script One", sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  animation: shimmerGallery 7s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* --- Banners) --- */
.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.banner-inner {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
  animation: scroll-left 25s linear infinite;
  padding: 10px;
  will-change: transform;
}

.banner-left .banner-inner {
  animation: scroll-left 25s linear infinite;
}

.banner-right .banner-inner {
  animation: scroll-right 25s linear infinite;
}

.banner img {
  width: clamp(90px, 10vw, 150px);
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.banner img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.25));
}

/* --- Animations --- */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes colorShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes explode {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  80% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.4; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* --- Responsive Tweaks --- */
@media (max-width: 768px) {
  .awards-title h2 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    letter-spacing: 1px;
  }
  
}  

.awards-divider {
  width: 60%;
  height: 1.2px;
  background: linear-gradient(to right, #ffe9c5, #ffb4d7, #e7baff);
  border: none;
  margin: 3rem auto 2rem auto;
  opacity: 0.6;
  border-radius: 10px;
  animation: fadeInDivider 1.5s ease forwards;
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
  position: relative;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* =========================
   PHOTO GALLERY STYLING
   ========================= */

   .photo-gallery {

    background: #fafafa;
    text-align: center;
    font-family: "Montserrat Alternates", sans-serif;
  }
  
  /* Gradient title */
  .photo-gallery .gallery-title h2 {
    font-family: "Lily Script One", cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(90deg, #d6b4fc, #9edff7, #f7b6e6, #c9f6a2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    animation: gradientSlide 6s infinite linear;
    background-size: 200% 100%;
  }
  @keyframes gradientSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
  }
/* ============================
   MODERN PHOTO GALLERY 
   ============================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
  max-width: 1400px;
  margin: 0 auto;
  justify-items: stretch;
  align-items: stretch;

  /* Consistent side padding */
  padding-left: clamp(1rem, 4vw, 2.5rem);
  padding-right: clamp(1rem, 4vw, 2.5rem);
  box-sizing: border-box;
}

/* item stays centered and clean */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #f3f3f3;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Fix image */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* Hover zoom */
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* Consistent spacing for button container */
.view-more-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
  padding-left: clamp(1rem, 4vw, 2.5rem);
  padding-right: clamp(1rem, 4vw, 2.5rem);
  box-sizing: border-box;
}

  .gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
  }
  
  /* Drop shadow hover */
  .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  }
  
  /* Smooth caption overlay */
  .gallery-item::before {
    content: attr(data-caption);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.7rem;
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 400;
    text-align: center;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
  }
  
  .gallery-item:hover::before {
    opacity: 1;
    transform: translateY(0);
  }

  .gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }
  
  .gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: 3 / 4;
  }
  
  .gallery-item:not(.wide):not(.tall) {
    aspect-ratio: 4 / 3;
  }
  
  /* ============================
     RESPONSIVE DESIGN
     ============================ */
  @media (max-width: 1024px) {
    .gallery-grid {
      gap: 1rem;
      padding: 0 1rem;
    }
  }
  
  @media (max-width: 768px) {
    .gallery-item,
    .gallery-item.wide,
    .gallery-item.tall {
      grid-column: span 1;
      grid-row: span 1;
      aspect-ratio: 4 / 3;
    }
    .gallery-item img {
      object-fit: cover;
    }
  }
  
  /* Button centered */
  .view-more-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
    padding: 0 1.2rem; 
    box-sizing: border-box;
  }

  @keyframes fadeInModern {
    0% {
      opacity: 0;
      transform: scale(0.92) translateY(40px);
      filter: blur(5px);
    }
    100% {
      opacity: 1;
      transform: scale(1) translateY(0);
      filter: blur(0);
    }
  }
  .gallery-item.new {
    animation: fadeInModern 0.8s ease forwards;
  }
 /* ===========
   LIGHTBOX 
   ============ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  backdrop-filter: blur(12px);
  animation: fadeInLightbox 0.4s ease;
  padding-top: 70px; 
}

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

.lightbox.show {
  display: flex;
}

/* Centered image with subtle glow */
.lightbox-img {
  max-width: 85%;
  max-height: 78vh; 
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(0,0,0,0.45);
  object-fit: contain;
  animation: zoomIn 0.45s ease;
}

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

/* Modern overlay caption */
.lightbox-caption {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.65));
  color: #fff;
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  max-width: 75%;
  text-align: center;
  animation: captionFade 0.5s ease;
}

@keyframes captionFade {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* Close button */
.lightbox .close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: white;
  font-size: 2.4rem;
  font-weight: 300;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1000;
}

.lightbox .close:hover {
  transform: scale(1.2);
  color: #ffcf57;
}

/* Arrows */
.lightbox .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.6rem;
  color: white;
  cursor: pointer;
  padding: 10px 16px;
  user-select: none;
  transition: 0.3s ease;
}

.lightbox .nav:hover {
  transform: translateY(-50%) scale(1.1);
  color: #ffcf57;
}

.lightbox .prev { left: 30px; }
.lightbox .next { right: 30px; }

/* =========================
   RESPONSIVE TUNING
   ========================= */
@media (max-width: 768px) {
  .lightbox {
    padding-top: 60px; 
  }

  .lightbox-img {
    max-width: 92%;
    max-height: 70vh;
  }

  .lightbox-caption {
    font-size: 0.95rem;
    bottom: 6%;
    max-width: 90%;
    padding: 0.8rem 1.2rem;
  }

  .lightbox .nav {
    font-size: 2rem;
  }
}

/* =========================
   Fix for Horizontal Overflow
   ========================= */

html, body {
  overflow-x: hidden;
}

.gallery-grid {
  overflow: hidden;          
  max-width: 100%;           
  margin-inline: auto;       
  box-sizing: border-box;
}

.gallery-item {
  max-width: 100%;
  box-sizing: border-box;
}


@media (max-width: 1024px) {
  .gallery-item.wide {
    grid-column: span 1 !important;
    aspect-ratio: 4 / 3;
  }
}

.gallery-item.new {
  animation: fadeInModern 0.8s ease forwards;
  will-change: transform, opacity;
}
  
/* ================= INSTAGRAM FEED ================= */
.instagram-feed {
  text-align: center;
  padding: clamp(3rem, 6vw, 6rem) 1.5rem;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.instagram-feed h2 {
  font-family: "Lily Script One", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(90deg, #d6b4fc, #9edff7, #f7b6e6, #c9f6a2);
  background-size: 200% 200%; 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 8s linear infinite;
  margin-bottom: 0.5rem;
}
@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.instagram-feed p {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: #174b5b;
  margin-bottom: 2rem;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* --------- Footer cleanup --------- */
.site-footer {background: linear-gradient(180deg, #f3e8ff 0%, #f1ffdc 100%); padding: 40px 20px; border-top:1px solid rgba(0,0,0,0.03); }
.footer-container { max-width:1200px; margin:0 auto; display:flex; gap:24px; align-items:flex-start; flex-wrap:wrap; justify-content:space-between; }
.footer-columns { display:flex; gap:24px; flex:1; justify-content:flex-end; }
.footer-column { min-width:160px; }
.footer-logo { width:88px; height:auto; display:block; }

/* --------- Small screen adjustments --------- */
@media (max-width: 640px) {
  .footer-container { flex-direction:column; align-items:center; text-align:center; }
}
/* --------- Mobile Footer --------- */
@media (max-width: 480px) {
  .site-footer {
    padding: 30px 16px;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }

  .footer-logo {
    width: 65px;
    margin-bottom: 10px;
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .footer-column {
    width: 100%;
    min-width: unset;
  }

  .footer-heading {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .footer-link {
    font-size: 0.85rem;
  }

  .footer-text {
    font-size: 0.8rem;
    margin-top: 18px;
    line-height: 1.4;
  }

  .footer-legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    font-size: 0.75rem;
  }

  .footer-legal-links a {
    text-decoration: none;
  }
}
