/* ============================================================
   YHAPOJJ – DEAR RAP TOUR 2026
   Raw DIY Zine Aesthetic
   ============================================================ */

:root {
  --cream: #f5f5f0;
  --off-white: #ececec;
  --black: #000;
  --red: #cc0000;
  --red-bright: #ff0000;
  --gray: #999;
}

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

html {
  /* Blurred background overlay */
  .bg-blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    pointer-events: none;
    backdrop-filter: blur(8px) brightness(0.7);
    background: rgba(0,0,0,0.18);
  }
  scroll-behavior: smooth;
}

body {
  background-color: var(--cream);
  background-image: url("../1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--black);
  font-family: 'Caveat', cursive;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background distress textures */
.bg-texture {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.03) 2px,
      rgba(0, 0, 0, 0.03) 4px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.02) 2px,
      rgba(0, 0, 0, 0.02) 4px
    );
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.bg-scribbles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 10 10 L 50 50 M 20 30 L 60 20 M 30 40 Q 50 50 70 30' stroke='%23000' stroke-width='0.5' fill='none' opacity='0.1'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* ── Logo Hero Section ── */
.top-image-bar {
  position: relative;
  z-index: 10;
  width: min(340px, 70vw);
  margin: 8px auto 0;
}

.logo-hero {
  position: relative;
  z-index: 10;
  max-width: 820px;
  margin: 0 auto;
  padding: 6px 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  background: transparent;
}

.top-words-image {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.top-intro {
  display: inline-block;
  margin-bottom: 14px;
  padding: 10px 14px;
  background: rgba(245, 245, 240, 0.9);
  border: 2px solid rgba(0, 0, 0, 0.75);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  border-radius: 2px;
}

.top-presented {
  font-family: 'Fredoka One', sans-serif;
  font-size: clamp(14px, 2.4vw, 20px);
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.top-tour-title {
  font-family: 'Caveat', cursive;
  font-size: clamp(34px, 6vw, 58px);
  color: var(--black);
  line-height: 1;
  margin-top: 6px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.main-logo {
  max-width: 118px;
  width: 100%;
  height: auto;
  margin-top: 2px;
  filter: drop-shadow(1px 2px 6px rgba(0, 0, 0, 0.28));
  animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Dates Section ── */
.dates-section {
  position: relative;
  z-index: 10;
  max-width: 760px;
  margin: -2px auto 46px;
  padding: 26px 230px 30px 20px;
  background-image: url("../56.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid var(--black);
  box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.1);
  transform: rotate(-0.35deg);
  overflow: hidden;
}

.dates-heading {
  text-align: center;
  margin-bottom: 14px;
  line-height: 1;
}

.dates-presented {
  display: block;
  font-family: 'Fredoka One', sans-serif;
  font-size: clamp(16px, 2.2vw, 30px);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.dates-title {
  display: block;
  margin-top: 4px;
  font-family: 'Patrick Hand', 'Caveat', cursive;
  font-size: clamp(30px, 4.8vw, 52px);
  color: var(--red);
  letter-spacing: 0.3px;
  line-height: 0.95;
  text-transform: uppercase;
}

.scribble-line {
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--black), transparent);
  margin: 20px auto;
  opacity: 0.5;
}

.dates-container {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 360px;
  gap: 22px;
  margin: 0;
  position: relative;
  z-index: 2;
}

.album-promo {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 120px;
  height: auto;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  transform: rotate(-4deg);
  filter: grayscale(10%) contrast(1.02);
  opacity: 0.88;
  z-index: 1;
  pointer-events: none;
}

.dates-column {
  animation: slideIn 0.6s ease-out;
}

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

.month-header {
  font-family: 'Fredoka One', sans-serif;
  font-size: 24px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
  border-bottom: 3px solid var(--red);
  padding-bottom: 10px;
  font-weight: bold;
  text-shadow: none;
}

.dates-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dates-list li {
  font-family: 'Caveat', cursive;
  font-size: 21px;
  color: var(--black);
  line-height: 1.4;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  text-shadow: none;
}

.tour-city {
  margin-right: 4px;
}

.ticket-link {
  font-family: 'Fredoka One', sans-serif;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  border: 1.5px solid var(--red);
  padding: 2px 8px;
  border-radius: 999px;
  line-height: 1.3;
}

.ticket-link:hover {
  background: var(--red);
  color: #fff;
}

.tiger-overlay {
  position: absolute;
  right: -82px;
  top: 70px;
  width: min(520px, 68vw);
  height: auto;
  display: block;
  opacity: 0.85;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
  pointer-events: none;
  z-index: 1;
}

.dates-list li::before {
  content: none;
}

.circled {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border: 2px solid var(--red);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka One', sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: var(--red);
  margin-right: 0;
  min-width: 28px;
  flex-shrink: 0;
}

.artist-signature {
  display: none;
}

/* ── Symbol Section ── */
.symbol-section {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 60px 20px;
  background: transparent;
  margin-top: 40px;
}

.bottom-symbol {
  max-width: 300px;
  width: 100%;
  height: auto;
  filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.3));
  animation: fadeInUp 0.8s ease-out;
}

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

.presenter-label-bottom {
  font-family: 'Fredoka One', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  margin-top: 30px;
  font-weight: bold;
  display: block;
  opacity: 1;
}

/* ── Decorative Elements ── */
.hand-drawn-elements {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 120px;
  height: 120px;
  z-index: 5;
  opacity: 0.3;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
  border-top: 3px dashed var(--red);
  background: var(--off-white);
  margin-top: 60px;
}

.footer p {
  font-family: 'Fredoka One', sans-serif;
  font-size: 16px;
  color: var(--black);
  letter-spacing: 1px;
  font-weight: bold;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }

  .top-image-bar {
    width: min(260px, 62vw);
    margin-top: 6px;
  }

  .logo-hero {
    padding: 4px 8px 0;
    gap: 3px;
  }

  .top-words-image {
    width: 100%;
    max-width: 260px;
    height: auto;
  }

  .top-intro {
    margin-bottom: 10px;
    padding: 8px 10px;
  }

  .top-presented {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .top-tour-title {
    font-size: clamp(28px, 10vw, 42px);
    margin-top: 4px;
  }

  .main-logo {
    max-width: 84px;
  }

  .dates-section {
    margin: -2px 10px 28px;
    padding: 18px 12px 18px;
    transform: none;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
  }

  .dates-heading {
    margin-bottom: 10px;
  }

  .dates-presented {
    font-size: clamp(12px, 4vw, 16px);
    letter-spacing: 1px;
  }

  .dates-title {
    margin-top: 4px;
    font-size: clamp(24px, 8.5vw, 36px);
  }

  .dates-container {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 14px;
    margin: 0;
  }

  .album-promo {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: min(96px, 25vw);
    margin: 0;
    transform: rotate(-3deg);
    display: block;
    opacity: 0.62;
  }

  .month-header {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .dates-list {
    gap: 10px;
  }

  .dates-list li {
    font-size: 18px;
    line-height: 1.2;
  }

  .tiger-overlay {
    right: -34px;
    top: 118px;
    width: 230px;
    opacity: 0.6;
    filter: none;
  }

  .circled {
    width: 26px;
    height: 26px;
    min-width: 26px;
    font-size: 11px;
  }

  .symbol-section {
    padding: 36px 12px;
    margin-top: 24px;
  }

  .bottom-symbol {
    max-width: 220px;
  }

  .presenter-label-bottom {
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 18px;
  }

  .footer {
    padding: 24px 12px;
    margin-top: 28px;
  }

  .footer p {
    font-size: 14px;
  }

  .artist-signature {
    font-size: 36px;
    text-align: center;
    padding-right: 0;
  }

  .hand-drawn-elements {
    display: none;
  }
}
