/* Tailwind utility-first + overrides for Seven County Saunas */

body {
  font-family: 'Raleway', sans-serif;
  background-color: #f8f5f1;
  color: #1f2937; /* gray-800 */
}

header {
  background-image: url('https://losberg.neocities.org/background.png');
  background-size: 150px 150px;
  background-repeat: repeat;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  header {
    background-size: 80px 80px;
  }
}

body {
  padding-top: 100px;
}

.hero-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1603816259820-174f96b7c915');
  background-size: cover;
  background-position: center;
  color: white;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-button {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  filter: brightness(1.05);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4b5563; /* gray-700 */
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #000;
}

#logoImage {
  height: 80px;
  width: auto;
}

footer {
  background-color: #1f2937; /* gray-900 */
  color: #9ca3af; /* gray-400 */
}

footer a:hover {
  color: white;
}