:root {
  --cream: #F1E4C3;
  --black: #000000;
  --yellow: #FFDE4D;
  --red: #FF4B4B;
  --orange: #FF7A1F;
  --white: #FFFDF5;
  --shadow: 5px 5px 0px #000000;
  --shadow-lg: 8px 8px 0px #000000;
  --border: 3px solid #000000;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
  cursor: default;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--black); }

/* LANGUAGE SELECTOR */
.lang-bar {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1000;
  display: flex;
  gap: 0;
  border: var(--border);
  box-shadow: var(--shadow);
  background: var(--yellow);
}
.lang-btn {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 8px 14px;
  background: transparent;
  border: none;
  border-right: var(--border);
  cursor: pointer;
  transition: background 0.1s, transform 0.1s;
  color: var(--black);
}
.lang-btn:last-child { border-right: none; }
.lang-btn:hover, .lang-btn.active {
  background: var(--black);
  color: var(--yellow);
}
.lang-btn.active { background: var(--black); color: var(--yellow); }

/* MARQUEE */
.marquee-wrap {
  background: var(--black);
  border-bottom: var(--border);
  overflow: hidden;
  padding: 10px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--yellow);
  padding: 0 40px;
}
.marquee-track span.dot {
  color: var(--red);
  padding: 0 8px;
  font-size: 22px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
  border-bottom: var(--border);
}
.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, 22vw, 320px);
  color: transparent;
  -webkit-text-stroke: 2px rgba(0,0,0,0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; }

.hero-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border: var(--border);
  box-shadow: 3px 3px 0 #000;
  margin-bottom: 24px;
  animation: pop-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  display: block;
}
.hero-title .line1 {
  display: block;
  color: var(--black);
  animation: slide-right 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}
.hero-title .line2 {
  display: block;
  color: var(--yellow);
  -webkit-text-stroke: 3px var(--black);
  text-shadow: 6px 6px 0 var(--black);
  animation: slide-right 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}
.hero-title .line3 {
  display: block;
  color: var(--red);
  -webkit-text-stroke: 2px var(--black);
  text-shadow: 6px 6px 0 var(--black);
  animation: slide-right 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.hero-sub {
  font-family: 'Syne', sans-serif;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  max-width: 560px;
  margin-top: 28px;
  padding: 16px 20px;
  border: var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
  line-height: 1.4;
  animation: slide-up 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
  animation: slide-up 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.65s both;
}
.btn {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: var(--border);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.12s, box-shadow 0.12s;
  box-shadow: var(--shadow);
}
.btn-primary { background: var(--black); color: var(--yellow); }
.btn-secondary { background: var(--yellow); color: var(--black); }
.btn:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 #000; }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 #000; }

.hero-badge {
  position: absolute;
  top: 100px;
  right: 60px;
  width: 140px;
  height: 140px;
  border: var(--border);
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: spin-badge 20s linear infinite;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.3;
  color: var(--black);
}
@keyframes spin-badge {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-sticker {
  position: absolute;
  bottom: 60px;
  right: 80px;
  background: var(--yellow);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 10px 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.08em;
  transform: rotate(3deg);
  animation: pop-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s both;
}

/* ===== DIVIDER ===== */
.divider {
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--black) 0px, var(--black) 30px, var(--yellow) 30px, var(--yellow) 60px, var(--red) 60px, var(--red) 90px);
}

/* ===== SECTION BASE ===== */
.section {
  padding: 80px 40px;
  border-bottom: var(--border);
}
.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 3px;
  background: var(--red);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* ===== VIBES (AMBIANCE) ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.vibe-card {
  border: var(--border);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  background: var(--white);
  transition: transform 0.15s, box-shadow 0.15s;
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0s;
}
.vibe-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.12s ease, opacity 0.4s ease;
}
.vibe-card:hover { transform: translate(-4px, -4px); box-shadow: 10px 10px 0 #000; }
.vibe-card.accent-yellow { background: var(--yellow); }
.vibe-card.accent-red { background: var(--red); color: var(--white); }
.vibe-card.accent-black { background: var(--black); color: var(--yellow); }

.card-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}
.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.card-desc {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

/* ===== INFO SECTION ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  border: var(--border);
  box-shadow: var(--shadow-lg);
}
.info-cell {
  padding: 32px 28px;
  border-right: var(--border);
  border-bottom: var(--border);
  background: var(--white);
  opacity: 0;
  transform: translateY(30px);
}
.info-cell.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34,1.4,0.64,1);
}
.info-cell:last-child { border-right: none; }
.info-cell:nth-child(1) { background: var(--black); color: var(--yellow); }
.info-cell:nth-child(2) { background: var(--yellow); }
.info-cell:nth-child(3) { background: var(--red); color: var(--white); }
.info-cell:nth-child(4) { background: var(--orange); border-right: none; }

.info-icon { font-size: 32px; margin-bottom: 12px; display: block; }
.info-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.7;
}
.info-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.4;
}

/* ===== GALLERY STRIP ===== */
.gallery-section {
  padding: 60px 0;
  background: var(--black);
  border-bottom: var(--border);
  overflow: hidden;
}
.gallery-scroll {
  display: flex;
  gap: 16px;
  padding: 0 40px;
  animation: scroll-gallery 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.gallery-scroll:hover { animation-play-state: paused; }
.gallery-item {
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  border: 3px solid var(--yellow);
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: var(--yellow);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  transition: opacity 0.2s;
}
.gallery-item:hover .overlay { opacity: 0.85; }
@keyframes scroll-gallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--yellow);
  padding: 60px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.9;
  letter-spacing: 0.02em;
}
.footer-brand span { color: var(--red); }
.footer-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,222,77,0.6);
  margin-top: 8px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--yellow);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,222,77,0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  font-family: 'Space Grotesk', sans-serif;
  color: rgba(255,222,77,0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes pop-in {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slide-right {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* SCROLL REVEAL BASE */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.34,1.4,0.64,1);
}
.reveal.from-left { transform: translateX(-50px); }
.reveal.from-left.revealed { transform: translateX(0); }
.reveal.from-right { transform: translateX(50px); }
.reveal.from-right.revealed { transform: translateX(0); }

/* ===== MAP / EMBED PLACEHOLDER ===== */
.map-box {
  border: var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  height: 280px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  color: #555;
  margin-top: 40px;
  max-width: 1200px;
  margin: 40px auto 0;
  position: relative;
  overflow: hidden;
}
.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) contrast(1.1);
}

/* ===== TICKER ===== */
.ticker {
  background: var(--red);
  border-top: var(--border);
  border-bottom: var(--border);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: marquee 18s linear infinite;
}
.ticker-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--white);
  padding: 0 48px;
}
.ticker-track span.sep {
  color: var(--yellow);
  padding: 0 8px;
}

/* ===== NOISE OVERLAY ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.25;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 80px 20px 60px; }
  .hero-badge { display: none; }
  .hero-sticker { right: 20px; bottom: 30px; font-size: 20px; }
  .section { padding: 60px 20px; }
  .info-cell:last-child { border-right: var(--border); }
  .info-cell:nth-child(3) { border-bottom: var(--border); }
  .footer { padding: 40px 20px 30px; }
  .lang-bar { top: 10px; right: 10px; }
  .map-box { height: 200px; }
}
/* ===== PHOTO GRID SECTION ===== */
.photo-section { background: var(--cream); }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

@media (max-width: 1024px) { .photo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .photo-grid { grid-template-columns: repeat(2, 1fr); } }

.photo-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border: var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  background: #ddd;
}
.photo-thumb:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 #000; }
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.photo-thumb:hover img { transform: scale(1.06); }
.photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  font-size: 28px;
}
.photo-thumb:hover .photo-overlay { opacity: 1; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.open { display: flex; }

.lb-img-wrap {
  max-width: 90vw;
  max-height: 80vh;
  border: 4px solid var(--yellow);
  box-shadow: 0 0 0 2px #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img-wrap img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: var(--yellow);
  border: var(--border);
  box-shadow: var(--shadow);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.1s;
  z-index: 2001;
}
.lb-close:hover { background: var(--red); color: #fff; }

.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: var(--black);
  color: var(--yellow);
  border: var(--border);
  box-shadow: var(--shadow);
  font-size: 36px;
  width: 52px;
  height: 52px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  z-index: 2001;
  transition: background 0.1s, color 0.1s;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover, .lb-next:hover { background: var(--yellow); color: var(--black); }

.lb-counter {
  margin-top: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--yellow);
}
