/* assets/css/custom-styles.css */

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

/* ---------- Theme variables ---------- */

:root {
  --accent: #9cff57;
  --accent-soft: #caff8a;
  --text-light: #f8fafc;
  --text-muted: #dbeafe;
  --panel-bg: rgba(10, 15, 25, 0.72);
  --panel-border: rgba(255, 255, 255, 0.18);
}

/* ---------- Base ---------- */

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  background: url("/assets/img/fp8_VTA2_cropped.png") center top / cover fixed no-repeat;
}

p,
h1,
h2,
h3 {
  color: var(--text-light);
}

a {
  color: var(--accent);
}

a:hover {
  color: var(--accent-soft);
}

/* ---------- Navbar ---------- */

.navbar,
.navbar-brand,
.navbar-nav,
.navbar-nav li a {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.navbar-custom .navbar-brand,
.navbar-custom .nav li a {
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.navbar-brand {
  display: none !important;
}

/* ---------- Hero ---------- */

.intro-hero {
  min-height: 35vh;
  margin: -2rem calc(50% - 50vw) 2rem;
  padding: 3rem max(2rem, calc((100vw - 1100px) / 2));
  display: flex;
  align-items: center;
  color: var(--text-light);
}

.intro-hero-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.intro-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 1rem;
}

.intro-hero p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 650px;
}

.intro-hero-text {
  max-width: 650px;
}

.accent {
  color: var(--accent) !important;
}

/* ---------- Cards ---------- */

.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 1rem 0 2rem;
}

.quick-link {
  display: block;
  padding: 1.5rem;
  border: 1px solid var(--panel-border);
  border-radius: 22px;
  background: var(--panel-bg);
  color: var(--text-light) !important;
  text-decoration: none;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.quick-link:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.3),
    0 0 18px rgba(156, 255, 87, 0.25);
  text-decoration: none;
}

.quick-link strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: var(--accent) !important;
}

/* ---------- Section headings ---------- */

h2 {
  margin-top: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* ---------- News ---------- */

.news-section {
  margin: 4rem 0 3rem;
  padding: 1.5rem;
  border-radius: 22px;
  background: rgba(10, 15, 25, 0.62);
  backdrop-filter: blur(8px);
  color: var(--text-light);
}

.news-section h2 {
  margin-top: 0;
}

.news-item {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem 0;
}

.news-item p {
  margin: 0;
}

.news-item:first-of-type {
  border-top: 0;
}

.news-date {
  min-width: 4rem;
  color: var(--accent) !important;
  font-weight: 700;
}

.quick-links {
  margin-top: -1rem !important;
  margin-bottom: 5rem !important;
}

.news-section {
  margin-top: 5rem !important;
}
