@font-face {
  font-family: "Bangers";
  src: url("assets/fonts/Bangers/Bangers-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Pattaya";
  src: url("assets/fonts/Pattaya/Pattaya-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "PKPhrae";
  src: url("assets/fonts/PK%20Phrae/PK%20Phrae-Medium.ttf") format("truetype");
}

:root {
  --navy: #113652;
  --ocean: #155b8a;
  --cream: #f5f1ea;
  --shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(86, 171, 220, 0.2), transparent 32%),
    linear-gradient(180deg, #1c6a9b 0%, #2a6b98 18%, #d8e3e7 38%, #f7f2ea 58%, #f4efe9 100%);
  color: #111;
  font-family: "PKPhrae", "Trebuchet MS", sans-serif;
}

body.is-loading {
  overflow: hidden;
}

button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.loading-screen {
  /* Intro overlay that uses the same hero artwork as the page itself. */
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #1d6ea1 0%, #114463 100%);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-scene,
.loading-kayak {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.loading-scene {
  object-fit: cover;
  object-position: center center;
}

.loading-kayak {
  object-fit: contain;
  object-position: center bottom;
  animation: loadingKayakFloat 4.8s ease-in-out infinite;
}

.loading-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: min(92vw, 640px);
  padding: 32px 24px;
  border-radius: 28px;
  background: rgba(9, 41, 68, 0.18);
  backdrop-filter: blur(4px);
}

.loading-heading {
  width: min(86vw, 520px);
  animation: titleHover 3.8s ease-in-out infinite;
}

.loading-text {
  margin: 0;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.35rem);
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.loading-dots {
  display: flex;
  gap: 10px;
}

.loading-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff7dc;
  box-shadow: 0 0 12px rgba(255, 238, 170, 0.5);
  animation: loadingPulse 1.2s ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(17, 91, 138, 0.95) 0%, rgba(34, 107, 150, 0.88) 12%, rgba(180, 204, 218, 0.55) 20%, rgba(244, 238, 229, 0.96) 32%, #f3eee8 100%);
  overflow: hidden;
}

.hero {
  /* Full-screen landing area with layered scene, kayak, and floating title. */
  position: relative;
  min-height: 100vh;
  padding: 22px clamp(18px, 4vw, 48px) 48px;
  background: #1d6ea1;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(90px, 12vw, 150px);
  background:
    linear-gradient(
      180deg,
      rgba(17, 92, 138, 0) 0%,
      rgba(18, 96, 145, 0.32) 26%,
      rgba(25, 103, 151, 0.72) 54%,
      rgba(31, 108, 155, 0.94) 76%,
      rgba(35, 111, 157, 1) 100%
    );
  pointer-events: none;
  z-index: 1;
}

.hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.hero-kayak {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  animation: paddleFloat 4.8s ease-in-out infinite;
}

@keyframes paddleFloat {
  0% {
    transform: translateX(calc(-50% - 18px)) translateY(0) rotate(-1.2deg);
  }

  25% {
    transform: translateX(calc(-50% - 6px)) translateY(-6px) rotate(-0.3deg);
  }

  50% {
    transform: translateX(calc(-50% + 18px)) translateY(-2px) rotate(1deg);
  }

  75% {
    transform: translateX(calc(-50% + 6px)) translateY(-8px) rotate(0.2deg);
  }

  100% {
    transform: translateX(calc(-50% - 18px)) translateY(0) rotate(-1.2deg);
  }
}

@keyframes titleHover {
  0% {
    transform: translateY(0);
  }

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

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

@keyframes loadingPulse {
  0%,
  100% {
    transform: translateY(0) scale(0.85);
    opacity: 0.45;
  }

  50% {
    transform: translateY(-6px) scale(1);
    opacity: 1;
  }
}

@keyframes loadingKayakFloat {
  0% {
    transform: translateX(-18px) translateY(0) rotate(-1.2deg);
  }

  25% {
    transform: translateX(-6px) translateY(-6px) rotate(-0.3deg);
  }

  50% {
    transform: translateX(18px) translateY(-2px) rotate(1deg);
  }

  75% {
    transform: translateX(6px) translateY(-8px) rotate(0.2deg);
  }

  100% {
    transform: translateX(-18px) translateY(0) rotate(-1.2deg);
  }
}

@keyframes mapShimmer {
  0% {
    transform: translateX(-120%) rotate(-8deg);
  }

  100% {
    transform: translateX(135%) rotate(-8deg);
  }
}

@keyframes pinBounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  35% {
    transform: translateY(-10px) scale(1.03);
  }

  55% {
    transform: translateY(-3px) scale(0.98);
  }
}

@keyframes festivalIconFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.12);
  }

  50% {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 14px 20px rgba(0, 0, 0, 0.18);
  }
}

@keyframes festivalCardFloat {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: var(--shadow);
  }

  50% {
    transform: translateY(-8px);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.16);
  }
}

@keyframes foodPlateFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(0deg) scale(1);
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.16));
  }

  50% {
    transform: translateX(-50%) translateY(-10px) rotate(-1.2deg) scale(1.04);
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.22));
  }
}

@keyframes bowlPulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.16));
  }

  50% {
    transform: translateX(-50%) scale(1.03);
    filter: drop-shadow(0 16px 16px rgba(0, 0, 0, 0.2));
  }
}

.hero-logo {
  position: absolute;
  top: clamp(18px, 1.4vw, 24px);
  left: clamp(18px, 2vw, 32px);
  width: clamp(42px, 3.6vw, 64px);
  z-index: 3;
}

.hero-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 20px);
  max-width: 1280px;
  margin: clamp(20px, 3vh, 32px) auto 0;
  position: relative;
  z-index: 3;
}

.nav-btn {
  width: clamp(58px, 8vw, 104px);
  transition: transform 0.2s ease;
}

.nav-btn:hover,
.nav-btn.is-active {
  transform: translateY(-2px) scale(1.03);
}

.hero-heading-wrap {
  display: flex;
  justify-content: center;
  max-width: 1280px;
  margin: clamp(40px, 8vh, 96px) auto 0;
  position: relative;
  z-index: 3;
}

.hero-heading {
  width: clamp(360px, 42vw, 760px);
  max-width: 88%;
  filter: drop-shadow(0 10px 0 rgba(73, 41, 8, 0.18));
  animation: titleHover 3.8s ease-in-out infinite;
}

.blue-band {
  display: none;
}

.fact-section {
  position: relative;
  margin-top: -1px;
  padding-top: clamp(120px, 14vw, 180px);
  background:
    linear-gradient(
      180deg,
      #2a6f9c 0%,
      #3d80ad 12%,
      #5b97bd 24%,
      #92bdd4 38%,
      #d6e2e6 54%,
      #eee9e1 70%,
      #f3eee8 100%
    );
}

.fact-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: clamp(130px, 16vw, 190px);
  background:
    linear-gradient(
      180deg,
      rgba(28, 103, 151, 0.9) 0%,
      rgba(53, 124, 168, 0.72) 32%,
      rgba(108, 166, 200, 0.34) 68%,
      rgba(214, 226, 230, 0) 100%
    );
  pointer-events: none;
}

.fact-card {
  /* Tilt-ready card for the interactive "Fact About Krabi" section. */
  position: relative;
  width: min(calc(100% - 40px), 980px);
  margin: 0 auto 0;
  padding: clamp(20px, 2vw, 30px) clamp(14px, 2vw, 28px) clamp(18px, 2vw, 26px);
  background: #fff;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  will-change: transform;
}

.fact-image {
  width: 100%;
  transform: translateZ(16px);
}

.fact-card.is-hovering {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.tape {
  position: absolute;
  width: clamp(72px, 8vw, 118px);
  z-index: 2;
  transform: translateZ(28px);
}

.tape-left {
  top: -14px;
  left: -10px;
  transform: rotate(8deg);
}

.tape-right {
  right: -10px;
  bottom: -14px;
  transform: rotate(186deg);
}

.sticker-sun {
  position: absolute;
  top: clamp(-30px, -2.4vw, -14px);
  right: clamp(-6px, 1vw, 22px);
  width: clamp(88px, 9vw, 132px);
  transform: translateZ(34px);
}

.bubble-dot {
  position: absolute;
  top: clamp(-6px, -0.5vw, 2px);
  right: clamp(82px, 14vw, 164px);
  width: clamp(20px, 2.4vw, 34px);
  height: clamp(20px, 2.4vw, 34px);
  border-radius: 50%;
  background: #bee6eb;
  transform: translateZ(26px);
}

.section-copy {
  text-align: center;
}

.section-title {
  margin: 0 auto;
}

.section-description {
  margin: 4px auto 0;
}

.attractions-section {
  padding: clamp(58px, 8vw, 88px) clamp(18px, 4vw, 48px) 0;
}

.attractions-title {
  width: min(78%, 720px);
}

.section-description {
  width: min(86%, 780px);
}

.map-stage {
  /* Portrait-style composition so the map cluster keeps its Figma layout. */
  position: relative;
  width: min(100%, 1100px);
  margin: clamp(34px, 5vw, 52px) auto 0;
  aspect-ratio: 1100 / 1281;
  min-height: 780px;
  overflow: visible;
}

.map-stage::before {
  content: "";
  position: absolute;
  top: 6%;
  left: 10%;
  width: 78%;
  height: 78%;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.14) 36%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0.12) 64%, transparent 82%);
  transform: translateX(-120%) rotate(-8deg);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: url("assets/Group 3.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("assets/Group 3.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  z-index: 2;
}

.map-stage:hover::before {
  opacity: 1;
  animation: mapShimmer 1.8s ease;
}

.krabi-map {
  position: absolute;
  top: 6%;
  left: 10%;
  width: 78%;
  max-width: none;
  margin: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 8px 14px rgba(58, 108, 18, 0.14));
  z-index: 1;
}

.map-stage:hover .krabi-map {
  transform: scale(1.015);
  filter: drop-shadow(0 14px 22px rgba(58, 108, 18, 0.2)) saturate(1.04);
}

.attraction-card {
  position: absolute;
  width: 30%;
  max-width: 310px;
  opacity: 0.9;
  transition: transform 0.25s ease, opacity 0.25s ease;
  z-index: 3;
  cursor: zoom-in;
  outline: none;
}

.attraction-card img {
  width: 100%;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.12);
}

.attraction-card:hover,
.attraction-card:focus-visible {
  transform: translateY(-6px) scale(1.03);
}

.attraction-card.is-highlighted {
  opacity: 1;
  transform: scale(1.03);
}

.attraction-card-top {
  top: 11%;
  left: 63%;
}

.attraction-card-left {
  top: 56%;
  left: 3%;
}

.attraction-card-right {
  top: 72%;
  left: 55%;
}

.pin {
  position: absolute;
  width: clamp(42px, 5vw, 82px);
  transition: transform 0.2s ease;
  z-index: 4;
}

.pin img {
  width: 100%;
  animation: pinBounce 1.9s ease-in-out infinite;
  transform-origin: center bottom;
}

.pin:hover,
.pin.is-active {
  transform: scale(1.08);
}

.pin-top {
  top: 23%;
  left: 54%;
}

.pin-left {
  top: 52%;
  left: 34%;
}

.pin-right {
  top: 65%;
  left: 66%;
}

.pin-top img {
  animation-delay: 0s;
}

.pin-left img {
  animation-delay: 0.25s;
}

.pin-right img {
  animation-delay: 0.5s;
}

.attraction-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 24, 39, 0.74);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.attraction-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.attraction-modal-card {
  width: min(92vw, 980px);
  max-height: 84vh;
  background: transparent;
  box-shadow: none;
}

.attraction-modal-card img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
}

.attraction-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #173a54;
  font-size: 1.35rem;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

@media (min-width: 1200px) {
  .map-stage {
    width: 1100px;
  }
}

.festival-section {
  padding: clamp(94px, 10vw, 130px) clamp(18px, 4vw, 48px) 0;
}

.festival-title {
  width: min(58%, 540px);
}

.festival-description {
  width: min(74%, 760px);
}

.festival-layout {
  /* Side selector plus a large main card for festival artwork swaps. */
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  align-items: flex-start;
  width: min(100%, 1120px);
  margin: clamp(36px, 5vw, 50px) auto 0;
}

.festival-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: clamp(80px, 10vw, 112px);
}

.festival-tab {
  width: 100%;
  border-radius: 18px;
  transition: transform 0.2s ease;
  animation: festivalIconFloat 3.4s ease-in-out infinite;
}

.festival-tab.is-active,
.festival-tab:hover {
  transform: translateX(3px);
}

.festival-tab:nth-child(2) {
  animation-delay: 0.2s;
}

.festival-tab:nth-child(3) {
  animation-delay: 0.4s;
}

.festival-panel {
  flex: 1;
  max-width: 920px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: festivalCardFloat 4.2s ease-in-out infinite;
}

.festival-panel img {
  width: 100%;
}

.festival-layout:hover .festival-panel {
  transform: translateY(-6px) rotate(-0.2deg);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.16);
}

.food-section {
  padding: clamp(78px, 9vw, 118px) clamp(18px, 4vw, 48px) clamp(92px, 10vw, 120px);
}

.food-title {
  width: min(72%, 700px);
}

.food-description {
  margin: 6px auto 0;
  width: min(74%, 760px);
  font-size: clamp(1.45rem, 2.35vw, 1.85rem);
  line-height: 1.35;
  text-align: center;
  font-family: "PKPhrae", sans-serif;
}

.food-slider {
  /* Oversized food showcase with animated bowl and dish layers. */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  width: min(100%, 1120px);
  margin: clamp(30px, 5vw, 44px) auto 0;
}

.food-arrow {
  width: clamp(80px, 9vw, 118px);
  flex: 0 0 clamp(80px, 9vw, 118px);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.food-arrow:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.18));
}

.food-stage {
  width: min(100%, 660px);
  text-align: center;
}

.food-plate-wrap {
  position: relative;
  width: min(100%, 680px);
  min-height: clamp(300px, 40vw, 460px);
  margin: 0 auto;
}

.food-bowl {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(100%, 650px);
  transform: translateX(-50%);
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.16));
  animation: bowlPulse 3.8s ease-in-out infinite;
}

.food-plate {
  position: absolute;
  left: 50%;
  bottom: 58px;
  width: min(84%, 500px);
  min-height: auto;
  margin: 0;
  transform: translateX(-50%);
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.14));
  animation: foodPlateFloat 3.6s ease-in-out infinite;
}

.food-name {
  margin: 14px 0 0;
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  line-height: 1;
  font-family: "Pattaya", cursive;
}

.footer {
  padding: clamp(28px, 4vw, 42px) clamp(18px, 4vw, 48px) clamp(34px, 5vw, 48px);
  background: #155b8a;
  color: #fff;
  text-align: center;
}

.footer-title {
  width: clamp(96px, 12vw, 132px);
  margin: 0 auto 10px;
}

.footer p {
  margin: 0;
  font-size: clamp(0.58rem, 1.25vw, 0.9rem);
  line-height: 1.55;
}

.copyright {
  margin-top: 10px;
}

@media (min-width: 900px) {
  .fact-section,
  .attractions-section,
  .festival-section,
  .food-section,
  .footer {
    position: relative;
  }

  .fact-section::before,
  .attractions-section::before,
  .festival-section::before,
  .food-section::before,
  .footer::before {
    content: "";
    position: absolute;
    inset: 0;
    max-width: 1280px;
    margin: 0 auto;
    pointer-events: none;
  }
}

@media (max-width: 700px) {
  .page-shell {
    width: min(100%, 432px);
    margin: 0 auto;
  }

  .hero {
    min-height: 335px;
    aspect-ratio: 4320 / 3072;
    padding: 22px 18px 24px;
  }

  .hero-scene {
    object-fit: contain;
  }

  .hero-kayak {
    object-fit: contain;
  }

  .hero-logo {
    top: 18px;
    left: 24px;
    width: 58px;
  }

  .hero-nav {
    gap: 12px;
    margin: 0 auto;
  }

  .nav-btn {
    width: 58px;
  }

  .hero-heading-wrap {
    margin-top: 58px;
  }

  .hero-heading {
    width: clamp(250px, 78vw, 430px);
    max-width: 88%;
  }

  .blue-band {
    height: 74px;
  }

  .fact-card {
    width: calc(100% - 34px);
    margin: -32px auto 0;
    padding: 18px 12px 16px;
  }

  .tape {
    width: 72px;
  }

  .sticker-sun {
    top: -36px;
    right: -12px;
    width: 92px;
  }

  .bubble-dot {
    top: -10px;
    right: 106px;
    width: 26px;
    height: 26px;
  }

  .attractions-section {
    padding: 58px 18px 0;
  }

  .attractions-title {
    width: 78%;
  }

  .section-description {
    width: 86%;
  }

  .map-stage {
    margin-top: 34px;
    min-height: 560px;
    width: 100%;
  }

  .krabi-map {
    width: 290px;
  }

  .attraction-card {
    width: 142px;
  }

  .attraction-card-top {
    top: 28px;
    right: 4px;
  }

  .attraction-card-left {
    top: 246px;
    left: 0;
  }

  .attraction-card-right {
    top: 332px;
    right: 18px;
  }

  .pin {
    width: 42px;
  }

  .pin-top {
    top: 138px;
    right: 118px;
  }

  .pin-left {
    top: 314px;
    left: 136px;
  }

  .pin-right {
    top: 392px;
    right: 108px;
  }

  .festival-section {
    padding: 94px 18px 0;
  }

  .festival-title {
    width: 58%;
  }

  .festival-description {
    width: 74%;
  }

  .festival-layout {
    gap: 14px;
    margin-top: 36px;
  }

  .festival-tabs {
    width: 80px;
  }

  .festival-tab {
    width: 80px;
  }

  .food-section {
    padding: 78px 18px 92px;
  }

  .food-title {
    width: 68%;
  }

  .food-description {
    font-size: 0.92rem;
  }

  .food-slider {
    gap: 10px;
    margin-top: 30px;
  }

  .food-arrow {
    width: 66px;
    flex-basis: 66px;
  }

  .food-stage {
    width: 240px;
  }

  .food-plate-wrap {
    width: 100%;
    min-height: 190px;
  }

  .food-bowl {
    width: 100%;
  }

  .food-plate {
    bottom: 26px;
    width: 76%;
  }

  .food-name {
    font-size: 1.65rem;
  }

  .footer {
    padding: 28px 18px 34px;
  }

  .footer-title {
    width: 96px;
  }

  .footer p {
    font-size: 0.58rem;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 310px;
  }

  .hero-nav {
    gap: 10px;
  }

  .hero-heading {
    width: clamp(220px, 80vw, 340px);
  }

  .nav-btn {
    width: 58px;
  }

  .map-stage {
    min-height: 510px;
  }

  .krabi-map {
    width: 264px;
  }

  .attraction-card {
    width: 130px;
  }

  .attraction-card-top {
    top: 28px;
    right: 0;
  }

  .attraction-card-left {
    top: 246px;
    left: -4px;
  }

  .attraction-card-right {
    top: 332px;
    right: 8px;
  }

  .pin-top {
    top: 138px;
    right: 112px;
  }

  .pin-left {
    top: 322px;
    left: 130px;
  }

  .pin-right {
    top: 400px;
    right: 98px;
  }

  .festival-layout {
    gap: 12px;
  }

  .festival-tabs,
  .festival-tab {
    width: 68px;
  }

  .food-slider {
    gap: 2px;
  }

  .food-stage {
    width: 220px;
  }
}
