/* Seven Stata Golf Club - Premium Styling */
:root {
  --primary-color: #1a4d3a;
  --secondary-color: #2d5a47;
  --accent-color: #d4af37;
  --text-dark: #333333;
  --text-light: #666666;
  --text-white: #ffffff;
  --background-light: #f8f9fa;
  --background-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-light: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-medium: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-heavy: 0 8px 24px rgba(0,0,0,0.2);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

/* Buttons */
.btn-primary, .cta-button, .submit-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-white);
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary:hover, .cta-button:hover, .submit-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 22px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-white);
}

.btn-tertiary {
  background: var(--accent-color);
  color: var(--text-dark);
  border: none;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

.btn-tertiary:hover {
  background: #b8941f;
}

/* Header */
.header {
  background: var(--background-white);
  box-shadow: var(--shadow-light);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  z-index: -2;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-white);
  text-align: center;
  padding: 8rem 0 4rem;
  margin-top: 80px;
}

.page-hero h1 {
  color: var(--text-white);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Sections */
.about-section,
.goals-section,
.success-section,
.team-section,
.services-section,
.contact-info-section,
.page-content,
.contact-section,
.thank-you-section,
.legal-content,
.additional-info-section,
.team-values-section,
.cta-section {
  padding: 4rem 0;
}

.about-section,
.success-section,
.contact-info-section,
.additional-info-section,
.cta-section {
  background: var(--background-light);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.section-header h2 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Grids */
.goals-grid,
.services-grid,
.team-grid,
.contact-info-grid,
.info-grid,
.values-grid,
.features-grid,
.actions-grid,
.services-detail-grid,
.team-detail-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.goals-grid,
.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.team-grid,
.contact-info-grid,
.info-grid,
.values-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.features-grid,
.actions-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.services-detail-grid,
.team-detail-grid {
  grid-template-columns: 1fr;
  gap: 3rem;
}

/* Cards */
.goal-card,
.service-card,
.team-card,
.contact-card,
.info-card,
.value-card,
.feature-card,
.action-card,
.service-detail,
.team-detail-card {
  background: var(--background-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  text-align: center;
}

.goal-card:hover,
.service-card:hover,
.team-card:hover,
.contact-card:hover,
.info-card:hover,
.value-card:hover,
.feature-card:hover,
.action-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service-detail,
.team-detail-card {
  text-align: left;
  padding: 3rem;
}

.service-icon,
.contact-icon,
.info-icon,
.value-icon,
.feature-icon,
.action-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.service-icon-large {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: var(--background-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-icon {
  width: 48px;
  height: 48px;
}

.team-avatar-large {
  width: 120px;
  height: 120px;
  margin-bottom: 1.5rem;
  background: var(--background-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-icon-large {
  width: 72px;
  height: 72px;
}

/* Success Stats */
.success-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-card {
  text-align: center;
  background: var(--background-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.stat-card h3 {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

/* Team Details */
.team-category {
  margin-bottom: 4rem;
}

.team-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-info h4 {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.team-credentials {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.credential {
  background: var(--background-light);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 500;
}

.specializations {
  margin-top: 1.5rem;
}

.specializations ul {
  list-style-type: none;
  margin-top: 0.5rem;
}

.specializations li {
  padding: 0.25rem 0;
  color: var(--text-light);
}

.specializations li::before {
  content: "✓ ";
  color: var(--accent-color);
  font-weight: bold;
}

/* Service Details */
.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-content h3 {
  color: var(--primary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-content li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.pricing {
  background: var(--background-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-top: 2rem;
}

.pricing h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-details h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.opening-hours {
  margin-top: 2rem;
}

.opening-hours h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hours-list {
  background: var(--background-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
  border-bottom: none;
}

.social-contact {
  margin-top: 2rem;
}

.social-contact h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background: var(--background-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 77, 58, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  color: white;
  font-size: 12px;
  font-weight: bold;
}

/* Thank You Page */
.thank-you-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.thank-you-icon {
  margin-bottom: 2rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  color: var(--accent-color);
}

.thank-you-message {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--text-light);
}

.next-steps,
.quick-actions,
.contact-alternatives {
  margin-top: 4rem;
  text-align: left;
}

.next-steps h2,
.quick-actions h2,
.contact-alternatives h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  text-align: center;
  padding: 1.5rem;
  background: var(--background-light);
  border-radius: var(--border-radius);
}

.step-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.step h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.direct-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--background-light);
  border-radius: var(--border-radius);
}

.contact-method-icon {
  width: 32px;
  height: 32px;
}

.return-actions {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Legal Content */
.legal-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-text h2 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-text h3 {
  color: var(--secondary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-text ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-text li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.achievements-list {
  margin-top: 1rem;
}

.achievement {
  padding: 1rem;
  background: var(--background-light);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  border-left: 4px solid var(--accent-color);
}

.cookie-table {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--background-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
  background: var(--primary-color);
  color: var(--text-white);
  font-weight: 600;
}

.cookie-settings-section {
  background: var(--background-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
  text-align: center;
}

.cookie-settings-btn {
  background: var(--primary-color);
  color: var(--text-white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-settings-btn:hover {
  background: var(--secondary-color);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--background-white);
  box-shadow: var(--shadow-heavy);
  padding: 1.5rem;
  z-index: 10000;
  border-top: 3px solid var(--primary-color);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  color: var(--text-dark);
  flex: 1;
  min-width: 300px;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 2rem;
}

.cookie-modal.show {
  display: flex;
}

.modal-content {
  background: var(--background-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-content h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.cookie-option {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 500;
}

.cookie-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.modal-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: flex-end;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.social-links img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--accent-color);
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-white);
  text-align: center;
  padding: 4rem 0;
}

.cta-content h2 {
  color: var(--text-white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-content .cta-button {
  background: var(--accent-color);
  color: var(--text-dark);
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.cta-content .cta-button:hover {
  background: #b8941f;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .team-detail-card {
    padding: 2rem;
  }
  
  .team-detail-card .team-avatar-large {
    width: 100px;
    height: 100px;
  }
  
  .avatar-icon-large {
    width: 60px;
    height: 60px;
  }
  
  .service-detail {
    padding: 2rem;
  }
  
  .service-header {
    flex-direction: column;
    text-align: center;
  }
  
  .return-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .direct-contact {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .page-hero h1 {
    font-size: 1.75rem;
  }
  
  .goals-grid,
  .services-grid,
  .team-grid,
  .contact-info-grid,
  .info-grid,
  .values-grid,
  .features-grid,
  .actions-grid {
    grid-template-columns: 1fr;
  }
  
  .success-stats {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .team-credentials {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cookie-table {
    font-size: 0.9rem;
  }
  
  .cookie-table th,
  .cookie-table td {
    padding: 0.75rem 0.5rem;
  }
}

/* Print Styles */
@media print {
  .header,
  .cookie-banner,
  .cookie-modal,
  .hamburger {
    display: none !important;
  }
  
  .hero {
    height: auto;
    padding: 2rem 0;
  }
  
  .page-hero {
    margin-top: 0;
    padding: 2rem 0;
  }
  
  * {
    box-shadow: none !important;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --accent-color: #ffff00;
    --text-dark: #000000;
    --text-light: #333333;
    --border-color: #000000;
  }
}
