/* Custom styles for Cancha Sintetica Arroyito */
:root{
  --brand-color:#007bff;
  --accent:#28a745;
  --page-bg: #eaf9ef; /* soft light green for page content */
}

/* Page background: light green for synthetic field theme */
body{
  background-color: #e6f8ee;
}

/* Ensure main content areas keep readable background */
.container, .hero-inner{
  background: var(--page-bg);
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid rgba(34,139,34,0.06);
}

.hero{
  background: linear-gradient(90deg, rgba(0,123,255,0.08), rgba(40,167,69,0.04));
  padding: 3rem 1rem;
  text-align: center;
}
.hero .site-title{
  font-size: 2rem;
  font-weight:700;
  margin-bottom:0.5rem;
}
.hero .lead{
  color: #444;
}
.btn-scroll{
  margin-top:1rem;
}

.main-sections{
  max-width:1100px;
}
.site-section{
  padding:2rem 1rem;
  border-bottom:1px solid #e9ecef;
}
.site-section h2{
  margin-bottom:1rem;
}
.placeholder{
  background: #e6f4ea; /* light green */
  border:1px solid #c7eed0;
  color: #155724;
  padding:1rem;
  border-radius:6px;
}

/* Footer styling to match light green theme */
.footer, .footer .container{
  background: transparent;
}

/* Make individual page content areas consistent */
.main-page-box{
  background: var(--page-bg);
  border-radius: 8px;
  padding: 1.25rem;
  border: 1px solid rgba(34,139,34,0.06);
}

/* Hero image styling */
.hero-image{
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Schedule list styles */
.schedule{
  background: transparent;
}
.schedule-item{
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(0,0,0,0.06);
  color: #114b2b;
}
.schedule-item strong{ color: #0b3d0b; }
.schedule-item:last-child{ border-bottom: none; }

/* Horarios image sizing */
.horarios-image{
  max-width: 180px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
@media (max-width: 576px){
  .horarios-image{ float: none !important; display: block; margin-left: auto; margin-right: auto; max-width: 240px; }
}

/* Notice for holiday/feriado availability */
.holiday-note{
  background: rgba(34,139,34,0.06);
  border: 1px solid rgba(34,139,34,0.12);
  color: #0b3d0b;
  padding: 0.9rem 1rem;
  border-radius: 6px;
}

/* Services list styling: each item on its own line */
.service-item{
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(0,0,0,0.04);
  color: #114b2b;
  font-weight: 600;
}
.service-item:last-child{ border-bottom: none; }

/* Two-column layout for Servicios: text (left) and payment icons column (right) */
.services-inner{
  display:flex;
  gap:1.25rem;
  align-items:flex-start;
}
.services-text{ flex: 1; }
.payments-column{ width:260px; display:flex; justify-content:center; }
.payments-row{ display:flex; flex-direction:column; gap:0.75rem; align-items:center; }
.payment-icon{ max-width:220px; height:auto; border-radius:8px; box-shadow: 0 1px 6px rgba(0,0,0,0.08); }
@media (max-width:768px){
  .payments-column{ width:200px; }
}
@media (max-width:576px){
  /* stack vertically on small screens */
  .services-inner{ flex-direction:column; }
  .payments-column{ width:100%; }
  .payments-row{ flex-direction:row; justify-content:center; }
  .payment-icon{ max-width:160px; }
}

/* Contact page WhatsApp image */
.contact-whatsapp{ max-width:220px; height:auto; display:block; margin-left:auto; margin-right:auto; border-radius:8px; box-shadow:0 6px 18px rgba(0,0,0,0.08); }
@media (max-width:576px){ .contact-whatsapp{ max-width:160px; } }

/* Lift payment icons so they overlap the placeholder border (appear outside it) */
.payments-column{ /* ensure relative positioning for children */
  position: relative;
}
.payments-row{
  position: relative;
  top: -36px; /* pull upward so icons sit outside the placeholder */
  z-index: 30;
}
.payment-icon{
  background: #ffffff; /* white background so icons don't look faded */
  padding: 0.6rem;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

@media (max-width:576px){
  /* on small screens don't overlap too much */
  .payments-row{ top: -18px; }
}

/* Logo under home title */
.hero-logo{
  max-width: 160px;
  height: auto;
  display: block;
  margin: 0.5rem auto;
}
@media (max-width: 576px){
  .hero-logo{ max-width: 120px; }
}

/* Banner logo placed inside the banner area */
.hero-banner{
  max-width: 520px; /* increased width for a wider banner */
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
}
@media (max-width: 768px){
  .hero-banner{ max-width: 420px; }
}
@media (max-width: 576px){
  .hero-banner{ max-width: 320px; }
}

/* Gallery images stacked, medium-large size but responsive */
.gallery-list{ display:flex; flex-direction:column; gap:1.25rem; align-items:center; }
.gallery-item{ width:100%; display:flex; justify-content:center; }
.gallery-image{ max-width:820px; width:100%; height:auto; border-radius:8px; box-shadow:0 6px 18px rgba(0,0,0,0.08); }
@media (max-width:992px){ .gallery-image{ max-width:720px; } }
@media (max-width:768px){ .gallery-image{ max-width:520px; } }
@media (max-width:576px){ .gallery-image{ max-width:360px; } }

/* Responsive tweaks */
@media (max-width: 576px){
  .hero .site-title{ font-size:1.5rem; }
}

/* Small animation helper classes */
.fade-in{ display:none; }
.bounce-hover{ transition: transform .15s ease-in-out; }
.bounce-hover:hover{ transform: translateY(-6px); }
    