/* CSS Variables – override these with your custom fonts */
:root {
  --title-font: 'Arial', sans-serif;    /* ← change to your title font */
  --desc-font:  'Georgia', serif;       /* ← change to your description font */
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base */
body {
  font-family: sans-serif;
  background: #fff;
  color: #000;
}

/* Header */
header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 24px;
  background: #e20613;
  border-bottom: 1px solid #000;
  min-height: 80px;
}

/* Logo + Title */
.logo-container {
  display: flex;
  align-items: center;
}
.logo {
  height: 60px;
  margin-right: 12px;
}
.site-name {
  font-family: var(--title-font);
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}

/* Search Box */
.search-container {
  flex: 1;
  display: flex;
  justify-content: center;
}
.search-container form {
  display: flex;
  width: 100%;
  max-width: 400px;
}
.search-container input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #000;
  border-right: none;
  border-radius: 4px 0 0 4px;
  outline: none;
}
.search-container button {
  padding: 8px 16px;
  border: 1px solid #000;
  border-left: none;
  background: #fff;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
}

/* Nav */
nav ul {
  list-style: none;
  display: flex;
}
nav a {
  display: block;
  padding: 10px 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Mega‑menu */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  padding: 24px;
  min-height: 300px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.menu-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown Columns */
.dropdown-column {
  flex: 1;
  padding: 0 12px;
}
.dropdown-column h3 {
  margin-bottom: 12px;
  color: #e20613;
  font-size: 1.2rem;
}
.dropdown-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.dropdown-column li + li {
  margin-top: 8px;
}
.dropdown-column a {
  display: block;
  padding: 4px 0;
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
}
.dropdown-column a:hover {
  color: #e20613;
}

/* Support email */
.support {
  margin-left: auto;
  align-self: flex-end;
  font-size: 0.9rem;
}
.support a {
  color: #e20613;
  text-decoration: none;
}

/* Intro (push down & center) */
.intro {
  padding: 40px 24px 0;     /* ↑ pushes it down from header */
  text-align: center;
}
.intro p {
  font-family: var(--desc-font);
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.5;
}
