/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

/* Navbar */
.navbar {
  background-color: #b30000;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-weight: 700;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.nav-links a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: url('/assets/images/hero-lights.jpg') center/cover no-repeat;
  color: #fff;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.hero-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 10px;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background: #00cc66;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.cta-btn:hover {
  background: #00994d;
}

/* Services */
.services {
  padding: 3rem 1rem;
  background-color: #f4f4f4;
}
.services h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.service-card {
  background: #fff;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: transform 0.2s;
}
.service-card:hover {
  transform: translateY(-5px);
}

/* Footer */
.footer {
  background-color: #222;
  color: #ddd;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}
.gallery {
  padding: 2rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
