/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #000000;
  --text: #ffffff;
  --accent: #c62828;
  --blue: #00b4ff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Bold italic style matching logo */
h1, h2, h3, h4, h5, h6 {
  font-style: italic;
  font-weight: 700;
  color: #ffffff;
}

a { color: #ffffff; text-decoration: none; }
p { color: #ffffff; }

/* Navigation */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--accent); }

/* Mobile nav toggle */
.nav-toggle-checkbox { display: none; }
.nav-toggle-label { display: none; cursor: pointer; }
.nav-toggle-label span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

@media (max-width: 768px) {
  .nav-toggle-label { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 1rem;
  }
  .nav-toggle-checkbox:checked ~ .nav-links { display: flex; }
}

/* Hero */
#hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 2rem;
  position: relative;
  background: #000000;
}

.hero-logo {
  max-width: 400px;
  width: 90%;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 2px;
}

/* HAL Eye glow — centered below hero */
.hal-eye {
  display: none;
}

.glow-section {
  position: relative;
  overflow: hidden;
}

.glow-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 40, 40, 0.15) 0%, rgba(198, 40, 40, 0.05) 40%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Sections */
section {
  padding: 4rem 2rem;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  text-align: center;
}

.section-line {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: -1rem auto 2rem;
}

/* About / Mission */
.about-content { text-align: center; }
.about-content p {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info h3 {
  font-style: italic;
  margin-bottom: 1rem;
  color: #ffffff;
}

.contact-address, .contact-phone {
  color: #ffffff;
  line-height: 1.8;
}

.contact-phone a { color: #ffffff; }
.contact-phone a:hover { color: var(--accent); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
  color: #ffffff;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #111111;
  border: 1px solid #333;
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  border-radius: 4px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.btn-primary {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover { background: #a51c1c; }

/* Footer */
footer {
  border-top: 1px solid #222;
  padding: 2rem;
  background: #000000;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-inner p { color: #ffffff; font-size: 0.85rem; }

.footer-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #ffffff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
