
/* Hero Section Professional Styles */
.hero-section {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  margin-bottom: 30px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 1.5s ease;
}

.hero-section:hover .hero-image {
  transform: scale(1.05);
}

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

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  color: #fff;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 15px #fff,
    0 0 20px #c9a961,
    0 0 30px #c9a961,
    0 0 40px #c9a961;
  animation: fadeInDown 1s ease, glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  max-width: 800px;
  margin-bottom: 40px;
  color: #ffffff;
  text-shadow: 
    0 0 3px #fff,
    0 0 6px #fff,
    0 0 9px #fff,
    0 0 12px #c9a961,
    0 0 18px #c9a961;
  animation: fadeInUp 1s ease, glow 2s ease-in-out infinite alternate;
}

/* Glowing animation */
@keyframes glow {
  from {
    text-shadow: 
      0 0 5px #fff,
      0 0 10px #fff,
      0 0 15px #fff,
      0 0 20px #c9a961,
      0 0 30px #c9a961,
      0 0 40px #c9a961;
  }
  to {
    text-shadow: 
      0 0 10px #fff,
      0 0 15px #fff,
      0 0 20px #fff,
      0 0 25px #c9a961,
      0 0 35px #c9a961,
      0 0 45px #c9a961;
  }
}

.hero-buttons {
  display: flex;
  gap: 20px;
  animation: fadeIn 1.5s ease;
}

.hero-button {
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-button.primary {
  background-color: #c9a961;
  color: #fff;
  border: 2px solid #c9a961;
}

.hero-button.primary:hover {
  background-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.hero-button.secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.hero-button.secondary:hover {
  background-color: #fff;
  color: #333;
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
  }

  .hero-button {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}
