/* ===== AIDAN GALLERY — STYLE.CSS ===== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --black: #000000;
  --white: #ffffff;
  --gray-light: rgba(255,255,255,0.12);
  --gray-mid: rgba(255,255,255,0.45);
  --gray-dark: rgba(255,255,255,0.75);
  --accent: #e8c84a;
  --font: 'Poppins', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.95), transparent);
  transition: background 0.4s;
}
nav.scrolled {
  background: rgba(0,0,0,0.97);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo img { width: 48px; height: 48px; filter: invert(1); opacity: 0.9; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }

.lang-toggle { display: flex; gap: 4px; align-items: center; }
.lang-toggle a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 4px 9px;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}
.lang-toggle a:hover, .lang-toggle a.active { border-color: var(--accent); color: var(--accent); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.menu-toggle span { display: block; width: 24px; height: 1px; background: var(--white); transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px 80px;
}
.hero-title {
  font-size: clamp(48px, 9vw, 110px);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.1;
}
.hero-subtitle {
  font-size: clamp(11px, 1.5vw, 14px);
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ===== SECTIONS ===== */
section { padding: 56px 48px; max-width: 1200px; margin: 0 auto; }
section.full-width { max-width: none; padding-left: 0; padding-right: 0; }

.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--white);
}
.divider { width: 48px; height: 1px; background: var(--accent); margin-bottom: 32px; }

/* ===== HOW TO AR ===== */
.ar-instructions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 32px;
}
.ar-step { text-align: center; }
.ar-step-number {
  font-size: 44px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.ar-step h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--white);
}
.ar-step p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ===== GALLERY SECTIONS ===== */
.gallery-section {
  padding: 48px 48px 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-section + .gallery-section {
  padding-top: 32px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 3px;
  margin-top: 28px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.4s;
  opacity: 0.82;
}
.gallery-item:hover img { transform: scale(1.07); opacity: 1; }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

/* ===== MANARA SECTION ===== */
.manara-section {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 48px 48px 40px;
}
.manara-inner { max-width: 1400px; margin: 0 auto; }
.manara-note {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin-bottom: 28px;
  line-height: 1.8;
}

/* ===== COLLECTOR NOTE ===== */
.collector-note {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 2px solid var(--accent);
  padding: 48px;
  max-width: 760px;
  margin: 0 auto;
}
.collector-note p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  margin-bottom: 18px;
}
.collector-note p:last-child { margin-bottom: 0; }
.collector-note .signature { font-style: italic; color: var(--accent); font-size: 18px; margin-top: 28px; }

/* ===== WHAT IS AR ===== */
.ar-text { max-width: 760px; }
.ar-text p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.72); line-height: 1.9; }

/* ===== FOOTER ===== */
footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 56px 48px 36px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo img { width: 48px; filter: invert(1); opacity: 0.55; margin-bottom: 14px; }
.footer-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.footer-text { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.9; }
.footer-text a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer-text a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.25); letter-spacing: 0.04em; }

/* ===== FOOTER SITEMAP ===== */
.footer-sitemap {
  max-width: 1200px;
  margin: 0 auto 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-sitemap-col p {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.footer-sitemap-col ul {
  list-style: none;
}
.footer-sitemap-col ul li a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  transition: color 0.3s;
  line-height: 2;
  display: block;
}
.footer-sitemap-col ul li a:hover { color: var(--white); }

/* ===== BIO PAGE ===== */
.bio-hero {
  height: 38vh;
  min-height: 300px;
  background: #080808;
  display: flex;
  align-items: flex-end;
  padding: 0 48px 40px;
}
.bio-content { max-width: 1200px; margin: 0 auto; }
.bio-text {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  max-width: 760px;
  margin-bottom: 20px;
}
.bio-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.bio-video-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
  transition: border-color 0.3s, color 0.3s;
}
.bio-video-link:hover { border-color: var(--accent); color: var(--white); }
.bio-video-link::before { content: '▶'; color: var(--accent); font-size: 10px; }
.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 32px 0;
}
.press-item img { width: 100%; aspect-ratio: 0.7; object-fit: cover; filter: grayscale(20%); transition: filter 0.4s; }
.press-item img:hover { filter: grayscale(0%); }
.events-list { list-style: none; columns: 2; gap: 40px; }
.events-list li {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  break-inside: avoid;
  line-height: 1.5;
}
.events-list li::before { content: '—'; color: var(--accent); margin-right: 8px; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.97);
    justify-content: center;
    align-items: center;
    gap: 28px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 15px; }
  .menu-toggle { display: flex; }
  section { padding: 36px 20px; }
  .gallery-section { padding: 32px 20px 20px; }
  .gallery-section + .gallery-section { padding-top: 20px; }
  .manara-section { padding: 36px 20px 28px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .events-list { columns: 1; }
  .collector-note { padding: 28px 20px; }
  footer { padding: 40px 20px 28px; }
  .bio-hero { padding: 0 20px 32px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ar-instructions { grid-template-columns: 1fr 1fr; gap: 24px; }
}