/* =============================================
   GolfMark Express – Global Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Brand palette */
  --gme-forest:    #103640;
  --gme-green:     #0b5b1d;
  --gme-green-lt:  #1a7a30;
  --gme-gold:      #c8a96e;
  --gme-gold-lt:   #e2cc9a;
  --gme-teal:      #1f7ba8;
  --gme-teal-dk:   #165a7a;
  --gme-mint:      #34a88c;
  --gme-cream:     #faf6ef;
  --gme-cream-dk:  #f0e8d8;
  --gme-white:     #ffffff;
  --gme-dark:      #1a1a1a;
  --gme-gray:      #6b7280;
  --gme-gray-lt:   #e5e7eb;
  --gme-red:       #c0392b;
  --gme-success:   #17803f;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 18px 50px rgba(0,0,0,0.20);
  --shadow-xl:  0 24px 60px rgba(0,0,0,0.30);

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-pill: 999px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gme-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-nav.scrolled {
  background: rgba(16, 54, 64, 0.97);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  padding: 10px 40px;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gme-cream);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gme-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gme-gold-lt);
}

.nav-cta {
  padding: 8px 22px;
  border: 1.5px solid var(--gme-gold);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--gme-gold) !important;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background: var(--gme-gold);
  color: var(--gme-forest) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--gme-cream);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .site-nav {
    padding: 14px 20px;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--gme-forest);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 40px;
    gap: 24px;
    transition: right 0.35s ease;
    box-shadow: -8px 0 30px rgba(0,0,0,0.3);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    font-size: 16px;
  }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gme-teal), var(--gme-mint));
  color: var(--gme-white);
  box-shadow: 0 8px 24px rgba(31,123,168,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(31,123,168,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--gme-cream);
  border: 2px solid var(--gme-cream);
}

.btn-outline:hover {
  background: var(--gme-cream);
  color: var(--gme-forest);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gme-gold), #d4b87a);
  color: var(--gme-forest);
  box-shadow: 0 6px 20px rgba(200,169,110,0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200,169,110,0.5);
}

/* =============================================
   SECTION LAYOUT
   ============================================= */
.section {
  padding: 80px 40px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gme-gold);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--gme-forest);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gme-gray);
  max-width: 560px;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section {
    padding: 48px 20px;
  }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--gme-forest);
  color: var(--gme-cream);
  padding: 60px 40px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(250,246,239,0.6);
  margin-top: 12px;
  line-height: 1.6;
  max-width: 300px;
}

.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 8px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--gme-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(250,246,239,0.7);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gme-gold-lt);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.25s;
}

.footer-social a:hover {
  background: var(--gme-gold);
  color: var(--gme-forest);
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(250,246,239,0.45);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .site-footer {
    padding: 40px 20px 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
