/* golf.css */

/* Variables and Global */
:root {
  --primary-red: #ea333b;
  --primary-green: #39C343;
  --text-main: #111111;
  --text-muted: #666666;
  --green-dark: #2d6a4f;
  --green-light: #74a16f;
}

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: var(--text-main);
  font-family: 'Gabarito', sans-serif;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =========================================
   HEADER
========================================= */
.golf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  margin-bottom: 20px;
}

.golf-header .logo img {
  height: 38px;
  width: auto;
}

.golf-nav {
  display: flex;
  gap: 40px;
  margin-left: auto;
  margin-right: 40px;
}

.golf-nav a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
  transition: 0.3s;
}

.golf-nav a:hover {
  color: var(--primary-green);
  opacity: 1;
}

/* =========================================
   BUTTONS
========================================= */
.golf-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  cursor: pointer;
  margin-top: 15px;
}

.golf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-white {
  background-color: #fff;
}
.text-green { color: var(--green-dark); }


/* =========================================
   GOLF HERO BANNER
========================================= */
.golf-hero {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 80px;
  margin-bottom: 80px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.golf-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.golf-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 65%; height: 100%;
  background: linear-gradient(90deg, rgba(29, 131, 72, 0.9) 20%, rgba(29, 131, 72, 0) 100%);
  z-index: 1;
}

.golf-hero-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  color: #fff;
}

.golf-hero-content h1 {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.golf-hero-content h2 {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.golf-hero-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}


/* =========================================
   TRANSFORM TEXT SECTION
========================================= */
.golf-transform-text {
  text-align: center;
  margin-bottom: 60px;
}

.golf-transform-text h2 {
  font-size: 40px;
  line-height: 1.2;
  color: #2b2b2b;
  margin-bottom: 10px;
}

.golf-transform-text h3.text-green-light {
  font-size: 32px;
  color: var(--green-light);
  font-weight: 500;
  margin: 0;
}


/* =========================================
   FEATURES GRID (3 CARDS)
========================================= */
.golf-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.golf-feature-card {
  display: flex;
  flex-direction: column;
}

.golf-feature-img-wrapper {
  width: 100%;
  height: 280px; 
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.golf-feature-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.golf-feature-card:hover .golf-feature-img-wrapper img {
  transform: scale(1.05);
}

.golf-feature-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 0 0 8px 0;
}

.golf-feature-text p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}


/* =========================================
   BENEFITS ROW (ICONS)
========================================= */
.golf-benefits {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
  margin-bottom: 60px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.benefit-icon img {
  width: 40px;
  height: auto;
}

.benefit-text h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: #111;
}

.benefit-text p {
  font-size: 13px;
  margin: 0;
  color: #777;
}


/* =========================================
   CONTACT & QR SECTION
========================================= */
.golf-contact {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 100px;
}

.golf-contact h2 {
  font-size: 32px;
  color: #2b2b2b;
  margin-bottom: 30px;
}

.golf-qr-container {
  display: inline-block;
}

.golf-qr-container img {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 10px;
  background: #fff;
}


/* =========================================
   FOOTER TWEAKS
========================================= */
.aihome-footer {
  background-color: #2b2b2b;
  color: #fff;
  padding: 60px 0 40px;
  margin-top: 50px;
}

.aihome-footer__inner {
  display: flex;
  justify-content: space-between;
}

.aihome-footer__brand img {
  height: 45px;
  margin-bottom: 20px;
}

.aihome-footer__meta, .aihome-footer__contact {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #bbb;
}

.aihome-footer__copy {
  font-size: 12px;
  color: #777;
  margin-top: 30px;
}
