.index-hero-frame-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #000;
}

.index-hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: 600px;
  overflow: hidden;
}

.hero-media-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-media-wrapper iframe,
.hero-media-wrapper img,
.hero-media-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}

.hero-overlay-boundary {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  pointer-events: none;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-header {
  padding: 1rem;
  pointer-events: auto;
}

.hero-header.left {
  text-align: left;
}

.hero-header.center {
  text-align: center;
}

.hero-header.right {
  text-align: right;
}

.hero-header a {
  text-decoration: none;
  color: inherit;
}

.hero-header a:hover {
  text-decoration: none;
}

.cta-header {
  /* Try Bonheur_Royale first, then serif fallback */
  font-family: 'IM Fell DW Pica SC', Georgia, serif !important;
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin: 0;
  font-weight: 400;
  padding: 5px;
}

.hero-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1rem;
  pointer-events: auto;
  gap: 1rem;
}

.cta-text-container {
  flex: 0 0 66%;
}

.cta-text-container.text-left {
  text-align: left;
}

.cta-text-container.text-right {
  text-align: right;
}

.cta-text-container a {
  text-decoration: none;
  color: inherit;
}

.cta-text-container a:hover {
  text-decoration: none;
}

/* CTA Text - Also with debugging */
.cta-text {
  font-family: 'IM Fell DW Pica SC', Georgia, serif !important;
  font-size: 1.75rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin: 0;
  font-weight: 400;
  padding: 5px;
}

.cta-button-container {
  flex: 0 0 33%;
  display: flex;
  align-items: flex-end;
}

.cta-button-container.button-left {
  justify-content: flex-start;
}

.cta-button-container.button-right {
  justify-content: flex-end;
}

.cta-button {
  font-family: 'Lora-Medium', Georgia, serif;
  background-color: #d32f2f;
  color: #fff;
  border: 2px solid #000;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-button:hover {
  background-color: #b71c1c;
  transform: translateY(-1px);
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
  color: #fff;
  text-decoration: none;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
  .index-hero-container {
    height: 500px;
  }
  
  .cta-header {
    font-size: 2.2rem;
  }
  
  .cta-text {
    font-size: 1.5rem;
  }
  
  .hero-cta-row {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .cta-text-container,
  .cta-button-container {
    flex: none;
    width: 100%;
    text-align: center;
  }
  
  .cta-text-container.text-left,
  .cta-text-container.text-right {
    text-align: center;
  }
  
  .cta-button-container.button-left,
  .cta-button-container.button-right {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .index-hero-container {
    height: 400px;
  }
  
  .cta-header {
    font-size: 1.8rem;
  }
  
  .cta-text {
    font-size: 1.3rem;
  }
  
  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .hero-header,
  .hero-cta-row {
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  .index-hero-container {
    height: 350px;
  }
  
  .cta-header {
    font-size: 1.5rem;
  }
  
  .cta-text {
    font-size: 1.1rem;
  }
  
  .cta-button {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}