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

/* GLOBAL STYLES */
html, body {
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
  background: #050505;      /* Dark gray page background */
  color: #fff;           /* Default text color */
}

/* HEADER NAVIGATION */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
}
header ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 1rem;
}
header ul li a {
  color: #fff;
  text-decoration: none;
  margin: 0 1rem;
}

/* HEADER & FOOTER reuse your existing .site-header and .site-footer styles */

/* HERO */
.contact-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 1.5rem 2rem; /* leave room for fixed header */
  background: #333;
  text-align: center;
}
.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.contact-hero .subtitle {
  color: #ddd;
  font-size: 1.1rem;
}

/* CONTACT CARD */
.contact-card {
  max-width: 600px;
  margin: 2rem auto 4rem;
  padding: 2rem;
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.contact-card form {
  display: flex;
  flex-direction: column;
}
.contact-card label {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  background: #333;
  color: #fff;
  font-size: 1rem;
}
.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: #888;
}
.contact-card .btn {
  margin-top: 1.5rem;
  align-self: start;
}

/* CONTACT INFO */
.contact-info {
  margin-top: 2rem;
  border-top: 1px solid #444;
  padding-top: 1.5rem;
}
.contact-info h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.contact-info ul {
  list-style: none;
}
.contact-info li {
  margin-bottom: 0.5rem;
}
.contact-info a {
  color: #ff6600;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .contact-card {
    padding: 1rem;
  }
  .contact-hero h1 {
    font-size: 2rem;
  }
  .contact-hero .subtitle {
    font-size: 1rem;
  }
}
