/* ===================== Hero Section ===================== */
:root {
  --hero-gradient: linear-gradient(180deg, #000 0%, #000000 100%);
  --hero-accent: #f7b733;
  --hero-accent-hover: #e8c940;
  --text-light: #f9f9f9;
  --btn-radius: 50px;
  --max-content-width: 1100px;
  --hero-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

/* ===================== Navigation (Always on Top) ===================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* ===================== Hero Section ===================== */
header {
  background: var(--hero-gradient);
  color: var(--text-light);
  text-align: center;
  padding: clamp(6rem, 8vw, 8rem) 1rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  z-index: 100;
}

/* Hero Container */
header .container {
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: 0 clamp(1rem, 3vw, 2rem);
  box-sizing: border-box;
}

/* Hero Image Section */
.hero-image {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--hero-shadow);
  margin: 0 auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
}

/* Background Overlay */
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

/* Hero Content */
.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-light);
  padding: clamp(1rem, 4vw, 2.5rem);
  z-index: 2;
}

/* Hero Title */
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
  transition: color 0.5s ease, transform 0.5s ease;
}

/* Hero Text */
.hero-content p {
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  line-height: 1.6;
  margin: 1rem 0 2rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.hero-content p:hover {
  opacity: 1;
}

/* Call to Action Button */
.hero-content .cta-button {
  background-color: #fff;
  color: #1e90ff;
  padding: clamp(0.7rem, 1.2vw, 1rem) clamp(1.2rem, 3vw, 2rem);
  border: none;
  border-radius: var(--btn-radius);
  font-size: clamp(0.9rem, 1.3vw, 1.2rem);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.hero-content .cta-button:hover {
  background: linear-gradient(145deg, var(--hero-accent-hover), var(--hero-accent));
  color: #000;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

/* ===================== Responsive Adjustments ===================== */

/* Tablet */
@media (max-width: 1024px) {
  header {
    padding-top: 6rem;
    min-height: auto;
  }

  .hero-image {
    max-width: 90%;
    aspect-ratio: 16 / 10;
  }

  .hero-content {
    max-width: 85%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  header {
    padding-top: 5rem;
    padding-bottom: 2.5rem;
  }

  .hero-image {
    max-width: 85%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .hero-content {
    max-width: 85%;
    padding: 1.5rem 1rem;
  }

  .hero-content h1 {
    font-size: clamp(1.7rem, 6vw, 2.6rem);
  }

  .hero-content p {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  header {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }

  .hero-image {
    max-width: 90%;
    aspect-ratio: 1 / 1;
  }

  .hero-content {
    max-width: 90%;
    padding: 1rem;
  }

  .hero-content h1 {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .hero-content .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* ===================== Popup (Always Visible) ===================== */
#privacy-popup {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
}
