* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body, html {
  height: 100%;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Background Image */
.bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* change to contain if needed */
  object-position: center;
}

/* Overlay */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

/* Content */
.content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
}

/* Heading */
h1 {
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 20px;
}

/* Subheading */
.subheading {
  letter-spacing: 2px;
  font-size: 16px;
  margin-bottom: 10px;
}

/* Main Text */
h2 {
  font-size: 70px;
  font-weight: 300;
  margin-bottom: 40px;
}

/* Contact */
.contact {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

/* Icons */
.icon {
  background: white;
  color: black;
  padding: 10px;
  border-radius: 50%;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 40px; }
  h2 { font-size: 45px; }

  .contact {
    flex-direction: column;
    gap: 15px;
  }
}