/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
  line-height: 1.6;
  color: #333;
  background: #f5f5f5;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Header */
header {
  background: #1c1c1c;
  color: #f5f5f5;
  padding: 20px 0;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
header nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
header nav ul li a {
  color: #f5f5f5;
  font-weight: 500;
  transition: 0.3s;
}
header nav ul li a:hover {
  color: #d4af37; /* classy gold accent */
}

/* Hero Section */
.hero {
  /* Placeholder for your banner image */
  background: url('banner_image.jpg') no-repeat center center/cover;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f5f5;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28, 28, 28, 0.5); /* dark overlay for readability */
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 50px;
  margin-bottom: 20px;
  font-weight: bold;
}
.hero p {
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto;
}
.hero button {
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 18px;
  background: #d4af37;
  color: #1c1c1c;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}
.hero button:hover {
  background: #b7950b;
}

/* Sections */
section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  color: #1c1c1c;
}
.about, .services, .portfolio {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}
.card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  flex: 1 1 300px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.card h3 {
  margin-bottom: 15px;
  color: #1c1c1c;
}
.card p {
  color: #555;
}

/* Contact */
.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact input, .contact textarea {
  padding: 12px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 100%;
}
.contact button {
  padding: 12px;
  font-size: 18px;
  background: #1c1c1c;
  color: #d4af37;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}
.contact button:hover {
  background: #333;
}

footer {
  background: #1c1c1c;
  color: #f5f5f5;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* Responsive */
@media(max-width: 768px) {
  .about, .services, .portfolio {
    flex-direction: column;
  }
  header nav {
    flex-direction: column;
    gap: 10px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero p {
    font-size: 18px;
  }
}
