/* ===== Variables ===== */
:root {
  --gold: #D4AF37;
  --gold-light: #FFD700;
  --gold-dark: #B8960C;
  --black: #0A0A0A;
  --black-light: #141414;
  --black-lighter: #1E1E1E;
  --black-border: #2A2A2A;
  --white: #F8FAFC;
  --grey: #94A3B8;
  --grey-light: #CBD5E1;
}

/* ===== Reset ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold {
  color: var(--gold-light);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--black-border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-lg {
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 12px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.header.scrolled {
  border-bottom-color: var(--black-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--gold);
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* ===== Hero ===== */
.hero {
  padding: 140px 0 80px;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hero-text {
  text-align: left;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--grey);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-platforms {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--grey);
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--black-lighter);
  border: 1px solid var(--black-border);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-light);
}

/* Hero Image Gallery */
.hero-image {
  position: relative;
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.hero-img {
  border-radius: 16px;
  object-fit: cover;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero-img-1 {
  grid-row: 1 / 3;
  height: 380px;
}

.hero-img-2 {
  height: 182px;
}

.hero-img-3 {
  height: 182px;
}

/* ===== Sections ===== */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--gold-light);
}

.section-subtitle {
  font-size: 17px;
  color: var(--grey);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 32px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ===== Features ===== */
.features {
  padding: 40px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--black-light);
  border: 1px solid var(--black-border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.6;
}

/* ===== Showcase Gallery ===== */
.showcase {
  padding: 40px 0;
  background: var(--black-light);
}

.showcase-image {
  max-width: 1120px;
  margin: 0 auto;
}

.showcase-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

/* ===== How It Works ===== */
.how-it-works {
  padding: 40px 0;
  background: var(--black-light);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.step-number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--black);
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.6;
}

.step-connector {
  width: 80px;
  height: 2px;
  background: var(--black-border);
  margin-top: 28px;
  flex-shrink: 0;
}

/* ===== For Photographers ===== */
.photographers {
  padding: 40px 0;
}

.photographers-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.photographers-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.photographers-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gold-light);
}

.photographers-text > p {
  font-size: 17px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 28px;
}

.photographers-list {
  list-style: none;
  margin-bottom: 36px;
}

.photographers-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--grey-light);
}

.photographers-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* ===== Perfect For ===== */
.events {
  padding: 40px 0;
  background: var(--black-light);
}

.event-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.event-type-card {
  background: var(--black);
  border: 1px solid var(--black-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.event-type-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.event-type-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.event-type-card h3 {
  font-size: 17px;
  font-weight: 600;
  padding: 16px 20px 8px;
}

.event-type-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
  padding: 0 20px 20px;
}

.event-highlight {
  text-align: center;
}

.event-highlight p {
  font-size: 17px;
  color: var(--grey);
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 40px 0;
  text-align: center;
  background: radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gold-light);
}

.cta-content p {
  font-size: 17px;
  color: var(--grey);
  margin-bottom: 36px;
}

/* ===== Footer ===== */
.footer {
  padding: 64px 0 0;
  border-top: 1px solid var(--black-border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.footer-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--grey);
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--black-border);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--grey);
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--black-border);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-platforms {
    justify-content: center;
  }

  .hero-gallery {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-img-1 {
    height: 280px;
  }

  .hero-img-2, .hero-img-3 {
    height: 132px;
  }

  .photographers-content {
    grid-template-columns: 1fr;
  }

  .photographers-image img {
    height: 320px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    gap: 32px;
  }

  .step-connector {
    width: 2px;
    height: 32px;
    margin: 0 auto;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .feature-card {
    padding: 24px;
  }

  .event-tags {
    gap: 8px;
  }

  .event-tag {
    padding: 8px 16px;
    font-size: 13px;
  }
}
