@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Georgia:wght@400;700&display=swap');

:root {
  --golf-green-primary: #16a34a;
  --golf-green-dark: #14532d;
  --golf-green-800: #166534;
  --golf-gold-accent: #f59e0b;
  --golf-gold-light: #fcd34d;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --background-white: #ffffff;
  --background-light: #f9fafb;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
}

.display-font {
  font-family: 'Georgia', serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--golf-green-primary), var(--golf-green-dark));
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: fit-content;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--golf-green-primary);
  padding: 14px 28px;
  border: 2px solid var(--golf-green-primary);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: fit-content;
}

.btn-secondary:hover {
  background: var(--golf-green-primary);
  color: white;
  transform: translateY(-2px);
}

.section-padding {
  padding: 80px 0;
}

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

.hero-section {
  background: linear-gradient(135deg, var(--golf-green-dark) 0%, var(--golf-green-primary) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/image_assets/hero-4dffcd49957ee7ad3091befb19777f2b.jpg') center/cover;
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
}

.bg-golf-green-800 {
  background-color: var(--golf-green-800);
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--golf-green-primary);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card {
  background: var(--background-light);
  border-radius: 12px;
  padding: 30px;
  border-left: 4px solid var(--golf-gold-accent);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--golf-gold-accent);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.navigation {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-link {
  color: #1f2937;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  background: var(--golf-green-primary);
  color: white;
}

.footer {
  background: var(--golf-green-dark);
  color: white;
  padding: 60px 0 30px;
}

.contact-form {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--golf-green-primary);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text-primary);
}

.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
  z-index: 1000;
  display: none;
}

.cookie-consent-banner.show {
  display: block;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background: var(--golf-green-primary);
  color: white;
}

.cookie-accept:hover {
  background: var(--golf-green-dark);
}

.cookie-decline {
  background: #6b7280;
  color: white;
}

.cookie-decline:hover {
  background: #4b5563;
}

.price-badge {
  background: linear-gradient(135deg, var(--golf-gold-accent), var(--golf-gold-light));
  color: var(--golf-green-dark);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .cookie-consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  
  .cookie-buttons {
    justify-content: stretch;
  }
  
  .cookie-btn {
    flex: 1;
    justify-content: center;
    display: flex;
  }
}