/* ========================
   Hero Section - Responsive Video
======================== */
.hs-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: black;
  margin-top: 80px; /* adjust if header height changes */
}

.hs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* TINT: Adjust strength here */
  z-index: 1;
}

.hs-hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 70vh;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hs-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
  padding: 0 20px;
  max-width: 100%;
}

.hs-hero-content a {
  text-shadow: none;
}

.hs-hero-content h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 20px;
  font-weight: 700;
  color: #c9aa71;
}

.hs-hero-content p {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: white;
}

/* Mobile: show full video */
@media (max-width: 768px) {
  .hs-hero {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .hs-hero video {
    height: 100%;
    width: 100%;
    object-fit: contain;
    top: 0;
    left: 0;
    transform: none;
  }

  .hs-hero-content h1 {
    font-size: 2rem;
  }

  .hs-hero-content p {
    font-size: 1rem;
  }
}

/* ========================
   Services Section
======================== */
.hs-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #0f0f0f;
  color: #f0f0f0;
  font-family: 'Inter', sans-serif;
  overflow-x: visible;
}

.hs-services {
  padding: 100px 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hs-services h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
  font-weight: 700;
  color: #fff;
}

.hs-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.hs-service-card {
  background: #1a1a1a;
  padding: 30px 25px;
  border-radius: 10px;
  flex: 1 1 280px;
  max-width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hs-service-card:hover {
  box-shadow: 0 12px 24px rgba(201, 170, 113, 0.18);
}

.hs-service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.hs-service-card p {
  font-size: 1rem;
  color: #ccc;
}

.hs-service-card a {
  background: none;
  padding: 0px;
  color: #ccc;
}

.hs-service-card a:hover {
  text-decoration: underline;
}

.hs-service-button {
  margin-top: 50px;
  text-align: center;
}

/* Buttons unified in style.css */

.hs-separator {
  height: 1px;
  background-color: #c9aa71;
  border-color: #c9aa71;
  margin-top: 60px;
  width: 100%;
  opacity: 0.6;
}

/* ========================
   About Section
======================== */
.hs-container {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: -60px;
  padding: 50px 5vw;
  text-align: center;
}

.hs-about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.hs-about p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.7;
}


/* ========================
   Contact Section
======================== */
.hs-contact h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.hs-contact p {
  color: #aaa;
  font-size: 1rem;
}

.hs-contact {
    padding-top:25px;
}
