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

html, body { height: 100%; width: 100%; }


body {
  background-color: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  font-family: 'EB Garamond', Georgia, serif;
  /* overflow: clip instead of hidden — hidden clips fixed children in some browsers */
  overflow: clip;
  position: relative;
}

/* Fog layer 1 */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse 60% 40% at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 70% 60%, rgba(255,255,255,0.05) 0%, transparent 65%),
    radial-gradient(ellipse 80% 50% at 50% 30%, rgba(255,255,255,0.04) 0%, transparent 80%);
  animation: driftFog1 25s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

/* Fog layer 2 */
body::after {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse 45% 55% at 60% 40%, rgba(255,255,255,0.045) 0%, transparent 65%),
    radial-gradient(ellipse 70% 30% at 20% 70%, rgba(255,255,255,0.05) 0%, transparent 70%);
  animation: driftFog2 35s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes driftFog1 {
  0%   { transform: translate(0%, 0%)   scale(1); }
  33%  { transform: translate(3%, -4%)  scale(1.04); }
  66%  { transform: translate(-4%, 3%)  scale(0.97); }
  100% { transform: translate(2%, -2%)  scale(1.02); }
}

@keyframes driftFog2 {
  0%   { transform: translate(0%, 0%)   scale(1.02); }
  40%  { transform: translate(-3%, 5%)  scale(0.98); }
  70%  { transform: translate(5%, -3%)  scale(1.05); }
  100% { transform: translate(-2%, 2%)  scale(1); }
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
  padding: 2rem;
}

h1 {
  font-family: 'New Rocker', cursive;
  font-size: clamp(3rem, 10vw, 8rem);
  color: #e8e0d0;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-shadow:
    0 0 40px rgba(232, 224, 208, 0.15),
    0 0 80px rgba(232, 224, 208, 0.05);
  animation: fadeIn 2s ease forwards;
}

.tagline {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(0.875rem, 2vw, 1.15rem);
  color: #5a5450;
  letter-spacing: 0.12em;
  animation: fadeIn 2.2s ease forwards;
}

.divider {
  width: clamp(60px, 15vw, 120px);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232, 224, 208, 0.2), transparent);
  animation: fadeIn 2s ease forwards;
}

.show-teaser {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  animation: fadeIn 2.8s ease forwards;
}

.show-label {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 0.8rem);
  color: #b1a196;
  letter-spacing: 0.18em;
  text-transform: lowercase;
}

.show-date {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  color: #c8b89a;
  letter-spacing: 0.08em;
  text-shadow: 0 0 20px rgba(200, 184, 154, 0.3);
}

.follow-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 2.5s ease forwards;
  gap: 1rem;
}

.follow-text {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  color: #7a7468;
  font-size: clamp(1.1rem, 2vw, 1.1rem);
  letter-spacing: 0.05em;
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.4rem;
  border: 1px solid rgba(232, 224, 208, 0.2);
  border-radius: 9999px;
  background: transparent;
  color: #c8c0b0;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: all 220ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.instagram-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  opacity: 0;
  transition: opacity 220ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.instagram-btn:hover::before { opacity: 0.15; }

.instagram-btn:hover {
  border-color: rgba(232, 224, 208, 0.5);
  color: #e8e0d0;
  box-shadow: 0 0 20px rgba(253, 29, 29, 0.08), 0 0 40px rgba(131, 58, 180, 0.06);
  transform: translateY(-1px);
}

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

.instagram-btn svg,
.instagram-btn span {
  position: relative;
  z-index: 1;
}


    .show-teaser {
  text-decoration: none;
  cursor: pointer;
  transition: all 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.show-date {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  color: #c8b89a;
  letter-spacing: 0.08em;
  text-shadow: 0 0 20px rgba(200, 184, 154, 0.3);
  text-decoration: none;
  transition: all 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.show-date:hover {
  color: #e8d8b8;
  text-shadow: 0 0 30px rgba(200, 184, 154, 0.6);
  letter-spacing: 0.12em;
}



@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; }
}
