@import './landing.css';

/* ============================================================
   AWWWARDS-STYLE TYPOGRAPHIC PRELOADER
   ============================================================ */
#lp-page-loader {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loader-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.loader-line {
  overflow: hidden;
  height: clamp(32px, 8vw, 72px);
}

.loader-text-item {
  display: block;
  font-family: 'Akira Expanded', sans-serif;
  font-size: clamp(26px, 6vw, 64px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  transform: translateY(100%);
}

.loader-progress {
  position: absolute;
  bottom: 40px;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.2em;
}

/* ============================================================
   HEADER BANNER (PREVENT INITIAL JUMP)
   ============================================================ */
.lp-artisans-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #0c0c0c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 9980;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-60px);
}

.lp-header-title {
  font-family: 'ThccHandwritten', sans-serif;
  font-size: clamp(16px, 4vw, 24px);
  color: #ffffff;
  letter-spacing: 0.05em;
  margin: 0;
  text-align: center;
}

/* ============================================================
   SIDEBAR & CONTENT OVERRIDES (BREATHING ROOM)
   ============================================================ */
#lp-content {
  margin-top: 60px !important;
  padding-top: 40px;
  padding-left: var(--card-gap);
  padding-right: var(--card-gap);
  padding-bottom: calc(var(--card-gap) + 80px);
}

.lp-sidebar {
  pointer-events: all !important;
}

@media (min-width: 769px) {
  .lp-sidebar {
    top: 60px !important;
    height: calc(100vh - 60px) !important;
    transform: none !important;
    opacity: 0;
    /* Fade in on load */
  }
}

@media (max-width: 768px) {
  #lp-content {
    margin-top: 60px !important;
    padding-top: 24px;
    padding-left: var(--card-gap) !important;
    padding-right: var(--card-gap) !important;
  }
}

/* ============================================================
   HERO COVER BG SECTION
   ============================================================ */
.lp-rage-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 120px);
  min-height: 580px;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.7) 100%), url('../images/section/thcc_artist_theme_cover4.png');
  background-size: cover;
  background-position: center;
  border-radius: var(--card-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 32px;
  padding-bottom: 72px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: var(--card-gap);
  opacity: 0;
  /* GSAP slide reveal */
}

@media (max-width: 768px) {
  .lp-rage-hero {
    height: 70vh;
    min-height: 480px;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.7) 100%), url('../images/section/thcc_website_artist_cover_mobile.png');
    margin-top: 16px;
    justify-content: flex-end !important;
    padding-bottom: 48px !important;
  }
  .lp-rage-title {
    font-size: clamp(1.8rem, 6.0vw, 2.8rem) !important;
    margin-bottom: 24px !important;
  }
  .lp-btn-watch {
    padding: 12px 36px !important;
    font-size: 11px !important;
  }
}

.lp-rage-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.lp-rage-title {
  font-family: 'MarshalTheDead', 'Cityburn', sans-serif;
  font-size: clamp(2.4rem, 7.5vw, 6.2rem);
  font-weight: normal;
  color: var(--accent);
  margin: 0 0 32px 0;
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9), 0 0 35px rgba(255, 242, 0, 0.18);
  opacity: 0;
  transform: translateY(30px);
}

.lp-btn-watch {
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 16px 44px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  outline: none;
  opacity: 0;
  transform: translateY(20px);
}

.lp-btn-watch:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #0c0c0c;
}

.lp-btn-watch:active {
  transform: scale(0.96);
}

/* ============================================================
   EXPLANATION / RAUDRAM DETAIL SECTION
   ============================================================ */
.lp-rage-explain-section {
  width: 100%;
  margin: 90px 0;
  padding: 0 var(--card-gap);
}

@media (max-width: 768px) {
  .lp-rage-explain-section {
    margin: 50px 0;
    padding: 0;
  }
}

.lp-explain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .lp-explain-grid {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 72px;
  }
}

.lp-explain-left {
  text-align: left;
}

.lp-explain-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.lp-explain-h2 {
  font-family: 'Akira Expanded', sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 3.0rem);
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 24px 0;
  letter-spacing: -0.04em;
}

.lp-explain-para {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.lp-explain-para p {
  margin: 0;
}

/* Credits details card style */
.lp-credits-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--card-radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: left;
}

@media (max-width: 768px) {
  .lp-credits-card {
    padding: 30px;
    gap: 20px;
  }
}

.lp-credit-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-credit-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.lp-credit-val {
  font-family: 'Akira Expanded', sans-serif;
  font-size: clamp(12px, 1.5vw, 15px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}