/* ==========================================================================
   Hero Section CSS - Custom Agency
   ========================================================================== */

.hero-section {
  width: 100%;
  min-height: 0;
  padding: 0.5rem;
  margin-bottom: 2.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section {
    min-height: 100vh;
    padding: 1rem;
    margin-bottom: 5rem;
  }
}

.hero-card {
  position: relative;
  width: 100%;
  min-height: 75vh;
  border-radius: 1.8rem;
  overflow: hidden;
  background-color: var(--base-100);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
}

@media (min-width: 640px) {
  .hero-card {
    min-height: 85vh;
    border-radius: 2.5rem;
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .hero-card {
    min-height: 100vh;
    padding: 2.5rem;
  }
}

.hero-img {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.4;
  will-change: transform;
  transition: opacity 0.3s ease;
}

.hero-desktop-img {
  display: block;
}

.hero-mobile-img {
  display: none;
}

@media (max-width: 767px) {
  .hero-desktop-img {
    display: none;
  }
  .hero-mobile-img {
    display: block;
  }
}

@media (min-width: 768px) {
  .hero-img {
    opacity: 0.6;
  }
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--base-100), rgba(24, 23, 23, 0.4), transparent);
  z-index: 0;
}

.hero-header-content {
  position: relative;
  z-index: 10;
  padding-top: 3rem;
}

@media (min-width: 640px) {
  .hero-header-content {
    padding-top: 4rem;
  }
}

@media (min-width: 768px) {
  .hero-header-content {
    padding-top: 6rem;
  }
}

.hero-title {
  color: var(--base-300);
  text-align: left;
  font-size: clamp(2.5rem, 8vw + 1rem, 9.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-bottom-content {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 0.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .hero-bottom-content {
    flex-direction: row;
    align-items: flex-end;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    margin-top: 0;
  }
}

.hero-subtitle {
  color: var(--base-300);
  font-size: clamp(1.125rem, 2.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 36rem;
}

.hero-subtitle-gold {
  color: var(--base-400);
}

.hero-description {
  width: 100%;
  color: var(--base-500);
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
}

@media (min-width: 640px) {
  .hero-description {
    width: 85%;
  }
}

@media (min-width: 768px) {
  .hero-description {
    width: 35%;
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .hero-description {
    width: 30%;
  }
}
