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

body {
  font-family: Arial, sans-serif;
  background: #e9e9e9;
  color: #111;
}

/* ===== HEADER ===== */
.site-header {
  background: #111;
  text-align: center;
  padding-bottom: 10px;
}

/* ===== BANNER (FIXED) ===== */
.banner {
  max-width: 900px;
  margin: 20px auto;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

/* IMAGE */
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* DARK OVERLAY */
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* TEXT */
.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 90%;
  color: white;
}

.banner-text h1 {
  font-size: 26px;
  margin-bottom: 5px;
}

.banner-text p {
  font-size: 14px;
  color: #ddd;
}

/* ===== NAV ===== */
nav {
  background: #000;
  padding: 10px 0;
}

nav a {
  color: white;
  margin: 0 12px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #00c3ff;
}

/* ===== HERO ===== */
.hero {
  max-width: 900px;
  margin: 30px auto;
  padding: 50px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
  color: white;
  border-radius: 10px;
}

/* ===== CONTENT ===== */
section {
  max-width: 900px;
  margin: 20px auto;
  padding: 25px;
  background: white;
  border-radius: 8px;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

/* ===== FOOTER ===== */
footer {
  background: #111;
  color: white;
  padding: 30px 0;
  text-align: center;
  margin-top: 20px;
}

footer p {
  margin: 5px 0;
}

footer a {
  color: #00c3ff;
  text-decoration: none;
}
/* ===== CONTACT FORM FIX ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Rows */
.form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Make textarea full width */
.contact-form textarea {
  width: 100%;
  min-height: 100px;
}

/* Button */
.contact-form button {
  width: 200px;
  padding: 12px;
  background: black;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #333;
}
