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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f4f4f4;
}

h1, h2 {
  margin-bottom: 10px;
  text-align: center;
}

/* Hero Section */
.hero {
  background: url('assets/gun-metal-bg.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero .overlay {
  background: rgba(0,0,0,0.6);
  padding: 30px;
  border-radius: 5px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #8b0000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  background: #a40000;
}

/* Section Styling */
section {
  padding: 50px 20px;
  background: #fff;
  margin: 20px auto;
  max-width: 900px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.services ul {
  list-style: none;
  text-align: center;
}

.services li {
  margin: 8px 0;
  font-weight: 500;
}

/* Contact Section */
.contact a {
  color: #8b0000;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input, 
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background: #222;
  color: #fff;
}
