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

:root {
  --color-primary: #6b68b0;
  --color-secondary: #e67e22;
  --color-accent: #06b6d4;
  --color-success: #10b981;
  --color-danger: #ef4444;

  --color-bg: #fafaf9;
  --color-card: #ffffff;
  --color-text: #1c1917;
  --color-text-light: #78716c;
  --color-border: #e7e5e4;
}

[data-theme="dark"] {
  --color-bg: #0c0a09;
  --color-card: #1c1917;
  --color-text: #f5f5f4;
  --color-text-light: #a8a29e;
  --color-border: #44403c;

  --color-primary: #e67e22;
}

* {
  margin: 0;
}

.upcoming-hero {
  max-width: 900px;
  margin: 60px auto 40px;
  text-align: center;
  padding: 0 20px;
}

.upcoming-list {
  max-width: 1600px;
  margin: 0 auto 80px;
  padding: 0 20px;
  display: flex;
  gap: 25px;
}

.upcoming-card {
  background: var(--color-card);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  width: 500px;
  margin-top: 10px;
}

.upcoming-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-secondary);
}

.upcoming-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--color-text);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
}

.upcoming-card h2 {
  font-family: 'Outfit', sans-serif;
  margin-bottom: 10px;
}

.value-card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-secondary);
}

.value-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.about-cta {
  margin-top: 60px;
  text-align: center;
}

.about-cta a {
  display: inline-block;
  padding: 14px 30px;
  background: var(--color-secondary);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-cta a:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.logo-img {
  height: 100px;
  transition: all 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.nav-premium {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 25px 0 20px 0;
  transition: all 0.3s ease;
  background: var(--color-card);
  border-bottom: 1px solid var(--color-border);
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #64748b;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: #e67e22;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #e67e22;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.navbar.scrolled {
  padding: 12px 0 7px 0px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .logo-img {
  height: 55px;
}


.footer {
  background: linear-gradient(180deg, #1c1917 0%, #0c0a09 100%);
  color: #a8a29e;
  padding: 60px 20px 40px;
  margin-top: 200px;
  border-top: 4px solid #e67e22;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.footer-links a {
  color: #d6d3d1;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a span {
  font-size: 1.1rem;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.footer-links a:hover {
  color: #fafaf9;
  background: rgba(230, 126, 34, 0.15);
  border-color: #e67e22;
  transform: translateY(-3px);
}

.footer-links a:hover span {
  filter: grayscale(0%);
}

.footer-divider {
  height: 2px;
  background: radial-gradient(circle, #44403c 0%, transparent 100%);
  margin: 10px 0;
}

.footer-text {
  text-align: center;
  font-size: 0.9rem;
  color: #78716c;
}

.footer-brand {
  color: #fafaf9;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 10px !important;
  letter-spacing: 1px;
}

.footer-text strong {
  color: #d6d3d1;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 15px 30px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .footer-links a {
    justify-content: center;
    font-size: 0.85rem;
  }
}
