/* =====================================================
   VIVIENNE WESTWOOD WEBSITE
   MASTER STYLESHEET
===================================================== */


/* =====================================================
   01. GLOBAL STYLES
===================================================== */

/* =========================
   FONTS
========================= */

@font-face {
  font-family: "Title";
  src: url("../assets/fonts/AlteHaasGroteskBold.ttf")
    format("truetype");
}

@font-face {
  font-family: "Body";
  src: url("../assets/fonts/Montserrat-VariableFont_wght.ttf")
    format("truetype");
}


/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;

  background: #000000;
  color: #000000;

  font-family: "Body", Arial, sans-serif;
}


/* =========================
   FIXED WEBSITE FRAME
========================= */

.website-frame {
  position: relative;

  width: 100%;
  min-height: 100vh;

  transform-origin: center center;
}


/* =====================================================
   02. SHARED SITE COMPONENTS
===================================================== */

/* =========================
   PAGE COLOURS
========================= */

body.home .website-frame {
  background: #ffffff;
}

body.history .website-frame {
  background: #EFE8DE;
}

body.punk .website-frame {
  background: #70232D;
}

body.craftsmanship .website-frame {
  background: #EFE8DE;
}

body.collections .website-frame {
  background: #ffffff;
}


/* =========================
   NAVBAR
========================= */

.navbar {
  position: absolute;
  top: 37.5px;
  left: 50%;
  z-index: 100;

  display: flex;
  align-items: center;
  gap: 44px;

  transform: translateX(-50%);
}

.navbar a {
  color: #000000;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;

  text-decoration: none;
  text-transform: uppercase;

  white-space: nowrap;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.navbar a:hover {
  opacity: 1;
  transform: translateY(-2px);
  border-bottom: 3px solid #000000;
}

.navbar a.active {
  opacity: 1;
  border-bottom: 3px solid #000000;
}


/* ---------- Shared Hero ---------- */

/* =========================
   HERO
========================= */

.hero {
  position: relative;

  width: 100%;
  min-height: 720px;
}


/* ---------- Shared Responsive / Audio / Logo / Loader / Page Titles ---------- */

/* =========================
   SMALLER SCREEN SCALING
========================= */

@media (max-width: 100%), (max-height: 100%) {
  .website-frame {
    transform: scale(
      min(
        calc(100vw / 100%),
        calc(100vh / 100%)
      )
    );
  }
}

/* =========================
   AUDIO CONTROL
========================= */

.audio-control {
  position: absolute;
  top: 30px;
  right: 44px;
  z-index: 999;

  display: flex;
  align-items: center;
  gap: 15px;
}

.audio-button {
  width: 30px;
  height: 30px;

  padding: 0;
  border: none;
  background: transparent;

  display: flex;
  justify-content: center;
  align-items: center;

  flex-shrink: 0;
  cursor: pointer;
}

#audio-icon {
  display: block;

  width: 50px;
  height: 50px;

  object-fit: contain;
}

.audio-button:hover {
   transform: scale(1.1); 
}

.music-credit {
  opacity: 0;
  transform: translateX(-6px);

  color: #000000;

  font-family: "Body", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;

  white-space: nowrap;
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.audio-control:hover .music-credit {
  opacity: 1;
  transform: translateX(0);
}

.site-logo {
  position: absolute;
  top: 15px;
  left: 153px;
  z-index: 999;

  display: block;
  text-decoration: none;
  border-bottom: none;
}

.site-logo img {
  display: block;
  width: 65px;
  height: auto;

  transform: scale(1);
  transform-origin: center;

  transition: transform 0.25s ease;
}

.site-logo:hover img {
  transform: scale(1.1);
}

/* ========================= */
/* LOADING SCREEN */
/* ========================= */

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#loader img {
    width: 650px;
    max-width: 90%;
    display: block;
}

/* Shared animated page titles */
.page-title-animation {
  display: block;
  width: 2500px;
  max-width: 80%;
  height: auto;
  margin: 0 auto;
  position: relative;
  top: -120px;
  z-index: 10;
}


/* =====================================================
   03. SHARED TIMELINE COMPONENTS
   Used by History Punk and Craftsmanship
===================================================== */

.history-text {
  position: absolute;
  left: 180px;
  top: 420px;
  width: 600px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.8;
  text-align: justify;
}

.history-text p {
  margin-bottom: 28px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 100px;
  width: 1250px;
  max-width: 90%;
  margin: 120px auto 140px;
  align-items: start;
}

/* Hide the original large years but keep their space */
.timeline-year {
  visibility: hidden;

  font-family: "Title", Arial, sans-serif;
  font-size: 170px;
  font-weight: 700;
  line-height: 0.9;

  position: relative;
  left: 35px;
}

.rolling-year {
  position: fixed;
  top: 50%;
  left: calc((100vw - 1250px) / 2 + 35px);

  width: 430px;
  height: 155px;

  transform: translateY(-50%);

  z-index: 50;

  display: flex;
  align-items: flex-start;
  gap: 6px;

  overflow: visible;
  pointer-events: none;

  font-family: "Title", Arial, sans-serif;
  font-size: 170px;
  font-weight: 700;
  line-height: 0.9;

  opacity: 0;
  visibility: hidden;
}

.rolling-century {
  display: block;
  flex: 0 0 auto;
  margin-left: -10px;

  height: 155px;

  font-family: "Title", Arial, sans-serif;
  font-size: 170px;
  font-weight: 700;
  line-height: 0.9;
}

.rolling-ending {
  position: relative;
  display: block;
  flex: 0 0 230px;

  height: 155px;

  font-family: "Title", Arial, sans-serif;
  font-size: 170px;
  font-weight: 700;
  line-height: 0.9;
}

.single-ending {
  display: block;

  font-family: "Title", Arial, sans-serif;
  font-size: 170px;
  font-weight: 700;
  line-height: 0.9;
}

.ending-range {
  position: absolute;
  top: 0px;          /* adjust 6-12px until it aligns */
  left: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;

  font-family: "Title", Arial, sans-serif;
  font-size: 170px;
  font-weight: 700;
  line-height: 0.9;
}

.ending-line {
  display: block;

  width: 5px;
  height: 55px;

  background: #000000;
}

/* Timeline text */
.timeline-content {
  font-family: "Body", Arial, sans-serif;
  width: 735px;
  max-width: none;
  margin-left: 50px;
  padding-top: 10px;
  text-align: justify;
}

.timeline-content h2 {
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 20px;
}

.timeline-content p {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.8;
  margin-right: 20px;
}

/* =====================================================
   CRAFTSMANSHIP PAGE OVERRIDES
===================================================== */


/* =====================================================
   FIXED MATERIAL / DESIGN LABELS
===================================================== */

body.craftsmanship .materials-rolling-label,
body.craftsmanship .design-rolling-label {
  width: 360px;

  font-size: 65px;
  line-height: 0.88;
  letter-spacing: -0.03em;
}


/* =====================================================
   MATERIALS INTRODUCTION
===================================================== */

body.craftsmanship .craft-intro {
  width: 980px;
  max-width: 85%;

  margin: 0 auto 90px;

  font-family: "Body", Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.8;

  text-align: justify;
}


/* =====================================================
   MATERIAL AND DESIGN CONTENT POSITION
===================================================== */

body.craftsmanship .craft-content {
  width: 735px;
  max-width: none;

  margin-left: -10px;
  padding-top: 10px;

  transform: translateX(120px);

  font-family: "Body", Arial, sans-serif;
  text-align: justify;
}


/* Content line */

body.craftsmanship .craft-heading-line {
  width: 715px;
  height: 3px;

  margin-bottom: 30px;

  background: #000000;
}


/* Content heading */

body.craftsmanship .craft-content h2 {
  margin: 0 0 20px;

  font-size: 40px;
  font-weight: 600;
}


/* Content paragraph */

body.craftsmanship .craft-content p {
  margin: 0 20px 0 0;

  font-size: 22px;
  font-weight: 500;
  line-height: 1.8;

  text-align: justify;
}


/* =====================================================
   MATERIAL AND DESIGN IMAGES
===================================================== */

body.craftsmanship .craft-image {
  display: block;

  width: 600px;
  height: 430px;
  max-width: 100%;

  margin-top: 30px;

  object-fit: contain;
  object-position: left center;

  cursor: pointer;

  transition: transform 0.25s ease;
}

body.craftsmanship .craft-image:hover {
  transform: scale(1.05);
}


/* Image credit */

body.craftsmanship .craft-content .image-credit {
  margin: 8px 0 0;

  font-family: "Body", Arial, sans-serif;
  font-size: 12px !important;
  font-weight: 400;
  line-height: 1.3;

  color: #777777;
  text-align: left;
}


/* =====================================================
   DESIGN RANSOM SECTION
===================================================== */

body.craftsmanship .design-section-heading {
  width: 100%;
  max-width: none;

  margin: 80px auto 100px;
  padding: 0;

  text-align: center;
}


/* Design ransom image */

body.craftsmanship #design-animation {
  position: static;
  top: auto;

  display: block;

  width: 670px;
  max-width: 60%;
  height: 190px;

  margin: 0 auto 70px;

  object-fit: cover;
  object-position: center;
}


/* =====================================================
   DESIGN INTRODUCTION
===================================================== */

body.craftsmanship .design-intro {
  width: 980px;
  max-width: 85%;

  margin: 0 auto;

  text-align: center;
}

body.craftsmanship .design-intro p {
  width: 100%;
  max-width: none;

  margin: 0 auto;

  font-family: "Body", Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.8;

  text-align: center;
}


/* =====================================================
   FIRST MATERIAL / DESIGN ITEM SPACING
===================================================== */

body.craftsmanship .material-first-item {
  margin-top: 110px;
}

body.craftsmanship .design-first-item {
  margin-top: 110px;
}
/* =====================================================
   SHARED TIMELINE IMAGES
===================================================== */

.timeline-image {
  display: block;

  width: 650px;
height: 470px;
  max-width: 100%;

  margin-top: 5px;

  object-fit: contain;
  object-position: left center;

  cursor: pointer;
  transition: transform 0.25s ease;
}

.timeline-image:hover {
  transform: scale(1.05);
}

/* Image credits */

.timeline-content .image-credit {
  margin: 8px 0 0;

  font-family: "Body", Arial, sans-serif;
  font-size: 12px !important;
  font-weight: 400;
  line-height: 1.3;

  color: #777777;
  text-align: left;
}

/* White credits on Punk page only */

body.punk .timeline-content .image-credit {
  color: rgba(255, 255, 255, 0.65);
}

/* =========================
   HISTORY IMAGE POPUP
========================= */

body.history .popup-image {
  display: block;
  cursor: pointer;
  transition: transform 0.25s ease;
}

body.history .popup-image:hover {
  transform: scale(1.05);
}

body.history #image-popup {
  position: fixed;
  inset: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(0, 0, 0, 0.85);

  opacity: 0;
  visibility: hidden;

  z-index: 9999;
}

body.history #popup-img {
  display: block;

  max-width: 85vw;
  max-height: 85vh;

  width: auto;
  height: auto;

  object-fit: contain;
}

body.history #popup-close {
  position: absolute;

  top: 40px;
  right: 40px;

  display: block;

  width: 90px;
  height: auto;

  cursor: pointer;

  transition: transform 0.25s ease;
}

body.history #popup-close:hover {
  transform: scale(1.15);
}

.scroll-indicator {
  position: absolute;
  top: 850px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;

  margin: 0;
  padding: 0;
  z-index: 20;
}

/* Create space before the 1941 content */
.timeline-item[data-ending="41"] {
  margin-top: 320px;
}
.scroll-text {
  margin: 0 0 16px;

  font-family: "Title", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #000000;
}

.scroll-arrow-wrap {
  display: block;
}

.scroll-arrow {
  display: block;
  width: 90px;
  height: auto;

  cursor: pointer;
  transition: transform 0.25s ease;
}

.scroll-arrow:hover {
  transform: scale(1.15);
}

.timeline-heading-line {
  width: 715px;
  height: 3px;
  background: #000000;
  margin-bottom: 30px;
}

#backToTop {
  position: fixed;
  right: 40px;
  bottom: 40px;

  background: none;
  border: none;
  padding: 0;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;

  z-index: 999;

  transition: opacity 0.3s ease;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

#backToTop img {
  display: block;
  width: 90px;      /* adjust if needed */
  height: auto;

  transition: transform 0.25s ease;
}

#backToTop:hover img {
  transform: scale(1.1);
}


/* =====================================================
   04. SHARED IMAGE POPUP
   Used by History, Punk and Craftsmanship
===================================================== */

/* =========================
   IMAGE POPUP
========================= */

#image-popup {
  position: fixed;
  inset: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(0, 0, 0, 0.85);

  opacity: 0;
  visibility: hidden;

  z-index: 9999;
}

#popup-img {
  display: block;

  max-width: 85vw;
  max-height: 85vh;

  object-fit: contain;
}

#popup-close {
  position: absolute;

  top: 40px;
  right: 40px;

  display: block;

  width: 90px;
  height: auto;

  cursor: pointer;

  transition: transform 0.25s ease;
}

#popup-close:hover {
  transform: scale(1.15);
}


/* =========================
   CLICKABLE TIMELINE IMAGES
========================= */

.popup-image {
  display: block;

  cursor: pointer;

  transition: transform 0.25s ease;
}

.popup-image:hover {
  transform: scale(1.05);
}


/* =====================================================
   05. HOME PAGE
===================================================== */

/* ---------- Background Title ---------- */

/* =========================
   BACKGROUND TITLE
========================= */
/* =====================================================
   HOME PAGE ONLY — NO SCROLL
===================================================== */

html:has(body.home),
body.home {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body.home .website-frame {
  width: 100%;
  height: 100vh;
  min-height: 0;
  overflow: hidden;
}

body.home .hero {
  height: 100vh;
  min-height: 0;
  overflow: hidden;
}

.background-title {
  position: absolute;
  top: 150px;
  left: 42%;
  transform: translateX(-50%);
  text-align: left;

  z-index: 1;

  color: #000000;

  font-family: "Title", Arial, sans-serif;
  font-size: 170px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.020em;
}

/* ---------- Collage ---------- */

/* =========================
   COLLAGE
========================= */

.collage {
  position: absolute;
  inset: 0;
  z-index: 2;

  width: 100%;
  height: 100%;

  overflow: hidden;
}

.collage-img {
  position: absolute;
  display: block;

  width: auto;
  height: auto;
  max-width: none;

  opacity: 1;

  object-fit: contain;
}


/* =========================
   IMAGE POSITIONS
   Change left, top and width
========================= */

.image-1 {
  top: 96px;
  left: 895px;
  z-index: 1;
  width: 600px;
}

.image-2 {
  top: 450px;
  left: 40px;
  z-index: 2;
  width: 450px;
}

.image-3 {
  top: 230px;
  left: 740px;
  z-index: 3;
  width: 250px;
}

.image-4 {
  top: 250px;
  left: 170px;
  z-index: 6;
  width: 150px;
}

.image-5 {
  left: 550px;
  bottom: 0;
  width: 700px;
  z-index: 5;
}

.image-6 {
  top: 105px;
  left: 110px;
  z-index: 4;
  width: 320px;
}

.image-7 {
  top: 300px;
  left: 350px;
  z-index: 7;
  width: 320px;
}

.image-8 {
  top: 270px;
  left: 970px;
  z-index: 8;
  width: 350px;
}

.image-9 {
  bottom: 0;
  left: 1225px;
  z-index: 9;
  width: 245px;
}

.image-10 {
  bottom: 0;
  left: 650px;
  z-index: 10;
  width: 250px;
}

.image-11 {
  top: 140px;
  left: 485px;
  z-index: 11;

  width: 300px;
}

.image-12 {
  left: 140px;
  bottom: 0;
  width:260px;
  z-index: 12;
}


/* =====================================================
   06. HISTORY PAGE
===================================================== */

/* History-specific rules are grouped within the shared
   timeline section above:
   - .history-text
   - .scroll-indicator
   - first 1941 spacing
   - history popup uses the shared popup section
*/


/* =====================================================
   07. PUNK PAGE
===================================================== */

/* ===== Punk page navbar ===== */

body.punk .navbar a {
  color: #ffffff;
}

body.punk .navbar a:hover,
body.punk .navbar a.active {
  color: #ffffff;
  border-bottom: 2.5px solid #ffffff;
}

body.punk .page-title-animation {
  max-width: 60%;
  width: 680px;
  top: -30px;
}

body.craftsmanship .page-title-animation {
  width: 670px;
  max-width: 60%;
  top: -120px;
}

body.punk .punk-hero {
  position: relative;
  width: 100%;
  height: 500px;
  min-height: 0;
  overflow: visible;
}

.punk-collage-section {
  position: relative;
  width: 100%;
  margin-top: -40px;
  padding: 0 0 80px;
}

.punk-collage {
  position: relative;
  width: 1920px;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
}

.punk-collage-part {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  object-fit: contain;

  will-change: transform, opacity;
}

/* =========================
   PUNK TIMELINE OVERRIDES
========================= */

body.punk .timeline-item {
  color: #ffffff;
}

/* More space after the collage before 1971 */
body.punk .punk-first-timeline {
  margin-top: 220px;
}

/* White timeline line */
body.punk .timeline-heading-line {
  width: 715px;
  height: 3px;
  margin-bottom: 30px;
  background: #ffffff;
}

/* White timeline text */
body.punk .timeline-content h2,
body.punk .timeline-content p {
  color: #ffffff;
}

/* Softer image credits */
body.punk .timeline-content .image-credit {
  color: rgba(255, 255, 255, 0.65);
}

/* White rolling years */
body.punk .rolling-year,
body.punk .rolling-century,
body.punk .rolling-ending,
body.punk .single-ending,
body.punk .ending-range {
  color: #ffffff;
}

/* White connecting line for year ranges, if used later */
body.punk .ending-line {
  background: #ffffff;
}

/* Keep hidden original years taking up layout space */
body.punk .timeline-year {
  visibility: hidden;
}

/* ---------- Punk Scroll Indicator ---------- */

.punk-scroll-indicator {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100%;

  margin: 50px auto 0px;
  padding: 0;

  z-index: 20;
}

.punk-scroll-text {
  margin: 0 0 12px;

  font-family: "Title", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.punk-scroll-arrow-wrap {
  display: block;
}

.punk-scroll-arrow {
  display: block;
  width: 90px;
  height: auto;

  cursor: pointer;
  transition: transform 0.25s ease;
}

.punk-scroll-arrow:hover {
  transform: scale(1.15);
}


/* =====================================================
   08. CRAFTSMANSHIP PAGE
===================================================== */

/* =========================
   CRAFTSMANSHIP PAGE
========================= */

body.craftsmanship .craftsmanship-hero {
  position: relative;
  width: 100%;
  height: 360px;
  min-height: 0;
  overflow: visible;
}

/* Introduction */

.craft-intro {
  width: 760px;
  max-width: 80%;

  margin: -30px auto 90px;

  font-family: "Body", Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.8;
  text-align: justify;
}

/* Material and design item layout */

.craft-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;

  width: 1250px;
  max-width: 90%;

  margin: 80px auto 110px;

  align-items: start;
}

/* Invisible placeholder for the fixed label */

.craft-label-space {
  visibility: hidden;

  position: relative;
  left: 35px;

  font-family: "Title", Arial, sans-serif;
  font-size: 68px;
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
}

/* Fixed changing material and design name */

.craft-rolling-label {
  position: fixed;

  top: 50%;
  left: calc((100vw - 1250px) / 2 + 35px);

  width: 300px;

  transform: translateY(-50%);

  z-index: 50;
  pointer-events: none;

  font-family: "Title", Arial, sans-serif;
  font-size: 68px;
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;

  white-space: pre-line;

  opacity: 0;
  visibility: hidden;
}

/* First material starts closer to the introduction */

.material-first-item {
  margin-top: 110px;
}

/* Right-side content */

.craft-content {
  width: 735px;
  max-width: none;

  margin-left: 30px;
  padding-top: 10px;

  font-family: "Body", Arial, sans-serif;
  text-align: justify;
}

.craft-heading-line {
  width: 715px;
  height: 3px;

  margin-bottom: 30px;

  background: #000000;
}

.craft-content h2 {
  margin: 0 0 20px;

  font-size: 40px;
  font-weight: 600;
}

.craft-content p {
  margin: 0 20px 0 0;

  font-size: 22px;
  font-weight: 500;
  line-height: 1.8;
}

/* Images */

.craft-image {
  display: block;

  width: 500px;
  max-width: 100%;
  height: auto;

  margin-top: 30px;
}

.craft-content .image-credit {
  margin-top: 8px;

  font-size: 10px !important;
  font-weight: 400;
  line-height: 1.3;

  color: #777777;
  text-align: left;
}

/* Design heading */

.design-section-heading {
  width: 1250px;
  max-width: 90%;

  margin: 180px auto 120px;

  text-align: center;
}

.design-section-heading h2 {
  margin: 0 0 30px;

  font-family: "Title", Arial, sans-serif;
  font-size: 130px;
  font-weight: 700;
  line-height: 0.9;
}

.design-section-heading p {
  width: 730px;
  max-width: 80%;

  margin: 0 auto;

  font-family: "Body", Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.8;
  text-align: justify;
}

/* First design starts closer to the Design heading */

.design-first-item {
  margin-top: 110px;
}


/* =====================================================
   09. COLLECTIONS PAGE
===================================================== */

/* =========================
   COLLECTIONS PAGE
========================= */

body.collections {
  width: 100%;
  height: 100vh;
  margin: 0;

  background: #ffffff;
  overflow: hidden;
}

body.collections .website-frame {
  position: relative;

  width: 100%;
  height: 100vh;
  min-height: 0;

  overflow: hidden;
}

/* =========================
   COLLECTIONS HERO
========================= */

body.collections .collections-hero {
  position: relative;

  width: 100%;
  height: 100%;
  min-height: 0;

  overflow: hidden;
}

/* Runway Icons title */

body.collections .collections-title {
  position: absolute;

  top: 150px;
  left: 34.8%;

  transform: translateX(-50%);

  z-index: 1;

  margin: 0;

  color: #000000;

  font-family: "Title", Arial, sans-serif;
  font-size: 170px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;

  text-align: left;
  white-space: nowrap;
}

/* =========================
   CENTRAL PHOTO STACK
========================= */

body.collections .collection-stack {
  position: absolute;

  top: 57%;
  left: 50%;

  width: 610px;
  height: 540px;

  transform: translate(-50%, -50%);

  z-index: 2;
  overflow: visible;
}

body.collections .collection-card {
  position: absolute;

  top: 45%;
  left: 50%;

  width: 1600px;
  height: 1600px;

  margin: 0;
  padding: 0;

  background: transparent;
  box-shadow: none;

  opacity: 0;

  transform-origin: center;
  will-change: opacity;
}

body.collections .collection-card img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}

/* =========================
   STACKING ORDER
========================= */

body.collections .collection-card-1  { z-index: 1; }
body.collections .collection-card-2  { z-index: 2; }
body.collections .collection-card-3  { z-index: 3; }
body.collections .collection-card-4  { z-index: 4; }
body.collections .collection-card-5  { z-index: 5; }
body.collections .collection-card-6  { z-index: 6; }
body.collections .collection-card-7  { z-index: 7; }
body.collections .collection-card-8  { z-index: 8; }
body.collections .collection-card-9  { z-index: 9; }
body.collections .collection-card-10 { z-index: 10; }
body.collections .collection-card-11 { z-index: 11; }
body.collections .collection-card-12 { z-index: 12; }
body.collections .collection-card-13 { z-index: 13; }
body.collections .collection-card-14 { z-index: 14; }
body.collections .collection-card-15 { z-index: 15; }
body.collections .collection-card-16 { z-index: 16; }
body.collections .collection-card-17 { z-index: 17; }
body.collections .collection-card-18 { z-index: 18; }
body.collections .collection-card-19 { z-index: 19; }
body.collections .collection-card-20 { z-index: 20; }
body.collections .collection-card-21 { z-index: 21; }
body.collections .collection-card-22 { z-index: 22; }
body.collections .collection-card-23 { z-index: 23; }
body.collections .collection-card-24 { z-index: 24; }
body.collections .collection-card-25 { z-index: 25; }
body.collections .collection-card-26 { z-index: 26; }
body.collections .collection-card-27 { z-index: 27; }
body.collections .collection-card-28 { z-index: 28; }
body.collections .collection-card-29 { z-index: 29; }
body.collections .collection-card-30 { z-index: 30; }
body.collections .collection-card-31 { z-index: 31; }
body.collections .collection-card-32 { z-index: 32; }
body.collections .collection-card-33 { z-index: 33; }
body.collections .collection-card-34 { z-index: 34; }