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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0d0d0e; /* deep charcoal background */
  color: #f5f5f5;
  line-height: 1.6;
}

a {
  color: #d4af37; /* gold accent */
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Header */
.header {
  background-color: #0b0b0c;
  border-bottom: 1px solid #333;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo img {
  width: 60px;
  height: 60px;
}
.logo h1 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #d4af37;
}
.nav a {
  margin-left: 1.5rem;
  font-weight: 500;
  color: #f5f5f5;
  transition: color 0.3s ease;
}
.nav a:hover {
  color: #d4af37;
}

/* Hero Section */
.hero {
  /* Use project photo as background with a dark overlay */
  background-image: linear-gradient(rgba(13, 13, 14, 0.6), rgba(13, 13, 14, 0.6)), url('images/project-4.png');
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
  text-align: center;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  color: #d4af37;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
}
.btn-primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 600;
  background-color: #d4af37;
  color: #0d0d0e;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.btn-primary:hover {
  background-color: #b38c2b;
}

/* Services Section */
.services {
  padding: 4rem 0;
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #d4af37;
}
.section-title p {
  font-size: 1rem;
  color: #cfcfcf;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.service-card {
  background-color: #1a1a1c;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}
.icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background-color: #2a2a2c;
  border-radius: 50%;
  color: #d4af37;
  font-size: 1.8rem;
}
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #f5f5f5;
}
.service-card p {
  font-size: 0.95rem;
  color: #b5b5b5;
}

/* About Section */
.about {
  /* Add decorative swirl background for visual interest */
  background-image: linear-gradient(rgba(20, 20, 20, 0.7), rgba(20, 20, 20, 0.9)), url('images/swirl.png');
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
}

/* Projects Section */
.projects {
  padding: 4rem 0;
  background-color: #121214;
}
.projects .section-title h2 {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}
.projects .section-title p {
  color: #b5b5b5;
  text-align: center;
  margin-bottom: 2rem;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.project-item img {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  height: 200px;
}

.about-content {
  text-align: center;
}
.about-content h2 {
  color: #d4af37;
  margin-bottom: 1rem;
  font-size: 2rem;
}
.about-content p {
  font-size: 1rem;
  color: #cfcfcf;
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  background-color: #1a1a1c;
  text-align: center;
}
.contact-content h2 {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contact-content p {
  color: #b5b5b5;
  margin-bottom: 2rem;
}
.contact-details p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #d4af37;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.contact-details i {
  color: #d4af37;
}

/* Footer */
.footer {
  background-color: #0b0b0c;
  padding: 1rem 0;
  border-top: 1px solid #333;
  text-align: center;
}

/* Hero content wrapper */
.hero-content-wrapper {
  max-width: 700px;
  margin: 0 auto;
}
.footer-content p {
  color: #777;
  font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav a {
    margin-left: 0;
    margin-right: 1.5rem;
  }
  .logo {
    margin-bottom: 1rem;
  }
}