/* HERO SECTION - CLEAN WORKING VERSION */
.hero-section {
  background-image: url('../images/personal-porn-studio.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .cta-button {
  width: auto !important; /* Override responsive.css mobile rules */
}

.cta-button {
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  width: auto !important; /* Override responsive.css mobile-first rules */
}

.cta-button.primary {
  background: #E54B85;
  color: white;
}

.cta-button.primary:hover {
  background: #d1427a;
  transform: translateY(-2px);
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid #E54B85;
}

.cta-button.secondary:hover {
  background: #E54B85;
  color: white;
}

/* Desktop override for button width */
@media (min-width: 769px) {
  .hero-buttons .cta-button {
    width: auto !important;
    max-width: none !important;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 280px;
  }
}
