:root {
  --bg-dark: #070304;
  --glow-red: rgba(220, 50, 50, 0.4);
  --glow-orange: rgba(255, 120, 50, 0.3);
  --glow-blue: rgba(40, 80, 220, 0.35);
  --glow-purple: rgba(130, 40, 200, 0.35);
  --glow-teal: rgba(20, 180, 160, 0.28);
  --glow-green: rgba(30, 160, 80, 0.25);
  --glass-bg: rgba(20, 20, 20, 0.6);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-main: #ffffff;
  --text-muted: #afafaf;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  background-color: var(--bg-dark);
  font-family: var(--font-body);
  color: var(--text-main);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 99999;
  transition: transform 0.1s ease, background 0.3s ease, width 0.2s ease, height 0.2s ease;
}

#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 99998;
  transition: transform 0.08s ease, width 0.35s ease, height 0.35s ease, border-color 0.3s ease, opacity 0.3s ease;
}

/* Cursor hover state — grows the ring & glows */
body.cursor-hover #cursor-dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 120, 50, 1);
  box-shadow: 0 0 12px rgba(255, 120, 50, 0.8);
}
body.cursor-hover #cursor-ring {
  width: 56px;
  height: 56px;
  border-color: rgba(255, 120, 50, 0.5);
}

/* Cursor click state */
body.cursor-click #cursor-dot {
  transform: translate(-50%, -50%) scale(0.6);
}
body.cursor-click #cursor-ring {
  transform: translate(-50%, -50%) scale(0.9);
}

/* Hide on touch devices */
@media (hover: none) and (pointer: coarse) {
  #cursor-dot, #cursor-ring {
    display: none;
  }
  body {
    cursor: auto;
  }
  *, *:hover {
    cursor: auto !important;
  }
}

/* Make all interactive elements hide the native cursor */
a, button, [onclick], .gallery-item, .filter-tab, .hero-card, .timeline-link, .story-close-simple, .lightbox-close {
  cursor: none !important;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 28% 38%, var(--glow-red) 0%, transparent 45%),
    radial-gradient(circle at 72% 62%, var(--glow-orange) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, var(--glow-blue) 0%, transparent 40%),
    radial-gradient(circle at 15% 75%, var(--glow-purple) 0%, transparent 40%),
    radial-gradient(circle at 55% 85%, var(--glow-teal) 0%, transparent 38%),
    radial-gradient(circle at 90% 80%, var(--glow-green) 0%, transparent 35%),
    #070304;
  filter: blur(60px);
  animation: pulseBg 14s infinite alternate ease-in-out;
}

@keyframes pulseBg {
  0%   { transform: scale(1)    translate(0,    0);    }
  25%  { transform: scale(1.04) translate(1.5%, 1%);   }
  50%  { transform: scale(1.07) translate(2%,   2.5%); }
  75%  { transform: scale(1.04) translate(-1%,  1.5%); }
  100% { transform: scale(1.1)  translate(-2%,  -2%);  }
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 35vh;
  background: linear-gradient(to bottom, transparent, var(--bg-dark));
  z-index: 1;
  pointer-events: none;
}

/* NAV */
.nav-minimal {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 2rem;
  box-sizing: border-box;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 4px;
}

.nav-links-new {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin: 0; padding: 0;
}

.nav-links-new a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links-new a:hover {
  color: var(--text-main);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 100;
}
.hamburger-line {
  display: block;
  width: 28px;
  height: 2px;
  background-color: white;
  transition: transform 0.3s, opacity 0.3s;
}

.buy-tickets-btn {
  background: white;
  color: black;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.buy-tickets-btn::before {
  content: "🎟";
  font-size: 1rem;
}

.buy-tickets-btn:hover {
  transform: scale(1.05);
  background: transparent;
  color: white;
  border-color: white;
  text-decoration: none;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20vh; /* space for bottom cards */
  width: 100%;
}

.huge-title {
  text-align: center;
  line-height: 0.85;
  margin-bottom: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-decorator {
  width: 40px; height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 2rem;
}

.title-top {
  font-family: var(--font-heading);
  font-size: 13vw;
  font-weight: 800;
  letter-spacing: -3px;
  color: white;
  margin-left: -5vw;
}

.title-bottom {
  font-family: var(--font-heading);
  font-size: 13vw;
  font-weight: 800;
  letter-spacing: -3px;
  color: rgba(255, 255, 255, 0.4);
  margin-right: -5vw;
  margin-top: -2vw;
  mix-blend-mode: overlay;
}

.visualizer {
  display: flex;
  gap: 4px;
  height: 24px;
  align-items: center;
  margin: 3rem 0;
  opacity: 0.7;
}

.visualizer .bar {
  width: 2px;
  background: white;
  border-radius: 2px;
  animation: equalize 1.5s infinite;
}
.visualizer .bar:nth-child(1) { height: 10px; animation-delay: -1.9s; }
.visualizer .bar:nth-child(2) { height: 20px; animation-delay: -1.0s; }
.visualizer .bar:nth-child(3) { height: 15px; animation-delay: -1.2s; }
.visualizer .bar:nth-child(4) { height: 24px; animation-delay: -1.5s; }
.visualizer .bar:nth-child(5) { height: 8px; animation-delay: -2.3s; }
.visualizer .bar:nth-child(6) { height: 18px; animation-delay: -1.7s; }
.visualizer .bar:nth-child(7) { height: 12px; animation-delay: -1.1s; }
.visualizer .bar:nth-child(8) { height: 22px; animation-delay: -1.4s; }
.visualizer .bar:nth-child(9) { height: 16px; animation-delay: -1.8s; }
.visualizer .bar:nth-child(10) { height: 10px; animation-delay: -1.3s; }
.visualizer .bar:nth-child(11) { height: 20px; animation-delay: -1.6s; }
.visualizer .bar:nth-child(12) { height: 14px; animation-delay: -1.9s; }
.visualizer .bar:nth-child(13) { height: 8px; animation-delay: -1.2s; }
.visualizer .bar:nth-child(14) { height: 18px; animation-delay: -2.1s; }
.visualizer .bar:nth-child(15) { height: 12px; animation-delay: -1.5s; }

@keyframes equalize {
  0% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
  100% { transform: scaleY(0.4); }
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* SOCIAL ICONS ROW */
.social-icons-row {
  margin-top: 2.5rem;
  display: flex;
  gap: 0.9rem;
  position: relative;
  z-index: 10;
  align-items: center;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}

.social-icon-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.social-icon-btn svg {
  display: block;
  flex-shrink: 0;
}

/* HERO CARDS */
.hero-cards {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 1.5rem;
  width: 90%;
  max-width: 1200px;
}

.hero-card {
  flex: 1;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s, border-color 0.3s;
  overflow: hidden;
  position: relative;
}

.hero-card:hover {
  transform: translateY(-8px);
  background: rgba(40, 40, 40, 0.7);
  border-color: rgba(255, 255, 255, 0.3);
}

.card-category {
  writing-mode: vertical-rl;
  transform: scale(-1);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--text-muted);
  padding-right: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  align-self: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: white;
  margin: 0.3rem 0;
  font-weight: 600;
}

.card-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.card-arrow {
  color: var(--text-muted);
  font-size: 1.5rem;
  font-weight: 300;
  padding-left: 0.5rem;
  display: flex;
  align-items: center;
  transition: transform 0.3s;
}

.hero-card:hover .card-arrow {
  transform: translateX(5px);
  color: white;
}

/* Prevent any inherited link text-decoration on card content */
.hero-card,
.hero-card:hover,
.hero-card:visited,
.hero-card:active,
.hero-card *,
.hero-card:hover * {
  text-decoration: none !important;
}

@media screen and (max-width: 900px) {
  .hero-cards {
    flex-direction: column;
    align-items: center;
    bottom: 0;
    position: relative;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 3rem;
    padding-bottom: 3rem;
  }
  .hero-card {
    width: 85%;
    max-width: 450px;
    box-sizing: border-box;
  }
  .hero-content {
    margin-bottom: 2rem;
    width: 100%;
  }
  .title-top {
    font-size: 15vw;
    margin-left: 0;
    text-align: center;
  }
  .title-bottom {
    font-size: 15vw;
    margin-right: 0;
    margin-top: -1.5rem;
    text-align: center;
  }
  .hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-align: center;
    padding: 0 1rem;
  }
  .nav-links-new, .nav-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Full screen mobile menu */
  .nav-minimal.mobile-open {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    min-height: 100vh;
    background: var(--bg-dark);
    z-index: 1000;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 8rem;
  }
  .nav-minimal.mobile-open .nav-logo {
    position: absolute;
    top: 2.5rem;
    left: 2rem;
  }
  .nav-minimal.mobile-open .mobile-menu-toggle {
    position: absolute;
    top: 2.5rem;
    right: 2rem;
    z-index: 1001;
  }
  .nav-minimal.mobile-open .nav-links-new {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    margin-top: 2rem;
  }
  .nav-minimal.mobile-open .nav-links-new a {
    font-size: 1.8rem;
    letter-spacing: 4px;
  }
  .nav-minimal.mobile-open .nav-cta {
    display: block;
  }
  .nav-minimal.mobile-open .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-minimal.mobile-open .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .nav-minimal.mobile-open .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* SECTION OVERRIDES TO MATCH NEW DESIGN */
.title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -1px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}
.section__text__p1 {
  font-family: var(--font-body);
  color: var(--text-muted) !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.btn-color-2 {
  font-family: var(--font-heading);
  border-radius: 50px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background: var(--glass-bg) !important;
  backdrop-filter: blur(5px);
  color: white !important;
  transition: all 0.3s !important;
}
.btn-color-2:hover {
  background: white !important;
  color: black !important;
  border-color: white !important;
}
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}
.glass-card:hover {
  background: rgba(40, 40, 40, 0.7);
  border-color: rgba(255, 255, 255, 0.3);
}
section {
  position: relative;
  z-index: 5;
  padding: 8rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

/* NEW GRID LAYOUTS */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}
.news-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.glass-input {
  width: 100%;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--glass-border);
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}
.glass-input:focus {
  border-bottom-color: white;
}
.card-image-large {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.card-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img1 .card-image-large img {
  object-fit: contain;
  background-color: white;
}

/* ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}
.about-pic-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0px;
  overflow: visible;
}
.pic-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 150%; height: 150%;
  background: radial-gradient(circle, var(--glow-red) 0%, transparent 60%);
  z-index: 0;
}
.about-pic-new {
  position: relative;
  z-index: 99;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 0px;
}
.about-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.about-card {
  text-align: center;
  padding: 1.5rem;
}
.card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}
.about-text-content p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* TIMELINE V2 - ALTERNATING STRUCTURE */
.experience-section {
  position: relative;
}
.exp-header {
  text-align: center;
  margin-bottom: 5rem;
}
.timeline-v2 {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 0;
}
.timeline-line {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--glow-red), var(--glow-orange), transparent);
  transform: translateX(-50%);
  z-index: 1;
}
.timeline-node {
  position: relative;
  width: 50%;
  padding: 0 40px;
  margin-bottom: 4rem;
  box-sizing: border-box;
  z-index: 2;
}
.timeline-node.left {
  left: 0;
  text-align: right;
  padding-right: 3rem;
}
.timeline-node.right {
  left: 50%;
  text-align: left;
  padding-left: 3rem;
}
.node-dot {
  position: absolute;
  top: 2rem;
  width: 24px;
  height: 24px;
  background: var(--bg-dark);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 20px var(--glow-red);
  transform: translateY(-50%);
  transition: transform 0.3s, box-shadow 0.3s;
}
.timeline-node.left .node-dot {
  right: -12px;
}
.timeline-node.right .node-dot {
  left: -12px;
}
.timeline-node:hover .node-dot {
  transform: translateY(-50%) scale(1.4);
  box-shadow: 0 0 30px var(--glow-orange);
}
.node-content {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.timeline-link {
  display: inline-block;
  margin-top: 0.4rem;
  color: rgba(255, 140, 90, 0.9);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 140, 90, 0.3);
  transition: color 0.2s, border-color 0.2s;
}
.timeline-link:hover {
  color: #fff;
  border-color: #fff;
}
.timeline-node:hover .node-content {
  transform: translateY(-10px);
}
.node-year {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-top: 0;
  margin-bottom: 1rem;
  display: inline-block;
  background: -webkit-linear-gradient(45deg, #ffffff, #888);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.node-content p {
  line-height: 1.6;
  color: var(--text-muted);
}

/* PICTURE GALLERY */
/* PICTURES SECTION */
.pictures-section {
  padding: 6rem 5%;
}
.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-tab {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-tab:hover,
.filter-tab.active {
  background: white;
  color: black;
  border-color: white;
}
.gallery-masonry {
  columns: 4;
  column-gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 2rem 1.2rem 1.2rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  transform: none;
}
.gallery-overlay span {
  color: white;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-content {
  position: relative;
  max-width: 80vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox-caption {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-align: center;
}
.lightbox-close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.lightbox-close:hover {
  background: white;
  color: black;
  transform: rotate(90deg);
}

@media screen and (max-width: 900px) {
  .gallery-masonry {
    columns: 2;
  }
  .lightbox-content {
    max-width: 95vw;
  }
}

/* STORY DIALOG MODAL */
.story-dialog {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.story-dialog.active {
  opacity: 1;
  pointer-events: all;
}
.story-dialog-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #030303; 
  z-index: 0;
}
.story-dialog-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 4rem 2rem;
  box-sizing: border-box;
  color: white;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.story-new-layout {
  max-width: 750px;
  text-align: center;
  margin: 0 auto;
}
.story-close-simple {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  border-radius: 0;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-close-simple:hover {
  background: transparent;
  color: #888;
  transform: scale(1.1);
}
.story-image {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.story-image:hover {
  transform: none;
}
.story-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
  text-align: justify;
}
.story-caption {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media screen and (max-width: 900px) {
  .story-dialog-content {
    padding: 6rem 1rem 3rem 1rem;
    align-items: flex-start;
  }
  .story-new-layout {
    padding: 2rem;
    border-radius: 20px;
  }
  .story-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  .story-close-simple {
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* FOOTER */
hr {
  border: none;
  height: 1px;
  background: var(--glass-border);
  margin: 4rem 0;
}
footer {
  text-align: center;
  padding-bottom: 2rem;
  color: var(--text-muted);
}
footer a {
  color: white;
}

@media screen and (max-width: 900px) {
  /* ---- GLOBAL ---- */
  section {
    padding: 4rem 5% !important;
  }
  .title {
    font-size: 2.2rem !important;
  }

  /* ---- ABOUT ---- */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .about-cards-row {
    grid-template-columns: 1fr !important;
  }
  .about-pic-container {
    max-width: 320px;
    margin: 0 auto;
    border-radius: 0px;
  }

  /* ---- WHAT'S NEW / NEWS ---- */
  .news-grid,
  .news-cards-container {
    grid-template-columns: 1fr !important;
  }
  .news-card {
    max-width: 100%;
  }

  /* ---- EXPERIENCE TIMELINE ---- */
  .timeline-v2 {
    padding: 0 0 2rem 0;
  }
  .timeline-line {
    left: 16px !important;
  }
  .timeline-node {
    width: 100% !important;
    left: 0 !important;
    right: auto !important;
    text-align: left !important;
    padding-left: 50px !important;
    padding-right: 0 !important;
    margin-bottom: 2rem;
  }
  .node-dot {
    left: 4px !important;
    right: auto !important;
    top: 1.5rem !important;
    transform: none !important;
  }
  .node-year {
    font-size: 1.3rem !important;
  }
  .glass-card {
    padding: 1.2rem !important;
  }

  /* ---- GALLERY ---- */
  .gallery-masonry {
    columns: 2 !important;
    column-gap: 0.6rem;
  }
  .gallery-item {
    margin-bottom: 0.6rem;
    border-radius: 10px;
  }
  .gallery-filter-tabs {
    gap: 0.6rem;
    margin-bottom: 2rem;
  }
  .filter-tab {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
  }
}


/* Extra small phones */
@media screen and (max-width: 480px) {
  section {
    padding: 3rem 4% !important;
  }
  .title-top, .title-bottom {
    font-size: 18vw !important;
  }
  .hero-subtitle {
    font-size: 0.7rem !important;
  }

  .title-bottom {
    margin-top: -1.1rem;
  }
  
  .hero-card {
    width: 95% !important;
  }
  .nav-logo {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }
  .about-pic-container {
    aspect-ratio: auto !important;
    max-width: 260px !important;
    max-height: 320px;
  }
  .gallery-masonry {
    columns: 1 !important;
  }
  .lightbox-content {
    max-width: 95vw;
  }
  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .node-year {
    font-size: 1.1rem !important;
  }
  .timeline-link {
    font-size: 0.8rem;
  }
}
