/* ============================================
   BELLAGIO UNPLUGGED — Clean & Fresh Design
   Light, airy, Lake Como feeling
   ============================================ */

@import url('./base.css');

:root {
  --color-primary: #1777B0;
  --color-primary-hover: #125e8c;
  --color-primary-soft: rgba(23, 119, 176, 0.08);

  --color-bg: #ffffff;
  --color-bg-soft: #f8fafb;
  --color-text: #1a2332;
  --color-text-secondary: #5f6d7e;
  --color-text-light: #8896a6;
  --color-border: #e8ecf0;

  --font-body: 'General Sans', 'Helvetica Neue', sans-serif;
  --font-display: 'General Sans', 'Helvetica Neue', sans-serif;

  --max-w: 1080px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 24px;
}

.header__logo {
  height: 38px;
  width: auto;
}

.lang-switcher {
  display: flex;
  gap: 2px;
}

.lang-btn {
  padding: 5px 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text-light);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 180ms var(--ease);
  text-transform: uppercase;
}

.lang-btn:hover {
  color: var(--color-text);
  background: var(--color-bg-soft);
}

.lang-btn.active {
  color: var(--color-primary);
  background: var(--color-primary-soft);
}

.header--scrolled {
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

/* ============================================
   HERO — Video fullscreen
   ============================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.0) 40%,
    rgba(0,0,0,0.25) 75%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 1;
}

.hero__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  text-align: center;
  padding: 0 24px 64px;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 42px);
  font-style: normal;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
}

.hero__scroll svg { width: 16px; height: 16px; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ============================================
   SECTION BASE
   ============================================ */

.section {
  padding: 80px 24px;
}

.section--soft {
  background: var(--color-bg-soft);
}

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  font-style: normal;
  color: var(--color-text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 540px;
}

.text-center { text-align: center; }
.text-center .section__desc { margin: 0 auto; }

/* ============================================
   PHOTO GRID — Clean, regular, generous spacing
   ============================================ */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max-w);
  margin: 48px auto 0;
}

.photo-grid__item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-bg-soft);
}

.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.photo-grid__item:hover img {
  transform: scale(1.03);
}

@media (max-width: 640px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ============================================
   MARKET INFO — Simple card
   ============================================ */

.info-card {
  max-width: 560px;
  margin: 48px auto 0;
  padding: 32px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  text-align: center;
}

.info-card__icon {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  margin: 0 auto 12px;
}

.info-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.info-card__text strong {
  color: var(--color-text);
  font-weight: 600;
}

/* ============================================
   SUPPORT / GOFUNDME
   ============================================ */

.support-bar {
  max-width: 400px;
  margin: 32px auto;
}

.support-bar__track {
  width: 100%;
  height: 5px;
  background: var(--color-border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}

.support-bar__fill {
  height: 100%;
  width: 0%;
  background: var(--color-primary);
  border-radius: 3px;
  transition: width 1.5s var(--ease);
}

.support-bar__label {
  font-size: 13px;
  color: var(--color-text-light);
}

.support-bar__label strong {
  color: var(--color-text);
  font-weight: 600;
}

/* Primary Button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  transition: background 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(23, 119, 176, 0.25);
}

.btn:active { transform: translateY(0); }

.btn svg { width: 16px; height: 16px; }

/* ============================================
   INSTAGRAM
   ============================================ */

.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 32px;
  transition: color 180ms var(--ease);
}

.ig-handle:hover { color: var(--color-primary); }
.ig-handle svg { width: 20px; height: 20px; }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.ig-grid a {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 180ms var(--ease);
}

.ig-grid a:hover { transform: scale(1.02); }

.ig-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   VIDEO GALLERY
   ============================================ */

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max-w);
  margin: 48px auto 0;
}

.video-grid__item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: #0a0e13;
}

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

@media (max-width: 640px) {
  .video-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 32px auto 0;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 48px 24px;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer__logo {
  height: 28px;
  margin: 0 auto 12px;
  opacity: 0.4;
}

.footer__copy {
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer__links a {
  font-size: 12px;
  color: var(--color-text-light);
  transition: color 180ms var(--ease);
}

.footer__links a:hover {
  color: var(--color-text);
}

/* ============================================
   DIVIDER
   ============================================ */

.divider {
  width: 40px;
  height: 2px;
  background: var(--color-primary);
  opacity: 0.4;
  border-radius: 1px;
}

.text-center .divider { margin: 0 auto 32px; }

/* ============================================
   FADE IN (scroll)
   ============================================ */

.fade-in { opacity: 1; }

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: fadeReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 70%;
  }
}
@keyframes fadeReveal { to { opacity: 1; } }

@supports not (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    transition: opacity 0.6s var(--ease);
  }
  .fade-in.visible { opacity: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 640px) {
  .section { padding: 56px 20px; }
  .header__inner { padding: 10px 16px; }
  .header__logo { height: 32px; }
  .lang-btn { padding: 4px 7px; font-size: 11px; }
  .ig-grid { gap: 8px; }
}
