@charset "UTF-8";
/* CSS Document */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:  #224262;
  --cream: #FFFDE3;
  --lime:  #c8e44a;
  --pink:  #e84b8a;
  --mauve: #8b4c6e;
  --white: #ffffff;
  --dot:   #c8e44a;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Urbanist", sans-serif;
  background-color: #FFFDE3;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #FFFDE3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 75px;
}

.nav-logo {
  height: 45px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #224262;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover { opacity: 1; color: var(--lime); }

/* ─── BURGER NAV ─── */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #224262;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero-img {
  height: 875px;
  object-fit: cover;
}

/* ─── ABOUT SECTION ─── */
.about {
  background-color: var(--navy);
  color: var(--cream);
}

.about-label-img {
  display: block;
  margin: 0 auto;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.about-label-img:hover { opacity: 1; }

.about p {
  font-family: "Urbanist", sans-serif;
  line-height: 1.6;
  font-size: 1.1rem;
  color: var(--cream);
}

.about h1 {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ─── SECTION LABEL SVGS ─── */
.section-label-img {
  height: 250px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.about .section-label-img {
  height: 150px;
}

/* ─── ABOUT TEXT ─── */
.show-date {
  color: #F1728D;
  font-size: 45px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.show-heading {
  color: #B6CE4D;
  font-size: 35px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 6px;
  line-height: 1.3;
  text-transform: uppercase;
}

.event-time {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
}

.event-category { color: #F1728D; }

/* ─── DESIGNERS SECTION ─── */
.designers { background-color: #FFFDE3; }

.designer-placeholder {
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease;
}
.designer-placeholder:hover { transform: translateY(-5px); }

.navy-square {
  aspect-ratio: 1 / 1;
  width: 100%;
  background-color: #0d1b2a;
  border: 2px solid var(--lime);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.designer-headshot {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--lime);
  transition: all 0.2s ease;
}

.designer-placeholder:hover .designer-headshot {
  border-color: var(--pink);
  filter: grayscale(0%);
}

.designer-placeholder:hover .navy-square {
  background-color: #1a2a4a;
  border-color: var(--pink);
  transform: scale(1.02);
}

.designer-name {
  font-family: 'Apparat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--navy);
  text-align: center;
}

/* ─── DESIGNER MODAL ─── */
.designer-modal-content {
  background-color: #f5f5dc;
  border: none;
  border-radius: 4px;
  padding: 2rem;
  position: relative;
}

.modal-close-x {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: transparent;
  border: 2px solid #b6cf4f;
  color: #b6cf4f;
  width: 36px;
  height: 36px;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 2px;
}
.modal-close-x:hover { background: #b6cf4f; color: #1a2a4a; }

.modal-nav-arrows {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.modal-arrow {
  background: transparent;
  border: 2px solid #b6cf4f;
  color: #b6cf4f;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.modal-arrow:hover { background: #b6cf4f; color: #1a2a4a; }

.designer-modal-body {
  display: flex;
  gap: 2rem;
  padding-top: 3rem;
}

.designer-photo-col {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.designer-photo {
  width: 100%;
  height: 275px;
  object-fit: cover;
  filter: grayscale(100%);
  border-radius: 2px;
}

.designer-socials {
  display: flex;
  gap: 0.75rem;
  font-size: 30px;
}
.designer-socials a { color: #224262; transition: opacity 0.2s; }
.designer-socials a:hover { opacity: 0.6; }

.designer-info-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.designer-modal-name { line-height: 0.5; }

.modal-firstname {
  font-family: "Urbanist", sans-serif;
  font-size: 35px;
  font-weight: 700;
  color: #f2728d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-lastname {
  font-family: "Urbanist", sans-serif;
  font-size: 58px;
  font-weight: 900;
  color: #f2728d;
  text-transform: uppercase;
  line-height: 0;
}

.modal-dot {
  font-size: 95px;
  font-weight: 900;
  color: #224262;
}

.designer-modal-bio {
  font-size: 0.85rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.designer-portfolio-preview {
  position: relative;
  background: #224262;
  height: 200px;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.portfolio-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 2px solid #b6cf4f;
  color: #b6cf4f;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  opacity: 1;
  z-index: 5;
}
.portfolio-arrow:hover { background: #b6cf4f; color: #f5f5dc; }
.left-arrow  { left: 8px; }
.right-arrow { right: 8px; }

/* ─── CREW MODAL ─── */
.crew-modal-content {
  background-color: #f5f5dc;
  border: none;
  border-radius: 4px;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.crew-modal-photo-wrap {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.crew-modal-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.crew-modal-info {
  padding: 1.5rem 2rem 2rem;
}

.crew-modal-name-block {
  line-height: 0.75;
  margin-bottom: 20px;
}

.crew-modal-role {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1a2a4a;
  margin: 0 0 0.75rem 0;
}

.crew-modal-bio-text {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin: 0 0 0.5rem 0;
}

.crew-modal-content .modal-close-x,
.crew-modal-content .modal-nav-arrows {
  z-index: 20;
}

.crew-placeholder {
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease;
}
.crew-placeholder:hover { transform: translateY(-5px); }

.crew-modal-role { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #1a2a4a; margin: 0 0 0.5rem 0; }

/* ─── FOOTER ─── */
footer .footer-text { font-weight: 700; }

/* ══════════════════════════════════════════
   RESPONSIVE — all mobile rules in one place
   ══════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Nav */
  nav { padding: 0 16px; height: 60px; }
  .nav-logo { height: 32px; }
  .burger-btn { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #FFFDE3;
    padding: 1.5rem 2rem;
    gap: 1.5rem;
    z-index: 999;
    border-bottom: 2px solid var(--lime);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    list-style: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 14px; }

  /* Hero */
  .hero-img { height: 450px; }

  /* About section */
  #show.about {
    margin-bottom: 0 !important;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  /* Section SVGs */
  .section-label-img { height: 130px; }
  .about .section-label-img { height: 80px; }

  /* About text */
  .show-date    { font-size: 28px; letter-spacing: 4px; }
  .show-heading { font-size: 18px; letter-spacing: 3px; }
  .event-time   { font-size: 16px; }

  /* Designer & crew grid padding */
  .row.g-4.px-5.mx-5,
  #crewGrid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Designer modal — keep side by side like desktop screenshot */
  .modal-dialog {
    margin: 0.25rem;
    max-width: calc(100vw - 0.5rem);
  }

  .designer-modal-content {
    padding: 0.75rem;
    max-height: 92vh;
    overflow-y: auto;
  }

  .crew-modal-content {
    max-height: 92vh;
    overflow-y: auto;
  }

  .designer-modal-body {
    flex-direction: row;
    gap: 0.75rem;
    padding: 2.5rem 0.25rem 0.25rem;
    align-items: flex-start;
  }

  .designer-photo-col {
    flex: 0 0 38%;
    width: 38%;
  }

  .designer-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center top;
  }

  .designer-socials {
    font-size: 1rem;
    gap: 0.4rem;
    margin-top: 0.5rem;
    justify-content: center;
  }

  .designer-info-col {
    flex: 1;
    gap: 0.4rem;
    min-width: 0;
  }

  .designer-modal-name { line-height: 1; }
  .modal-firstname { font-size: 0.85rem !important; }
  .modal-lastname  { font-size: 1.4rem !important; line-height: 1 !important; }
  .modal-dot       { font-size: 1.4rem !important; }

  .designer-modal-bio {
    font-size: 0.65rem;
    line-height: 1.4;
  }

  .designer-portfolio-preview { height: 110px; }

  .modal-close-x,
  .modal-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  /* Crew modal */
  .crew-modal-photo-wrap { height: 200px; }
  .crew-modal-info { padding: 0.75rem 1rem 1rem; }
  .crew-modal-role { font-size: 11px; letter-spacing: 0.05em; }
  .crew-modal-bio-text { font-size: 12px; }

  footer { padding: 20px 16px; }
}

@media (max-width: 576px) {
  /* Designers — 1 column */
  #designerGrid .col-6 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* Crew — 1 column */
  #crewGrid .col-6 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

@media (max-width: 480px) {
  .hero-img { height: 300px; }
  .section-label-img { height: 90px; }
  .about .section-label-img { height: 60px; }
  .show-date    { font-size: 22px; letter-spacing: 2px; }
  .show-heading { font-size: 15px; letter-spacing: 2px; }
  .event-time   { font-size: 14px; }
}