/* =========================================
   ICE CREAM VAN — Stylesheet v4
   Primary: Blue  |  Accent: Red
   ========================================= */

:root {
  --blue: #2e87d4;
  /* PRIMARY */
  --blue-dark: #2063a8;
  --blue-deeper: #12427a;
  --red: #d93025;
  /* ACCENT */
  --red-dark: #b52319;
  --cream: #fff8f0;
  --cream-dark: #f0e4d0;
  --text: #0e1826;
  --text-soft: #3d5572;
  --white: #ffffff;
}


/* =========================================
   BASE
   ========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', 'Segoe UI', sans-serif !important;
  color: var(--text);
  background: var(--cream);
  overflow-x: clip;
  margin: 0;
}

[id] {
  scroll-margin-top: 105px;
}

a {
  color: var(--blue);
}

a:hover {
  color: var(--blue-dark);
}


/* =========================================
   FIXED HEADER — single dark bar
   ========================================= */
.fixed-header {
  position: sticky;
  top: 0;
  z-index: 200;
}

#mainNav {
  background: linear-gradient(135deg, #0f3460 0%, #1a5fa8 50%, #2e87d4 100%) !important;
  border-bottom: 3px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  padding: 0;
}

.nav-logo {
  height: 90px;
  width: auto;
  transition: transform 0.15s, opacity 0.15s;
}

.nav-logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

li.nav-item {
  margin: 0 2px;
}

/* Centre nav links */
.navbar-nav .nav-link {
  color: rgba(255, 248, 240, 0.75) !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 7px 16px !important;
  border-radius: 6px;
  transition: all 0.15s;
  letter-spacing: 0.2px;
}

.navbar-nav .nav-link:hover {
  color: var(--cream) !important;
  background: rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link.active {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.15);
}

/* Phone number */
.nav-phone {
  color: rgb(255 175 212);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.3px;
  transition: color 0.15s;
}

.nav-phone:hover {
  color: rgb(247, 158, 200);
}

.nav-phone .bi {
  font-size: 0.78rem;

}

/* Social icons */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-socials a {
  color: rgba(255, 248, 240, 0.5);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.15s, transform 0.15s;
  display: flex;
}

.nav-socials a:hover {
  color: var(--cream);
  transform: scale(1.2);
}


/* =========================================
   HERO — full-screen, centered
   ========================================= */
.hero-section {
  position: relative;
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/background.webp') center center / cover no-repeat;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f346040 0%, #1a5fa887 50%, #2e87d4 100%) !important;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 835px;
  margin: 0 auto;
  margin-top: 60px;
}

.hero-logo {
  height: 110px;
  width: auto;
  border-radius: 12px;
  margin-bottom: 24px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero-brand {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 28px;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-chips>span {
  background: rgba(37, 99, 168, 0.35);
  border: 1px solid rgba(255, 248, 240, 0.3);
  color: var(--cream);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 99px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-chips>span .bi {
  font-size: 0.8rem;
  opacity: 0.9;
  position: relative;
  top: 1px;
  color: rgb(255 175 212);
}


.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-outline-hero {
  background: transparent;
  border: 2px solid rgba(255, 248, 240, 0.65);
  color: var(--cream);
  border-radius: 8px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  font-size: 0.93rem;
  padding: 10px 24px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-outline-hero:hover {
  background: rgba(255, 248, 240, 0.15);
  border-color: var(--cream);
  color: var(--white);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 248, 240, 0.5);
  font-size: 2rem;
  animation: bounce 2s ease-in-out infinite;
  text-decoration: none;
  z-index: 1;
}

.hero-scroll-hint:hover {
  color: var(--cream);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}


/* =========================================
   TICKER
   ========================================= */
.ticker-wrap {
  background: var(--blue);
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  animation: ticker 22s linear infinite;
  white-space: nowrap;
}

.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.15rem;
  color: var(--cream);
  padding: 0 22px;
  letter-spacing: 0.3px;
}

.ticker-sep {
  color: rgba(255, 248, 240, 0.35);
  font-size: 0.7rem;
  flex-shrink: 0;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* =========================================
   STORY SECTION
   ========================================= */
.story-section {
  background:
    radial-gradient(circle, rgba(46, 135, 212, 0.11) 1.5px, transparent 1.5px),
    linear-gradient(160deg, #f0f8ff 0%, #f9fcff 50%, #ffffff 100%);
  background-size: 30px 30px, 100% 100%;
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-item {
  background: var(--cream);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  border-bottom: 4px solid var(--blue);
  transition: transform 0.2s;
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.4rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.story-heading {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: #335482;
  margin-bottom: 20px;
}

.story-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 20px;
}

.story-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.story-list li {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-list .bi {
  color: var(--blue);
  font-size: 1.1rem;
  flex-shrink: 0;
}


/* =========================================
   BENTO SERVICES GRID
   ========================================= */
.bento-section {
  background: var(--cream-dark);
  padding: 0;
}

.bento-grid {
  display: flex;
  flex-direction: column;
}

.bento-row {
  display: grid;
  grid-template-columns: 3fr 2fr;
  height: 380px;
}

.bento-row--flip {
  grid-template-columns: 2fr 3fr;
}

.bento-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.bento-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bento-cell:hover img {
  transform: scale(1.06);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(12, 40, 100, 0.93) 0%,
      rgba(12, 40, 100, 0.45) 50%,
      rgba(0, 0, 0, 0.05) 100%);
  transition: background 0.3s;
}

.bento-cell:hover .bento-overlay {
  background: linear-gradient(to top,
      rgba(12, 40, 100, 0.96) 0%,
      rgba(12, 40, 100, 0.62) 55%,
      rgba(0, 0, 0, 0.1) 100%);
}

.bento-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px 28px;
}

.bento-badge {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.bento-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.2;
}

.bento-desc {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin 0.3s;
  margin-top: 0;
}

.bento-cell:hover .bento-desc {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}

.bento-desc p {
  font-size: 0.85rem;
  color: rgba(255, 248, 240, 0.88);
  margin-bottom: 4px;
  line-height: 1.5;
}

.btn-bento {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  background: rgb(219, 97, 154);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 7px 18px;
  border-radius: 6px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s 0.1s, transform 0.3s 0.1s, background 0.2s;
}

.bento-cell:hover .btn-bento {
  opacity: 1;
  transform: translateY(0);
}

.btn-bento:hover {
  background: rgb(196, 72, 130);
  color: var(--white);
}


/* =========================================
   AREAS
   ========================================= */
.areas-section {
  position: relative;
  background: var(--white);
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  overflow: hidden;
}

/* Floating ice creams background */
.areas-floats {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.areas-float {
  position: absolute;
  font-size: 2rem;
  opacity: 0.22;
  animation: aFloat 6s ease-in-out infinite;
  user-select: none;
}

/* Positions spread across the section */
.af-1 {
  left: 4%;
  top: 10%;
  animation-duration: 5.8s;
  animation-delay: 0s;
  font-size: 2.6rem;
}

.af-2 {
  left: 14%;
  top: 65%;
  animation-duration: 7.2s;
  animation-delay: 1.1s;
  font-size: 2.2rem;
}

.af-3 {
  left: 24%;
  top: 30%;
  animation-duration: 5.4s;
  animation-delay: 0.5s;
  font-size: 3.2rem;
}

.af-4 {
  left: 36%;
  top: 75%;
  animation-duration: 6.8s;
  animation-delay: 2.0s;
  font-size: 2.0rem;
}

.af-5 {
  left: 46%;
  top: 15%;
  animation-duration: 6.2s;
  animation-delay: 0.8s;
  font-size: 3.4rem;
}

.af-6 {
  left: 56%;
  top: 55%;
  animation-duration: 7.4s;
  animation-delay: 1.5s;
  font-size: 2.4rem;
}

.af-7 {
  left: 66%;
  top: 20%;
  animation-duration: 5.2s;
  animation-delay: 3.0s;
  font-size: 3.0rem;
}

.af-8 {
  left: 74%;
  top: 70%;
  animation-duration: 6.6s;
  animation-delay: 0.3s;
  font-size: 2.2rem;
}

.af-9 {
  left: 83%;
  top: 35%;
  animation-duration: 5.9s;
  animation-delay: 1.8s;
  font-size: 2.6rem;
}

.af-10 {
  left: 91%;
  top: 80%;
  animation-duration: 7.6s;
  animation-delay: 0.6s;
  font-size: 2.0rem;
}

.af-11 {
  left: 8%;
  top: 85%;
  animation-duration: 5.6s;
  animation-delay: 2.5s;
  font-size: 2.4rem;
}

.af-12 {
  left: 96%;
  top: 8%;
  animation-duration: 7.0s;
  animation-delay: 1.3s;
  font-size: 2.8rem;
}

@keyframes aFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-28px) rotate(10deg);
  }

  50% {
    transform: translateY(-14px) rotate(-8deg);
  }

  75% {
    transform: translateY(-24px) rotate(5deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.areas-eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 16px;
}

.areas-cities {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  color: var(--text);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
}

.areas-sub {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin: 0;
}

.areas-sub a {
  color: var(--blue);
  font-weight: 700;
}

.areas-sub a:hover {
  color: var(--blue-dark);
}


/* =========================================
   PHOTOS SLIDER
   ========================================= */
.photos-section {
  background: linear-gradient(180deg, #0d1f3c 0%, #0a1628 100%);
  padding: 30px 0 60px 0px;
}

.photos-header {
  padding: 0 0 36px;
  text-align: center;
}

.photos-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  color: var(--cream);
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
}

.photos-label::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: rgb(219, 97, 154);
  border-radius: 99px;
  margin: 8px auto 0;
}

.photo-slider {
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}

.slider-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
}

.slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-item {
  flex: 0 0 25%;
  padding: 6px;
}

.slider-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  opacity: 0.9;
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.slider-item img:hover {
  opacity: 1;
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.slider-btn {
  background: rgba(255, 248, 240, 0.08);
  color: var(--cream);
  border: 1px solid rgba(255, 248, 240, 0.15);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.slider-btn:hover {
  background: rgb(219, 97, 154);
  border-color: rgb(219, 97, 154);
  transform: scale(1.05);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 28px 0 0;
}

.slider-dot {
  width: 24px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 248, 240, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}

.slider-dot:hover {
  background: rgba(255, 248, 240, 0.45);
}

.slider-dot.active {
  background: rgb(219, 97, 154);
  width: 40px;
}

@media (max-width: 767px) {
  .slider-item {
    flex: 0 0 100%;
  }

  .slider-item img {
    border-radius: 0;
    height: 240px;
    opacity: 1;
  }
}


/* =========================================
   CTA SECTION  (red accent — intentional)
   ========================================= */
.cta-section {
  background: linear-gradient(135deg, #7f0000 0%, #c0392b 40%, #e74c3c 100%);
  padding: 80px 20px;
}

.cta-heading {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-sub {
  color: rgba(255, 248, 240, 0.85);
  font-size: 1rem;
  margin-bottom: 32px;
}

.btn-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--red-dark);
  font-family: 'Fredoka', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.btn-cta-phone:hover {
  background: var(--cream);
  color: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}

.btn-cta-phone .bi {
  font-size: 1.1rem;
}


/* =========================================
   BUTTONS (shared)
   ========================================= */
.btn-main {
  background: rgb(219, 97, 154);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  font-size: 0.93rem;
  padding: 10px 24px;
  transition: all 0.2s;
  box-shadow: 0 3px 10px rgba(219, 97, 154, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  text-decoration: none;
}

.btn-main:hover {
  background: rgb(196, 72, 130);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(219, 97, 154, 0.45);
}

.btn-main.btn-sm {
  padding: 6px 16px;
  font-size: 0.84rem;
}

.btn-orange {
  background: rgb(219, 97, 154);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  font-size: 0.93rem;
  padding: 10px 24px;
  transition: all 0.2s;
  box-shadow: 0 3px 10px rgba(219, 97, 154, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  text-decoration: none;
}

.btn-orange:hover {
  background: rgb(196, 72, 130);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(219, 97, 154, 0.45);
}


/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--blue-deeper);
  color: rgba(255, 248, 240, 0.8);
}

.footer-logo {
  border-radius: 8px;
  opacity: 0.9;
  height: 125px;
  width: auto;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 248, 240, 0.5);
  margin: 0;
}

.footer-heading {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 248, 240, 0.15);
  padding-bottom: 8px;
  margin-bottom: 14px;
}

.footer-contact {
  font-size: 0.9rem;
}

.footer-contact li {
  margin-bottom: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact i {
  color: rgba(255, 248, 240, 0.45);
  font-size: 0.85rem;
}

.footer-contact a {
  color: rgba(255, 248, 240, 0.8);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--cream);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 248, 240, 0.1);
  color: rgba(255, 248, 240, 0.75);
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.2s;
}

.social-icon:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.hygiene-badge {
  background: rgba(255, 248, 240, 0.07);
  border: 1px solid rgba(255, 248, 240, 0.15);
  border-radius: 12px;
  padding: 16px 20px;
  display: inline-block;
  text-align: center;
}

.hygiene-stars {
  color: rgba(255, 248, 240, 0.65);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.hygiene-score {
  font-family: 'Fredoka', sans-serif;
  font-size: 3rem;
  color: #5dde5d;
  line-height: 1;
}

.hygiene-label {
  font-weight: 800;
  font-size: 0.7rem;
  color: #5dde5d;
  letter-spacing: 2px;
}

.hygiene-agency {
  font-size: 0.7rem;
  color: rgba(255, 248, 240, 0.38);
  margin-top: 4px;
}

.footer-hr {
  border-color: rgba(255, 248, 240, 0.1);
}

.footer-copy {
  color: rgba(255, 248, 240, 0.32);
  font-size: 0.82rem;
}


/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 55, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: lbFadeIn 0.2s ease;
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-overlay img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  cursor: default;
  animation: lbZoomIn 0.2s ease;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(255, 248, 240, 0.8);
  font-size: 2.2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s, transform 0.2s;
}

.lightbox-close:hover {
  color: var(--cream);
  transform: scale(1.15);
}

@keyframes lbFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes lbZoomIn {
  from {
    transform: scale(0.92);
  }

  to {
    transform: scale(1);
  }
}

.lightbox-trigger {
  cursor: zoom-in;
}


/* =========================================
   LANG SWITCHER
   ========================================= */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(255, 248, 240, 0.18);
  border-radius: 7px;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.07);
}

.lang-btn {
  background: none;
  border: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  color: rgba(255, 248, 240, 0.65);
  cursor: pointer;
  padding: 3px 7px;
  border-radius: 5px;
  transition: all 0.15s;
}

.lang-btn:hover {
  color: var(--cream);
}

.lang-btn.active {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.lang-sep {
  color: rgba(255, 248, 240, 0.25);
  font-size: 0.8rem;
}


/* =========================================
   BACK TO TOP
   ========================================= */
.backtotop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: var(--blue);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 99;
  box-shadow: 0 4px 14px rgba(26, 74, 133, 0.4);
}

.backtotop.show {
  opacity: 1;
  visibility: visible;
}

.backtotop:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-3px);
}


/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991px) {

  .bento-row,
  .bento-row--flip {
    grid-template-columns: 1fr 1fr;
    height: 300px;
  }
}

@media (max-width: 991px) {
  .nav-logo {
    height: 52px;
  }

  .nav-right {
    justify-content: center;
  }

  [id] {
    scroll-margin-top: 68px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: calc(100svh - 60px);
  }

  .hero-logo {
    height: 80px;
  }

  .story-section {
    padding: 52px 0;
  }

  .story-list {
    grid-template-columns: 1fr;
  }

  .bento-row,
  .bento-row--flip {
    grid-template-columns: 1fr;
    height: auto;
  }

  .bento-cell {
    height: 280px;
  }

  .bento-desc {
    display: none !important;
  }

  .btn-bento {
    opacity: 1 !important;
    transform: none !important;
  }

  .cta-section {
    padding: 56px 20px;
  }
}