/* The Egoli Industrial Theme - 2026 */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Oswald:wght@400;600;700&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --gold: #D4AF37;
  --black: #1A1A1A;
  --purple: #8800C7;
  --grey: #F0F0F0;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--grey);
  color: var(--black);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navigation */
header {
  background-color: var(--black);
  color: var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 70px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 2px;
}

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

.nav-links a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

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

.hamburger {
  display: block;
  font-size: 32px;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--black);
  transition: right 0.3s ease;
  z-index: 2000;
  padding: 20px;
}

.mobile-drawer.active {
  right: 0;
}

.close-drawer {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 36px;
  cursor: pointer;
  float: right;
  width: 40px;
  height: 40px;
}

.mobile-drawer ul {
  list-style: none;
  margin-top: 80px;
}

.mobile-drawer li {
  margin: 30px 0;
}

.mobile-drawer a {
  color: var(--gold);
  text-decoration: none;
  font-size: 24px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
}

/* Desktop Navigation */
@media (min-width: 769px) {
  .nav-links {
    display: flex;
  }
  
  .hamburger {
    display: none;
  }
  
  .mobile-drawer {
    display: none;
  }
}

/* Hero Section */
.hero {
  height: 60vh;
  background: linear-gradient(rgba(26, 26, 26, 0.4), rgba(26, 26, 26, 0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231A1A1A" width="1200" height="600"/><path fill="%23D4AF37" opacity="0.1" d="M0 400 L100 380 L200 390 L300 370 L400 385 L500 375 L600 380 L700 390 L800 375 L900 385 L1000 380 L1100 390 L1200 385 L1200 600 L0 600 Z"/></svg>');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
}

.hero h1 {
  font-size: clamp(40px, 8vw, 80px);
  color: var(--gold);
  text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
}

.hero p {
  font-size: clamp(16px, 3vw, 24px);
  margin-top: 20px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
}

/* Content Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.card {
  background: var(--white);
  border: 3px solid var(--gold);
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.card h3 {
  color: var(--black);
  margin-bottom: 15px;
  font-size: 24px;
}

.card p {
  color: #333;
  margin-bottom: 20px;
}

.card a {
  display: inline-block;
  background-color: var(--gold);
  color: var(--black);
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s;
}

.card a:hover {
  background-color: #C4A037;
}

/* Footer */
footer {
  background-color: var(--black);
  color: var(--gold);
  padding: 40px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

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

/* Section Styles */
section {
  margin: 60px 0;
}

section h2 {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--black);
  margin-bottom: 30px;
  border-left: 6px solid var(--gold);
  padding-left: 20px;
}

.highlight {
  background-color: var(--gold);
  color: var(--black);
  padding: 2px 8px;
  font-weight: 700;
}

/* Interactive Elements */
.interactive-box {
  background: var(--white);
  border: 3px solid var(--purple);
  padding: 30px;
  margin: 30px 0;
}

.btn {
  display: inline-block;
  background-color: var(--gold);
  color: var(--black);
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}

.btn:hover {
  background-color: var(--purple);
  color: var(--white);
  transform: scale(1.05);
}

/* Ticker */
.ticker {
  background-color: var(--black);
  color: var(--gold);
  padding: 15px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  margin: 30px 0;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline-item {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 20px;
  margin: 20px 0;
}

.timeline-year {
  font-family: 'Anton', sans-serif;
  color: var(--purple);
  font-size: 24px;
  margin-bottom: 10px;
}

/* Quiz */
.quiz-question {
  background: var(--white);
  padding: 30px;
  margin: 20px 0;
  border-left: 5px solid var(--gold);
}

.quiz-options {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.quiz-option {
  background-color: var(--grey);
  border: 2px solid var(--black);
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.quiz-option:hover {
  background-color: var(--gold);
  color: var(--black);
}

.quiz-option.correct {
  background-color: #4CAF50;
  color: white;
  border-color: #4CAF50;
}

.quiz-option.incorrect {
  background-color: #f44336;
  color: white;
  border-color: #f44336;
}

/* Depth Chart */
.depth-chart {
  background: var(--white);
  padding: 20px;
  overflow-y: auto;
  max-height: 600px;
  border: 3px solid var(--gold);
}

.depth-item {
  padding: 20px;
  margin: 10px 0;
  border-left: 5px solid var(--purple);
  background-color: var(--grey);
}

/* Parallax */
.parallax {
  height: 400px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.parallax-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

/* Cost Comparison */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.comparison-item {
  background: var(--white);
  padding: 30px;
  border: 3px solid var(--gold);
  text-align: center;
}

.comparison-item h3 {
  margin-bottom: 20px;
  color: var(--purple);
}

.price {
  font-size: 36px;
  font-family: 'Anton', sans-serif;
  color: var(--gold);
}

/* Kota Builder */
.kota-builder {
  background: var(--white);
  padding: 30px;
  border: 3px solid var(--purple);
  margin: 30px 0;
}

.ingredients {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.ingredient {
  background-color: var(--grey);
  border: 2px solid var(--black);
  padding: 20px;
  text-align: center;
  cursor: grab;
  transition: transform 0.2s;
}

.ingredient:hover {
  transform: scale(1.05);
}

.kota-display {
  background-color: var(--gold);
  min-height: 200px;
  border: 3px dashed var(--black);
  padding: 20px;
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .comparison {
    grid-template-columns: 1fr;
  }
  
  .hero {
    height: 50vh;
  }
}