/* === Общие === */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #c9a84c;
  --gold-dark: #a07c2e;
  --navy: #1a1f2e;
  --dark: #0f1218;
  --cream: #f5f0e8;
  --red: #8b1a1a;
  --text: #2c2c2c;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

/* === Hero === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(135deg, #0f1218 0%, #1a1f2e 50%, #2a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(201,168,76,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139,26,26,0.15) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  animation: fadeInUp 1.2s ease-out;
}

.hero h1 {
  font-size: 55px;
  color: var(--gold);
  text-shadow: 0 4px 20px rgba(201,168,76,0.4);
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: #b0a890;
  font-style: italic;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  border-radius: 4px;
  transition: all 0.3s;
  letter-spacing: 1px;
}

.btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: var(--gold);
  animation: bounce 2s infinite;
  opacity: 0.6;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Навбар === */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,18,24,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  color: var(--gold);
  font-weight: bold;
  font-size: 1.2rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: #b0a890;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}

nav a:hover { color: var(--gold); }

/* === Секции === */
.section {
  padding: 80px 2rem;
}

.section-dark {
  background: var(--navy);
  color: var(--cream);
}

.section-accent {
  background: linear-gradient(135deg, var(--dark) 0%, #2a1a1a 100%);
  color: var(--cream);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

h2 {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 1px;
}

.section-dark h2,
.section-accent h2 {
  color: var(--gold);
}

/* === Таймлайн === */
.timeline {
  position: relative;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--red));
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease-out;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -48px;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--cream);
  box-shadow: 0 0 10px rgba(201,168,76,0.5);
}

.timeline-date {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}

.timeline-content h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #555;
}

/* === Снаряжение === */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.equip-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.equip-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.equip-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.15);
}

.equip-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.equip-card h3 {
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.equip-card p {
  color: #a09880;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === Карточки знаменитых === */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  border-top: 4px solid var(--gold);
  opacity: 0;
  transform: translateY(30px);
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.card-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.card p {
  color: #666;
  font-size: 0.95rem;
}

/* === Факты === */
.facts-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fact {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  transition: all 0.3s;
  opacity: 0;
  transform: translateX(-30px);
}

.fact.visible {
  opacity: 1;
  transform: translateX(0);
}

.fact:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.fact-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--gold);
  opacity: 0.5;
  min-width: 50px;
}

.fact p {
  color: #c0b8a0;
  line-height: 1.7;
}

.fact strong {
  color: var(--gold);
}

/* === Footer === */
footer {
  background: var(--dark);
  color: #666;
  text-align: center;
  padding: 2rem;
  border-top: 2px solid var(--gold);
  font-size: 0.9rem;
}

/* === Адаптив === */
@media (max-width: 768px) {
  .nav-inner { flex-direction: column; height: auto; padding: 1rem; gap: 0.5rem; }
  nav ul { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .timeline { padding-left: 40px; }
  .timeline::before { left: 10px; }
  .timeline-item::before { left: -38px; }
  .section { padding: 50px 1rem; }
  .equipment-grid { grid-template-columns: 1fr; }
  .fact { flex-direction: column; gap: 0.5rem; }
}
