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

/* Body Styling */
body {
  font-family: 'Orbitron', sans-serif;
  color: white;
  background-color: #000;
}

/* Header */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10002;
}

.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
  letter-spacing: 2px;
}

.menu-icon {
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.logo img {
  height: 20px; /* Adjust as needed */
  width: auto;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('../images/hero.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: bold;
}

.hero p {
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.cta-button {
  padding: 12px 28px;
  display: inline-block;
  border: 2px solid white;
  text-decoration: none;
  color: white;
  font-weight: bold;
  border-radius: 50px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: white;
  color: black;
}

/* Menu Overlay */
/* Menu Toggle Icons */
.menu-toggle {
  position: relative;
  z-index: 10000;
}

.menu-icon,
.close-icon {
  font-size: 28px;
  color: white;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.close-icon {
  display: none;
}

/* Menu Overlay Animation */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10001;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.menu-nav ul {
  list-style: none;
  text-align: center;
  margin-bottom: 60px;
}

.menu-nav ul li {
  margin: 20px 0;
}

.menu-nav ul li a {
  text-decoration: none;
  font-size: 28px;
  color: white;
  transition: color 0.3s ease;
}

.menu-nav ul li a:hover {
  color: grey;
}

.menu-logo img {
  height: 20px;
}

/* Page Title + Grids */
.page-title {
  background-color: black;
  color: white;
  text-align: center;
  padding: 100px 0 40px;
  font-size: 45px;
  font-weight: bold;
}

.roster-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 0 20px 60px;
  flex-wrap: wrap;
  background-color: black;
}

.artist-card {
  position: relative;
  overflow: hidden;
  flex: 1 1 30%;
  max-width: 400px;
  text-decoration: none;
}

.artist-card img {
  width: 100%;
  height: auto;
  display: block;
}

.artist-name {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  color: white;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

/* Footer */
.site-footer {
  background-color: #000000;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Helvetica Neue', sans-serif;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.mailing-list a {
  color: white;
  text-decoration: none;
  font-weight: bold; /* optional */
  font-family: 'Orbitron', sans-serif;
}

.mailing-list a:hover {
  color: #ccc; /* optional hover effect */
  text-decoration: underline; /* optional underline on hover */
}


.mailing-list form {
  display: flex;
  align-items: center;
  gap: 8px;
}

#emailInput {
  background-color: black;
  color: white;
  border: none;
  outline: none;
  font-size: 1rem;
  padding: 8px 12px;
  width: 250px;
  font-style: italic;
}

#emailInput::placeholder {
  color: white;
  opacity: 0.7;
}

.join-button {
  background-color: white;
  color: black;
  border: none;
  padding: 8px 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.join-button:hover {
  background-color: #ddd;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons img {
  width: auto;
  height: 30px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.footer-logo img {
  margin: 30px 0;
  width: 200px;
}

.footer-bottom {
  font-size: 14px;
  color: #ccc;
  margin-top: 10px;
  line-height: 1.6;
}

/* About / Generic Sections */
body.aboutus-body {
  margin: 0;
  font-family: 'orbitron', sans-serif;
  background-color: #000000;
  color: #ffffff;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.highlight-text {
  font-size: 40px;
  font-weight: 600;
}

.mission {
  background-color: #000000;
}

.mission-title {
  font-size: 40px;
  font-weight: bold;
  text-align: right;
  margin-bottom: 20px;
}

.mission-text {
  font-size: 30px;
  line-height: 1.6;
  text-align: center;
}

.vision {
  background-color: #000000;
}

.vision-title {
  font-size: 40px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 20px;
}

.vision-text {
  font-size: 30px;
  line-height: 1.6;
  text-align: center;
}

/* Each Section Full-Screen & Snappable */
section.fullscreen-section {
  height: 100vh !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

/* Ensure sections don't inherit global text-align */
section .container {
  text-align: center;
}

.first-highlight {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-down a {
  text-decoration: none;
}

.arrow {
  font-size: 36px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  display: block;
}

/* Bounce Animation (also used on Join the Fold link) */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    animation-timing-function: ease-in-out;
  }
  50% {
    transform: translateY(-10px);
    animation-timing-function: ease-in-out;
  }
}

.join-fold-link {
  color: white;
  text-decoration: underline;
  font-weight: bold;
  display: inline-block;
  animation: bounce 2s infinite;
}

.join-fold-link:hover {
  color: #ccc;
}

/* Portfolio grid */
.portfolio-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  padding: 0 20px 60px;
  flex-wrap: wrap;
}

.portfolio-card {
  max-width: 400px;
  text-align: center;
}

.portfolio-card img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.portfolio-caption {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  color: white;
  text-decoration: none;
  display: block;
  text-align: center;
  width: 100%;
}

/* === PRELUDE PAGE STYLES (updated) === */
.prelude-body {
  background-color: #000;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 0;
}

/* Work header */
.prelude-work {
  padding-top: 6rem;
}
.work-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.prelude-title {
  margin: 0;
  text-align: left;
  flex: 1;
  font-size: 4rem;
}

.no-time-to-explain-title {
  margin: 0;
  text-align: left;
  flex: 1;
  font-size: 4rem;
}
.prelude-work-description {
  text-align: right;
  flex: 1;
}
.prelude-subtitle {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.work-list {
  list-style: none;
  font-size: 1.25rem;
  line-height: 2rem;
  padding: 0;
}

/* New collage layout — non-overlapping grid */
.prelude-collage {
  background: #000;
  padding: 2rem 1rem 4rem;
}

.collage-grid {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.collage-cell {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.collage-item {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Visual balance: portraits vs square covers */
.portrait { aspect-ratio: 3 / 4; }
.square   { aspect-ratio: 1 / 1; }

/* Tablet */
@media (max-width: 900px) {
  .work-content {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }
  .prelude-title {
    font-size: 3rem;
  }

  .no-time-to-explain-title {
    font-size: 3rem;
  }
  .prelude-work-description {
    text-align: left;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .collage-grid {
    grid-template-columns: 1fr; /* stack images */
    gap: 16px;
  }
  .prelude-title {
    font-size: 2.5rem;
  }

  .no-time-to-explain-title {
    font-size: 2.5rem;
  }

  .work-list {
    font-size: 1.1rem;
    line-height: 1.8rem;
  }
}

/* Artist pages (RAWO / RUYI / NORA) */
.artist-page {
  background-color: #000;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  padding: 0;
  margin: 0;
}

.artist-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 4rem;
  min-height: 100vh;
  gap: 2rem;
  flex-wrap: wrap;
}

.artist-left {
  flex: 1;
  padding-right: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.artist-title {
  font-size: 4.375rem;
  font-weight: 800;
  margin-top: 4rem;  /* pushes title down */
  margin-bottom: 2rem;
}

.artist-bio {
  font-size: 1.125rem; /* 18px */
  line-height: 1.8;
  margin-bottom: 3.75rem; /* 60px */
}

.artist-credits p {
  font-size: 0.875rem; /* 14px */
  margin: 0.25rem 0;
}

.artist-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.artist-image {
  max-width: 100%;
  width: 25rem; /* 400px */
  object-fit: cover;
  margin-bottom: 1.25rem;
  border-radius: 0.5rem;
}

/* RESPONSIVENESS */
@media (max-width: 1024px) {
  .hero h1 { font-size: 32px; }
  .hero p  { font-size: 18px; }

  .artist-card { flex: 1 1 45%; }
  .portfolio-card { flex: 1 1 45%; }

  .mission-title,
  .vision-title { font-size: 32px; text-align: center; }

  .mission-text,
  .vision-text { font-size: 24px; }
}

@media (max-width: 768px) {
  header { padding: 15px 20px; }
  .logo { font-size: 20px; }
  .menu-icon { font-size: 24px; }

  .hero h1 { font-size: 28px; }
  .hero p  { font-size: 16px; }
  .cta-button { padding: 10px 20px; font-size: 16px; }

  .artist-card { flex: 1 1 100%; max-width: 100%; }
  .portfolio-card { max-width: 100%; }

  .highlight-text,
  .mission-title,
  .vision-title { font-size: 28px; }

  .mission-text,
  .vision-text { font-size: 20px; }

  .mailing-list { flex-direction: column; gap: 10px; }
  .footer-top { gap: 20px; }
  .social-icons img { width: 24px; height: 24px; }
  .footer-logo img { width: 150px; }

  .artist-section {
    flex-direction: column;
    padding: 2rem;
  }
  .artist-left,
  .artist-right {
    align-items: center;
    text-align: center;
    padding-right: 0;
  }
  .artist-title { font-size: 3rem; }
  .artist-bio { font-size: 1rem; }
  .artist-image { width: 100%; max-width: 20rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .hero p  { font-size: 14px; }
  .cta-button { font-size: 14px; padding: 8px 16px; }

  .menu-nav ul li a { font-size: 22px; }

  .page-title { font-size: 28px; padding: 80px 0 30px; }

  .portfolio-caption { font-size: 16px; }

  .highlight-text,
  .mission-title,
  .vision-title { font-size: 24px; }

  .mission-text,
  .vision-text { font-size: 18px; }

  .arrow { font-size: 28px; }
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

@media (max-width: 768px) {
  /* Container stays as a column stack */
  .prelude-work .container {
    flex-direction: column;
    align-items: stretch; /* allow left & right alignment independently */
  }

  /* PRELUDE title on the left */
  .prelude-title {
    font-size: 2.5rem;
    text-align: left;
    align-self: flex-start;
  }

  .no-time-to-explain-title {
    font-size: 2.5rem;
    text-align: left;
    align-self: flex-start;
  }

  /* WORK DONE list on the right */
  .prelude-work-description {
    text-align: right;
    align-self: flex-end;
    margin-top: 1.5rem;
  }
}

@keyframes flickerBlueWhite {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    color: white;
    text-shadow: 0 0 5px #00aaff, 0 0 10px #00aaff;
  }
  20%, 24%, 55% {
    color: #00aaff;
    text-shadow: 0 0 20px white, 0 0 30px #00aaff;
  }
}

.prelude-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 2rem;
  animation: flickerBlueWhite 2.5s infinite alternate;
}

.no-time-to-explain-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 2rem;
  animation: flickerBlueWhite 2.5s infinite alternate;
}

@keyframes flickerPurpleWhite {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    color: white;
    text-shadow: 0 0 5px #a020f0, 0 0 10px #a020f0; /* purple glow */
  }
  20%, 24%, 55% {
    color: #a020f0; /* replace with your exact purple shade */
    text-shadow: 0 0 20px white, 0 0 30px #a020f0;
  }
}

.no-time-to-explain-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 2rem;
  animation: flickerPurpleWhite 2.5s infinite alternate;
}

