/* Base Reset and Typography */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #111;
  color: #f0f0f0;
  line-height: 1.6;
}

a {
  color: #e91e63;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 15px 30px;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: #fff;
  font-weight: bold;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000; /* fallback background */
  padding: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100vw;
  min-height: 100vh;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  background-color: #000;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 90%;
  color: #fff;
}

.hero h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 30px;
}

/* Button */
.btn {
  display: inline-block;
  background-color: #e91e63;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn:hover {
  background-color: #c2185b;
}

/* Sections */
.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  background-color: #1a1a1a;
  color: #f0f0f0;
}

h2 {
  text-align: center;
  color: #e91e63;
  margin-bottom: 30px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.service-card {
  background: #222;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
.service-card h3 {
  color: #f06292;
}

/* Quote Form */
.quote-section form {
  display: flex;
  flex-direction: column;
}
.quote-section label {
  font-weight: bold;
  margin-top: 15px;
}
.quote-section input,
.quote-section textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #444;
  border-radius: 5px;
  font-size: 1rem;
  background: #111;
  color: #f0f0f0;
}
.quote-section button {
  margin-top: 20px;
  align-self: flex-start;
}

/* Footer */
footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Mobile Tweaks */
@media (max-width: 600px) {
  .hero {
    height: 80vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}