/* Custom Styles for A2Z Pools */

html {
  scroll-behavior: smooth;
}

.hero-content h1, .hero-content p {
  text-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.btn-primary {
  background: linear-gradient(90deg, #007bff 0%, #00c6ff 100%);
  border: none;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #005fa3 0%, #00a6d6 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,123,255,0.15);
}

.card {
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,60,120,0.08);
  transition: box-shadow 0.3s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(0,60,120,0.16);
  transform: translateY(-4px) scale(1.02);
}

.section-title {
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #007bff 0%, #00c6ff 100%);
  margin: 0.5rem auto 0 auto;
  border-radius: 2px;
}

.gallery-img {
  box-shadow: 0 2px 12px rgba(0,60,120,0.10);
  transition: box-shadow 0.3s, transform 0.2s;
}
.gallery-img:hover {
  box-shadow: 0 8px 32px rgba(0,60,120,0.18);
  transform: scale(1.06);
}

footer {
  letter-spacing: 1px;
  font-size: 1.1rem;
}

@media (max-width: 767px) {
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1.1rem; }
  .section-title { font-size: 1.5rem; }
}
