/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Oswald:wght@300;400;500;700&display=swap');

:root {
  /* Dark Theme Palette (Variant 4) */
  --bg-dark: #0F172A;       /* Slate 900 - Main Background */
  --bg-card: #1E293B;       /* Slate 800 - Cards/Sections */
  --accent-color: #F59E0B;  /* Amber 500 - Primary Action / CTA */
  --text-light: #F8FAFC;    /* Slate 50 - Main Text */
  --text-muted: #94A3B8;    /* Slate 400 - Secondary Text */
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  --gradient-dark: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 1) 100%);

  /* Fonts */
  --font-heading: 'Oswald', sans-serif;
  --font-text: 'Open Sans', sans-serif;
}

body {
  font-family: var(--font-text);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

/* Utility Classes */
.bg-theme-main { background-color: var(--bg-dark); }
.bg-theme-card { background-color: var(--bg-card); }
.text-theme-accent { color: var(--accent-color); }
.text-theme-muted { color: var(--text-muted); }
.border-theme { border-color: var(--bg-card); }

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-heading);
  font-weight: 500;
  color: #fff;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  color: #fff;
}

/* Numbered Circle Lists */
.numbered-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.numbered-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.numbered-list li::before {
  content: counter(list-item);
  counter-increment: list-item;
  position: absolute;
  left: 0;
  top: -2px;
  width: 1.8rem;
  height: 1.8rem;
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: bold;
}

/* Form Styles */
.form-input {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--text-muted);
  color: var(--text-light);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-family: var(--font-text);
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-color);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Cookie Banner (JS Version) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-card);
  color: var(--text-light);
  padding: 1.5rem;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.5);
  border-top: 2px solid var(--accent-color);
}

.cookie-btn {
  cursor: pointer;
  padding: 0.6rem 2rem;
  margin: 0.5rem;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 4px;
  border: none;
  display: inline-block;
  font-weight: bold;
  font-family: var(--font-text);
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cookie-btn-alt {
  background-color: #4B5563;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
}