

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url('../hero-golf-course.png') no-repeat center center/cover;
  color: var(--white);
  overflow: hidden;
  margin-top: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-section .container {
  z-index: 2;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 550px;
}

.hero-buttons .btn {
  margin-bottom: 10px;
}

/* Floating booking card (glassmorphism) */
.booking-preview-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  color: var(--white);
}

.booking-preview-card .form-control,
.booking-preview-card .form-select {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  border-radius: 8px;
  padding: 10px 15px;
  transition: var(--transition-smooth);
}

.booking-preview-card .form-control:focus,
.booking-preview-card .form-select:focus {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--accent-gold);
  box-shadow: none;
  color: var(--white);
}

.booking-preview-card .form-select option {
  color: var(--dark-text);
  background: var(--white);
}

.text-light-gray {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* ===== FEATURE SECTION ===== */
.features-section {
  background-color: var(--white);
  padding: 80px 0;
}

.feature-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 25px;
  box-shadow: var(--box-shadow);
  transition: var(--transition-smooth);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.feature-icon {
  font-size: 2.8rem;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark-text);
}

.feature-text {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background-color: var(--light-gray);
  padding: 80px 0;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.about-image-wrapper {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-image {
  border-radius: var(--border-radius);
  transition: transform 0.5s ease;
}

.about-image:hover {
  transform: scale(1.03);
}

/* ===== STATS SECTION ===== */
.stats-section {
  background-color: var(--white);
  padding: 70px 0;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.2;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: #6c757d;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== CALL TO ACTION ===== */
.cta-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1592919505780-303950717480?q=80&w=1470&auto=format&fit=crop') no-repeat center center/cover;
  min-height: 400px;
  color: var(--white);
  text-align: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  z-index: 2;
  position: relative;
}

.cta-text {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  z-index: 2;
  position: relative;
}

.cta-section .btn {
  z-index: 2;
  position: relative;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-description {
    max-width: 100%;
  }
  .booking-preview-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-section {
    text-align: center;
  }
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }
  .hero-buttons .btn:last-child {
    margin-bottom: 0;
  }
  .stat-number {
    font-size: 2.2rem;
  }
  .about-section .row {
    flex-direction: column-reverse;
  }
  .about-image-wrapper {
    margin-bottom: 30px;
  }
}