/* herosection.css */

:root {
  --gh-gold: #e5b567;
  --gh-gold-dark: #d89c5a;
  --gh-white: #ffffff;
  --gh-text-dim: #d3cccc;
  --gh-overlay-dark: rgba(5, 5, 5, 1);
}

.gh-hero {
  position: relative;
  margin-top: 50px;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #0b0b0b; /* Fallback */
}

/* --- Background Layer --- */
.gh-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 45% center;
  z-index: 1;
}

/* Dark overlay for readability */
.gh-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    var(--gh-overlay-dark) 0%,
    rgba(5, 5, 5, 0.9) 30%,
    rgba(5, 5, 5, 0) 70%
  );
  z-index: 2;
}

/* --- Content Layout --- */
.gh-content {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 8%;
  z-index: 5;
}

.gh-text-area {
  max-width: 600px;
}

.gh-tagline {
  color: var(--gh-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
  text-transform: uppercase;
}

.gh-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--gh-white);
}

.gh-title span {
  color: var(--gh-gold);
}

.gh-description {
  color: var(--gh-text-dim);
  font-size: 1.1rem;
  margin-bottom: 35px;
  line-height: 1.6;
  max-width: 480px;
}

/* --- Buttons --- */
.gh-cta-group {
  display: flex;
  gap: 15px;
}

.gh-btn-fill,
.gh-btn-outline {
  padding: 16px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
}

.gh-btn-fill {
  background: linear-gradient(90deg, var(--gh-gold), var(--gh-gold-dark));
  color: black;
}

.gh-btn-outline {
  background: transparent;
  color: var(--gh-gold);
  border: 2px solid var(--gh-gold);
}

/* --- Hover Effects --- */
.gh-btn-fill:hover,
.gh-btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(196, 107, 45, 0.15);
}

.gh-btn-outline:hover {
  background-color: var(--gh-gold);
  color: black;
}

.gh-btn-fill:active,
.gh-btn-outline:active {
  transform: translateY(-1px);
}

/* --- Responsive Breakpoints --- */

@media (max-width: 1024px) {
  .gh-bg {
    background-position: 75% center;
  }
}

@media (max-width: 768px) {
  .gh-overlay {
    background: linear-gradient(
      to bottom,
      rgba(5, 5, 5, 0.8) 0%,
      rgba(5, 5, 5, 0.4) 50%,
      rgba(5, 5, 5, 0.9) 100%
    );
  }

  .gh-bg {
    background-position: center center;
  }

  .gh-content {
    justify-content: center;
    text-align: center;
    padding: 0 20px;
  }

  .gh-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .gh-btn-fill,
  .gh-btn-outline {
    width: 100%;
    max-width: 320px;
  }

  .gh-description {
    margin-left: auto;
    margin-right: auto;
  }
}
/* --- Hero Stats Extension --- */

.gh-hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.gh-stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid rgba(229, 181, 103, 0.2);
  transition: transform 0.3s ease;
}

.gh-stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.gh-stat-icon {
  font-size: 2rem;
  color: var(--gh-gold);
}

.gh-stat-item h3 {
  color: var(--gh-white);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 4px;
}

.gh-stat-item p {
  color: var(--gh-text-dim);
  font-size: 0.85rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .gh-hero-stats {
    justify-content: center;
    gap: 15px;
  }

  .gh-stat-item {
    width: 100%;
    max-width: 320px;
  }
}
