/* Reset */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HERO SECTION */
header.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  background-color: #000;
  color: #FFD700;
}

.hero-text {
  flex: 1 1 50%;
  padding: 1rem;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0;
}

.hero-text p {
  font-size: 1.1rem;
  margin-top: 1rem;
  color: #fff;
}

.cta-buttons {
  margin-top: 2rem;
}

.btn, .btn-outline {
  padding: 0.8rem 1.6rem;
  font-weight: bold;
  border-radius: 4px;
  margin-right: 1rem;
  display: inline-block;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btn {
  background: #FFD700;
  color: #000;
}

.btn:hover {
  background: #e6c200;
}

.btn-outline {
  border: 2px solid #FFD700;
  color: #FFD700;
}

.btn-outline:hover {
  background: #FFD700;
  color: #000;
}

.hero-image {
  flex: 1 1 40%;
  text-align: center;
}

.hero-image img {
  max-width: 300px;
  border-radius: 12px;
  margin-top: 1rem;
}

/* SECTION STYLING */
section {
  padding: 4rem 2rem;
}

.about, .services, .contact {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

h2 {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 1rem;
}

.services ul {
  list-style-type: none;
  padding: 0;
  text-align: left;
}

.services li {
  padding: 0.5rem 0;
  font-weight: 600;
  border-bottom: 1px solid #333;
}

/* CONTACT ICONS */
.contact-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.contact-icons img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.contact-icons img:hover {
  transform: scale(1.2);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #111;
  color: #888;
  font-size: 0.9rem;
}
