/* 
 * style.css
 * Version: 1.0.1
 * Last updated: 2024
 */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #2c3e50;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  min-height: 100vh;
}

/* Typography */
h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: #1a472a;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #2d5016;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.875rem;
  color: #1a472a;
}

p {
  margin-bottom: 1.25rem;
  color: #34495e;
  font-size: 1.0625rem;
}

a {
  color: #27ae60;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

a:hover {
  color: #1e8449;
  text-decoration: underline;
}

/* Container */
.page-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .page-wrapper {
    padding: 0 2.5rem;
  }
}

/* Header & Navigation */
.site-header {
  background: linear-gradient(135deg, #ffffff 0%, #f1f8f4 100%);
  border-bottom: 3px solid #27ae60;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.nav-container {
  padding: 1.5rem 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.brand-name {
  font-size: 1.875rem;
  font-weight: 900;
  color: #27ae60;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-navigation {
  display: none;
  list-style: none;
  gap: 2.5rem;
}

.main-navigation li a {
  color: #2c3e50;
  font-weight: 600;
  font-size: 1.0625rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-navigation li a:hover,
.main-navigation li a.current-page {
  color: #27ae60;
  border-bottom-color: #27ae60;
  text-decoration: none;
}

.toggle-menu {
  display: block;
  background: #27ae60;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #ffffff;
  padding: 0.625rem 1rem;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.toggle-menu:hover {
  background: #1e8449;
}

.dropdown-menu {
  display: none;
  width: 100%;
  padding: 1.5rem 0;
  border-top: 2px solid #e8f5e9;
  margin-top: 1rem;
  background: #ffffff;
}

.dropdown-menu.show-menu {
  display: block;
}

.dropdown-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dropdown-menu ul li a {
  color: #2c3e50;
  font-weight: 600;
  display: block;
  padding: 0.875rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.dropdown-menu ul li a:hover,
.dropdown-menu ul li a.current-page {
  color: #27ae60;
  background: #f1f8f4;
  border-left-color: #27ae60;
  text-decoration: none;
}

@media (min-width: 768px) {
  .main-navigation {
    display: flex;
  }
  
  .toggle-menu {
    display: none;
  }
  
  .dropdown-menu {
    display: none !important;
  }
}

/* Hero Section */
.banner-section {
  background: linear-gradient(135deg, #1a472a 0%, #27ae60 50%, #2ecc71 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.banner-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .banner-content {
    grid-template-columns: 1fr 1fr;
  }
}

.banner-text h1 {
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-text h2 {
  color: #e8f5e9;
  font-weight: 500;
  font-size: 1.75rem;
}

.banner-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

/* Images - Responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Content Sections */
.main-content-area {
  padding: 4rem 0;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.text-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 3rem 0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 2px solid #e8f5e9;
}

.content-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 3rem 0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 2px solid #e8f5e9;
}

/* Services Grid */
.services-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-item {
  background: #ffffff;
  border: 2px solid #e8f5e9;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #27ae60, #2ecc71);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 8px 24px rgba(39, 174, 96, 0.15);
  border-color: #27ae60;
  transform: translateY(-4px);
}

.service-item:hover::before {
  transform: scaleY(1);
}

.service-item h3 {
  color: #27ae60;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 800;
  color: #1a472a;
  margin: 1rem 0;
  padding-left: 0.5rem;
}

.service-features {
  list-style: none;
  margin-top: 1.5rem;
  padding-left: 0.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  color: #555;
  position: relative;
  padding-left: 1.75rem;
}

.service-features li::before {
  content: '⚽';
  position: absolute;
  left: 0;
  font-size: 1.25rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #1a472a 0%, #2d5016 100%);
  color: #b8d4c1;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-block h3 {
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-block ul li {
  margin-bottom: 0.75rem;
}

.footer-block ul li a {
  color: #b8d4c1;
  transition: color 0.3s ease;
}

.footer-block ul li a:hover {
  color: #2ecc71;
  text-decoration: none;
}

.footer-bottom-bar {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #95a5a6;
  font-size: 0.9375rem;
}

/* Contact Section */
.contact-box {
  background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 12px;
  margin: 2.5rem 0;
  border: 2px solid #27ae60;
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.1);
}

.contact-item-row {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  border-left: 4px solid #27ae60;
}

.contact-item-row span {
  margin-right: 1rem;
  font-size: 1.75rem;
}

/* Utility Classes */
.text-center-align {
  text-align: center;
}

.margin-top-medium {
  margin-top: 2rem;
}

.margin-bottom-medium {
  margin-bottom: 2rem;
}

/* Prose Styles for Content */
.content-wrapper p {
  font-size: 1.125rem;
  line-height: 1.9;
  margin-bottom: 1.75rem;
}

.content-wrapper h2 {
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #e8f5e9;
}

.content-wrapper h2:first-of-type {
  margin-top: 0;
}

.content-wrapper h3 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.content-wrapper h4 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #27ae60;
}

.content-wrapper ul,
.content-wrapper ol {
  margin-bottom: 1.75rem;
  padding-left: 2.5rem;
}

.content-wrapper ul li,
.content-wrapper ol li {
  margin-bottom: 0.875rem;
  line-height: 1.8;
  color: #34495e;
  font-size: 1.0625rem;
}

.content-wrapper ul li ul,
.content-wrapper ul li ol,
.content-wrapper ol li ul,
.content-wrapper ol li ol {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
