.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

/* Base Alignment - Center defaults */
.video-hero {
  justify-content: center;
}
.video-hero .hero-content {
  text-align: center;
  align-items: center;
}

/* Layout Alignments */
.hero-align-center {
  justify-content: center;
}
.hero-align-center .hero-content {
  text-align: center;
  align-items: center;
}

.hero-align-left {
  justify-content: flex-start;
}
.hero-align-left .hero-content {
  text-align: left;
  align-items: flex-start;
}

.hero-bg-media {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}
.hero-bg-media video,
.hero-bg-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
}

/* Typography */
.hero-title {
  font-family: Georgia, serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 950px;
  color: #fff;
}

.hero-description {
  font-size: 1.35rem;
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 720px;
  color: rgba(255,255,255,0.92);
}

/* CTA Wrapper prevents full-width button when flex column stretches items */
.hero-cta-wrap {
  display: inline-flex;
}

/* CTA Button - just fits text size */
.hero-cta {
  display: inline-block;
  background-color: #318070;
  color: #ffffff;
  padding: 12px 28px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 6px;
  font-family: "Times New Roman", Times, serif;
  text-decoration: none !important;
  transition: background-color 0.25s ease, transform 0.15s ease;
  cursor: pointer;
}
.hero-cta:hover {
  background-color: #245f53;
  color: #ffffff;
  text-decoration: none !important;
}
.hero-cta:active {
  transform: scale(0.98);
}

/* Responsive */
@media (max-width:1024px) {
  .hero-title { font-size: 2.8rem; }
  .hero-description { font-size: 1.2rem; max-width: 650px; }
}
@media (max-width:768px) {
  .hero-content { padding: 0 24px; }
  .hero-title { font-size: 2.2rem; margin-bottom: 16px; }
  .hero-description { font-size: 1.1rem; margin-bottom: 24px; }
  .hero-cta { padding: 11px 24px; font-size: 1rem; }
}
@media (max-width:480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-description { font-size: 1rem; }
}
