/* Reset + base styling */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}


/* NAV */
header {
  /* background-color: #111; */
  background-color: #000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.logo-container {
  flex-shrink: 0;
}

.logo {
  height: 120px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #FFD700; /* Gold highlight */
}

/* Mobile responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #111;
    width: 200px;
    display: none;
    padding: 1rem;
  }

  .navbar.active .nav-links {
    display: flex;
  }
}

/* Hamburger default hidden */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 10px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 5px;
}

/* Responsive nav */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #111;
    width: 100%;
    display: none;
    flex-direction: column;
    padding: 1rem;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    position: relative;
  }
}

.services-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
              url('images/services-banner.jpg') no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #fff;
}

.services-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(50, 50, 50, 0.6); /* Subtle grey overlay */
  z-index: 1;
}

.services-banner-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.services-banner-content h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f1f1f1;
}

.services-banner-content p {
  font-size: 1.2rem;
  color: #ccc;
}



  /* Services */
  .services-section {
    background-color: #f7f7f7;
    color: #111;
    padding: 80px 20px;
    text-align: center;
  }
  
  .services-heading {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
  }
  
  .services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .service-item {
    background-color: white;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
  }
  
  .service-item:hover {
    transform: translateY(-5px);
  }
  
  .service-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  .service-item h3 {
    margin-bottom: 10px;
    color: #FFD700;
    font-size: 1.3rem;
  }
  
  .service-item p {
    font-size: 1rem;
    color: #555;
  }

  /* Contact */
.contact-section-cta {
  background-color: #e0e0e0; /* Light grey */
  padding: 80px 20px;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-container h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.cta-container p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 14px 30px;
  background-color: #111;
  color: #fff;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #333;
}

/* Gallery */
.gallery-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.gallery-heading {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}



  
  /* Footer */
  .footer {
    background-color: #1c1c1c;
    color: #ccc;
    padding: 60px 20px 20px;
    font-size: 0.95rem;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
  }
  
  .footer h3, .footer h4 {
    color: #FFD700;
    margin-bottom: 15px;
  }
  
  .footer-left, .footer-center, .footer-right {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-center ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-center ul li {
    margin-bottom: 10px;
  }
  
  .footer-center ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
  }
  
  .footer-center ul li a:hover {
    color: #FFD700;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #777;
    font-size: 0.85rem;
  }
  
  .footer a {
    color: #FFD700; /* or #ccc if you want a subtle look */
    text-decoration: none;
    font-weight: 500;
  }
  
  .footer a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  

  
  