@font-face {
    font-family: 'Gotham';
    src: local('Gotham Book'), local('Gotham-Book'),
        url('../webfonts/Gotham-Book.woff2') format('woff2'),
        url('../webfonts/Gotham-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: local('Gotham Bold'), local('Gotham-Bold'),
        url('../webfonts/Gotham-Bold.woff2') format('woff2'),
        url('../webfonts/Gotham-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root{
  --bg: #4d4d4f;
  --bg-darker: #2f333a;
  --text: #ffffff;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Gotham, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* Sections */
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}
#hero {
  position: relative;
  z-index: 1;
}
#editions {
  position: relative;
  z-index: 2; 
}

.logo {
  font-family: Gotham, Arial, sans-serif;
  font-weight: 700;
  font-size: 72px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.lead {
  max-width: 690px;
  opacity: .95;
  line-height: 1.6;
  font-size: 14px;
}
.scroll-hint {
  font-size: 14px;
  margin-top: 16px;
}
.vline {
  width: 2px; height: 34px;
  background: #fff;
  margin: 20px auto 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .logo { font-size: 52px; }
}

/* Editions grid */
#editions .col { padding: 0 15px; }
#editions h4 { font-family: Gotham, Arial, sans-serif; font-size:18px; font-weight: 700; margin-bottom: 6px; }
#editions p { font-size: 14px; }
#editions .link { font-size: 14px; color: var(--text); text-decoration: underline; }

/* Footer reveal */
#footer {
  background: var(--bg);
  color: var(--text);
  padding: 48px 0;
  text-align: center;
  position: relative;
  z-index: 0;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
#footer.in { transform: translateY(0); opacity: 1; }
#footer .circle {
  width: 120px; height: 120px; border-radius: 50%; border: 2px solid #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px; font-weight: 700;
}

/* Footer responsiveness */
@media (max-width: 700px) {
  #footer .circle { width: 100px; height: 100px; }
}

.logo svg {
  width: 295px;
  height: auto;
  fill: #fff;
}
.footer-logo svg {
  width: 100px;
  height: auto;
  fill: #fff;
}
.contact-info {
  font-size: 14px;
  line-height: 1.8;
}