/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../images/hero-bg.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Dark overlay for better contrast */
.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Hero text content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  color: var(--azurfa-white);
}

.hero-content p {
  font-size: 1.1rem;
  color: #f2f2f2;
}

/* Custom button styles */
.btn-orange {
  background-color: var(--azurfa-orange);
  color: var(--azurfa-white);
  border: none;
  transition: background-color 0.3s ease;
}

.btn-orange:hover {
  background-color: #e46c00;
  color: var(--azurfa-white);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }
}
/* ________________________ */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}