/* ========================================
   HERO SECTION STYLES
   ======================================== */

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.75)),
    url("../img/bar-folly.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.hero-content {
  text-align: center;
  z-index: 10;
  max-width: 900px;
  padding: 0 40px;
}

.hero-logo {
  width: auto;
  height: 250px;
  margin: 0 auto 40px;
  display: block;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-logo img {
  /*  width: auto; */
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.5));
}

.hero h1 {
  /*  font-family: "Playfair Display", serif; */
  /*  font-size: clamp(3.5rem, 8vw, 7rem); */
  font-size: 40px;
  font-weight: 900;
  /*  color: var(--gold); */
  color: #ffffff;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.1;
  animation: fadeInUp 1.2s ease 0.5s both;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--light-gold);
  animation: fadeInUp 1.2s ease 0.8s both;
  letter-spacing: 2px;
}

.hero-description {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 50px;
  line-height: 1.8;
  animation: fadeInUp 1.2s ease 1.1s both;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.cta-button {
  display: inline-block;
  padding: 18px 50px;
  background: linear-gradient(45deg, var(--gold), var(--dark-gold));
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.4s ease;
  animation: fadeInUp 1.2s ease 1.4s both;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Floating Elements */
.floating-diamond {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    45deg,
    rgba(212, 175, 55, 0.1),
    rgba(184, 134, 11, 0.1)
  );
  transform: rotate(45deg);
  animation: float 8s ease-in-out infinite;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.floating-diamond:nth-child(1) {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.floating-diamond:nth-child(2) {
  top: 70%;
  right: 12%;
  animation-delay: 3s;
}

.floating-diamond:nth-child(3) {
  bottom: 25%;
  left: 15%;
  animation-delay: 6s;
}

/* Hero Responsive */
@media (max-width: 768px) {
  .hero-content {
    padding: 0 30px;
  }

  .hero-logo {
    height: 120px;
    margin-bottom: 30px;
  }

  .hero h1 {
    margin-bottom: 25px;
  }

  .hero-subtitle {
    margin-bottom: 25px;
  }

  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .cta-button {
    padding: 15px 40px;
    font-size: 14px;
  }

  .floating-diamond {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    height: 100px;
  }

  .hero-description {
    font-size: 1rem;
  }

  .floating-diamond {
    display: none;
  }
}
