/* ========================================= */
/* VARIABLES & BASE SETUP                    */
/* ========================================= */
:root {
  --bg-color: #0A0A0A; 
  --text-color: #FFFFFF;
  --line-color: #FFFFFF;
  --accent-color: #D4FF00; /* Neon Yellow for that professional rave look */
  
  --font-balboa: "balboa", sans-serif;
  --font-archivo: "archivo-black", sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-archivo);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ========================================= */
/* TOP NAVIGATION                            */
/* ========================================= */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 2px solid var(--line-color);
  background-color: var(--bg-color);
}

.header-logo-img {
  height: 80px; /* Adjust logo size here */
  width: auto;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hamburger-btn span {
  display: block; width: 40px; height: 4px;
  background-color: var(--text-color);
  transition: 0.2s;
}
.hamburger-btn:hover span { background-color: var(--accent-color); }

/* Overlay Menu */
.nav-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background-color: var(--bg-color); z-index: 1000;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.nav-overlay.active { opacity: 1; pointer-events: all; }
.close-menu-btn {
  position: absolute; top: 30px; right: 40px;
  background: none; border: none; color: white; font-size: 50px; cursor: pointer;
}
.menu-links { display: flex; flex-direction: column; gap: 20px; text-align: center; }
.menu-links a {
  color: var(--text-color); text-decoration: none;
  font-family: var(--font-balboa); font-size: 80px; font-weight: 900;
  text-transform: uppercase; line-height: 0.9;
}
.menu-links a:hover { color: var(--accent-color); }

/* ========================================= */
/* MAIN LAYOUT GRID                          */
/* ========================================= */
.ui-wrapper {
  flex-grow: 1;
  display: flex;
  padding: 40px;
}

.ui-grid {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr; 
  gap: 40px;
}

/* ========================================= */
/* LEFT PANEL: CONTROLS                      */
/* ========================================= */
.controls-panel { display: flex; flex-direction: column; }

.panel-header {
  font-family: var(--font-balboa);
  font-weight: 900;
  font-size: 55px; 
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.controls-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.control-item {
  border: 2px solid var(--line-color);
  border-radius: 12px;
  background-color: var(--bg-color);
  overflow: hidden;
}

/* Pills */
.control-pill {
  background-color: var(--text-color);
  color: var(--bg-color);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s;
}
.control-pill:hover { background-color: #E5E5E5; }

.pill-title {
  font-family: var(--font-balboa);
  font-weight: 900;
  font-size: 26px;
  text-transform: uppercase;
}

/* Arrow Animations */
.arrow-icon { 
  height: 16px; 
  filter: invert(1); 
  transition: transform 0.3s ease; 
}
.arrow-icon.rotated {
  transform: rotate(90deg); 
}

/* Dropdown Drawers */
.dropdown-drawer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: var(--bg-color);
}
.dropdown-drawer.open {
  max-height: 250px; 
  opacity: 1;
  border-top: 2px solid var(--line-color);
}

/* Custom Pro Slider */
.slider-wrapper { padding: 20px; display: flex; align-items: center; gap: 20px; }
.pro-slider {
  -webkit-appearance: none; width: 100%; height: 4px;
  background: var(--line-color); outline: none; border-radius: 2px;
}
.pro-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 24px; height: 24px;
  background: var(--accent-color); border: 2px solid black;
  border-radius: 50%; cursor: pointer;
}
.slider-readout { font-size: 18px; white-space: nowrap; }

/* Custom Drawer Buttons (Now wraps for 6 options) */
.drawer-options { display: flex; flex-wrap: wrap; padding: 15px; gap: 10px; }
.option-btn {
  flex: 1 1 calc(33% - 10px); 
  background: transparent; color: white;
  border: 2px solid white; border-radius: 8px; padding: 10px 5px;
  font-family: var(--font-archivo); font-size: 14px; cursor: pointer;
  text-transform: uppercase; transition: 0.2s;
}
.option-btn:hover { background: rgba(255,255,255,0.1); }
.option-btn.active { background: white; color: black; }

/* Custom Color Pickers */
.color-picker-wrapper { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.color-control { display: flex; justify-content: space-between; align-items: center; font-size: 16px; }
.pro-color-picker {
  -webkit-appearance: none; width: 80px; height: 40px;
  background: transparent; border: 2px solid white; border-radius: 8px; cursor: pointer; padding: 0;
}
.pro-color-picker::-webkit-color-swatch { border: none; border-radius: 6px; }

/* Custom Text Input */
.text-input-wrapper { padding: 20px; display: flex; }
.pro-text-input {
  width: 100%;
  padding: 15px;
  background-color: transparent;
  border: 2px solid var(--line-color);
  border-radius: 8px;
  color: white;
  font-family: var(--font-archivo);
  font-size: 18px;
  text-transform: uppercase;
}
.pro-text-input:focus {
  outline: none;
  border-color: var(--accent-color);
}

/* ACCENT BUTTONS */
.accent-btn {
  background-color: var(--accent-color);
  color: #000;
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  font-family: var(--font-balboa);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.accent-btn:hover {
  background-color: #000;
  color: var(--accent-color);
}

.massive-btn {
  font-size: 42px;
  padding: 20px;
  margin-top: auto;
}

/* ========================================= */
/* RIGHT PANEL: VISUALS                      */
/* ========================================= */
.output-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* The Projection Box */
.projection-container {
  border: 2px solid var(--line-color);
  border-radius: 12px;
  flex-grow: 1;
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.placeholder-text {
  font-family: var(--font-balboa);
  font-size: 32px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
}

.overlay-sticker {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 120px;
  z-index: 10;
}

/* Bottom Grid for Quote & Contact */
.bottom-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.quote-box {
  border: 2px solid var(--line-color);
  border-radius: 12px;
  padding: 25px;
  font-family: var(--font-balboa);
  font-weight: 900;
  font-size: 48px;
  line-height: 0.9;
  text-transform: uppercase;
}

.action-box { display: flex; }

.contact-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
}

/* Responsive */
@media (max-width: 1100px) {
  .ui-grid { grid-template-columns: 1fr; }
  .bottom-row { grid-template-columns: 1fr; }
  .projection-container { min-height: 400px; }
}

/* ========================================= */
/* EXPERIENCE PAGE (EDITORIAL STYLE)         */
/* ========================================= */

.experience-body {
  background-color: #111; /* Slightly lighter black for contrast against images */
}

.editorial-container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 100px; /* Big spacing between sections */
}

/* --- Typography Helpers --- */
.yellow-text { color: var(--accent-color); }
.rounded-image { width: 100%; height: auto; border-radius: 30px; object-fit: cover; }

/* --- Hero Section --- */
.editorial-hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.hero-kicker {
  font-family: var(--font-archivo);
  font-size: 18px;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-headline {
  font-family: var(--font-balboa);
  font-weight: 900;
  font-size: 85px;
  line-height: 0.85;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8); /* Slightly dimmed white */
}

.hero-subheadline {
  font-family: var(--font-balboa);
  font-weight: 900;
  font-size: 70px;
  line-height: 0.9;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4); /* Dimmed out white */
}

.hero-image-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end;
}

.hero-action {
  display: flex;
  gap: 15px;
}

/* Pill Buttons */
.pill-btn {
  border-radius: 50px;
  padding: 15px 40px;
  font-size: 20px;
  font-family: var(--font-archivo);
  font-weight: bold;
}

.icon-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  background: transparent;
  color: var(--accent-color);
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.2s;
}
.icon-btn:hover { background: var(--accent-color); color: black; }

/* --- Gallery Section --- */
.gallery-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}

.massive-title {
  font-family: var(--font-balboa);
  font-weight: 900;
  font-size: 150px;
  line-height: 0.8;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.gallery-subtext {
  font-family: var(--font-archivo);
  font-size: 16px;
  text-transform: uppercase;
  max-width: 400px;
  color: rgba(255,255,255,0.8);
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.gallery-card {
  position: relative;
  width: 100%;
}

.gallery-card img {
  height: 500px; /* Fixed height for consistent gallery look */
}

.card-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-date {
  font-family: var(--font-archivo);
  font-size: 20px;
  color: var(--accent-color);
  font-weight: bold;
}

.card-kicker {
  font-family: var(--font-archivo);
  font-size: 18px;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.card-title {
  font-family: var(--font-balboa);
  font-weight: 900;
  font-size: 60px;
  line-height: 0.9;
  text-transform: uppercase;
}

.card-btn {
  position: absolute;
  bottom: 40px;
  right: 40px;
}

/* Responsive tweaks for Editorial page */
@media (max-width: 1200px) {
  .editorial-hero, .gallery-section { grid-template-columns: 1fr; }
  .hero-headline { font-size: 60px; }
  .hero-subheadline { font-size: 50px; }
  .massive-title { font-size: 100px; }
  .gallery-card img { height: 400px; }
  
  
  /* ========================================= */
/* EXPLORE PAGE (SLIDESHOW STYLE)            */
/* ========================================= */

.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

/* Hide the images by default (JS handles showing them) */
.slide {
  display: none;
  position: relative;
}
/* Responsive Slideshow Images */
.big-slide-img {
  width: 100%;            /* Fills the container width perfectly */
  height: auto;           /* Automatically adjusts height based on width */
  aspect-ratio: 16 / 9;   /* Forces a perfect widescreen cinematic shape */
  object-fit: contain;    /* Ensures your whole photo fits inside the box */
  background-color: #000; /* Clean black letterboxing for any empty space */
  border-radius: 16px;
  border: 2px solid var(--line-color);
  display: block;
}

/* Optional: If you want the height to adapt to the screen automatically instead of a fixed 75vh, use this instead:
.big-slide-img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain; 
  border-radius: 30px;
  border: 2px solid var(--line-color);
  display: block;
}
*/

/* Slide Caption styling */
.slide-caption {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-family: var(--font-balboa);
  font-weight: 900;
  font-size: 50px;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.7); /* Dark background so text is readable */
  padding: 10px 30px;
  border-radius: 12px;
  border: 2px solid var(--line-color);
}

/* Slideshow Arrows */
.prev-slide, .next-slide {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 30px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s ease;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
}

/* Position Left / Right */
.next-slide { right: 30px; }
.prev-slide { left: 30px; }

/* Arrow Hover Effect */
.prev-slide:hover, .next-slide:hover {
  background-color: var(--accent-color);
  color: #000;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 0.6s;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* Responsive tweaks for Mobile */
@media (max-width: 900px) {
  .big-slide-img { height: 50vh; }
  .slide-caption { font-size: 30px; bottom: 20px; left: 20px; }
  .prev-slide, .next-slide { width: 50px; height: 50px; font-size: 20px; }
}
  
/* --- STRICT 2-COLUMN TEXT FIX --- */
.strict-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Forces exactly two equal columns side-by-side */
  gap: 50px; /* Space between the two columns */
  align-items: start;
}

.text-col {
  display: flex;
  flex-direction: column;
}

.text-col p {
  font-family: "archivo", sans-serif !important;
  font-weight: 300 !important; 
  font-size: 15px; /* Bumped up slightly for readability on wide screens */
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 24px;
  text-align: left;
}
/* ========================================= */
/* FINAL CSS - EXACT MOCKUP REPLICATION      */
/* ========================================= */

.essay-body-final {
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.essay-header-final {
  border-bottom: 2px solid #fff;
  padding: 15px 20px;
}

.logo-final {
  height: 40px;
  width: auto;
}

/* LAYOUT Container */
.layout-container-final {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

/* --- SIDEBAR --- */
.sidebar-final {
  width: 250px;
  flex-shrink: 0;
  border-right: 2px solid #fff;
  padding: 30px 20px;
  box-sizing: border-box;
}

.index-title-final {
  color: #dfff00;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.nav-links-final {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nav-links-final a {
  color: #fff;
  text-decoration: none;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  line-height: 1.3;
}

.pink-square-final {
  width: 18px;
  height: 18px;
  background-color: #ff99aa;
  margin-top: 50px;
}

/* --- MAIN CONTENT --- */
.main-content-final {
  flex-grow: 1;
  padding: 40px 60px 100px 50px;
  box-sizing: border-box;
}

.main-title-final {
  color: #dfff00;
  font-family: 'balboa', sans-serif;
  font-size: 55px;
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0 0 15px 0;
}

.main-quote-final {
  color: #fff;
  font-family: 'balboa', sans-serif;
  font-size: 32px;
  line-height: 1.1;
  font-weight: normal;
  margin: 0 0 50px 0;
}

/* Visuals */
.visuals-row-final {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  height: 250px;
}

.yellow-box-final {
  border: 3px solid #dfff00;
  border-radius: 6px;
  width: 380px;
  height: 100%;
}

.custom-arrow-final {
  height: 100%;
  width: 250px;
}

.section-title-final {
  color: #dfff00;
  font-family: 'balboa', sans-serif;
  font-size: 45px;
  margin: 0 0 20px 0;
}

    /* STRICT 2-COLUMN TEXT WITH DOTTED DIVIDER */
    .text-split {
      display: flex;
      /* Remove gap because the padding below will handle the spacing */
      gap: 0; 
    }
    
    .text-col {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    /* Add the dotted line to the right edge of the left column */
    .text-col:first-child {
      border-right: 1px dotted rgba(226,226,226,0.4); 
      padding-right: 35px; /* Spacing between the text and the dotted line */
    }

    /* Add equal spacing to the left edge of the right column */
    .text-col:last-child {
      padding-left: 35px; /* Spacing between the dotted line and the text */
    }


/* Paragraph Formatting */
.text-columns-final p {
  font-family: 'Archivo', sans-serif !important;
  font-weight: 300 !important;
  font-size: 14px !important;
  line-height: 1.45;
  color: #fff;
  margin-top: 0;
  margin-bottom: 22px;
  text-align: left;
} 