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

:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #e94560;
  --text: #eaeaea;
  --text-muted: #a0a0a0;
  --surface: #0f3460;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--primary);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* NAV */
nav {
  background: var(--secondary);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--accent);
}

nav .logo {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

nav .logo img {
  height: 40px;
  width: auto;
}

nav .logo span {
  color: var(--accent);
}

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

nav ul a {
  color: var(--text);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

nav ul a:hover {
  color: var(--accent);
  text-decoration: none;
}

/* HERO */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--secondary);
}

.hero h1 {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.hero h1 span {
  color: var(--accent);
}

.hero .hero-logo {
  height: 120px;
  width: auto;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

footer .footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

/* SECTIONS */
.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.section h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  border-left: 4px solid var(--accent);
  padding-left: 0.75rem;
}

.section p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--secondary);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid var(--surface);
}

.card h3 {
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* NEWS */
.news-item {
  background: var(--secondary);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--accent);
}

.news-item .date {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-item h3 {
  margin: 0.25rem 0;
}

/* FOOTER */
footer {
  background: var(--secondary);
  border-top: 2px solid var(--accent);
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
}

footer .socials {
  margin-bottom: 1rem;
}

footer .socials a {
  margin: 0 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
}

footer p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* PAGE CONTENT */
.page-header {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--secondary);
}

.page-header h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-header p {
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
