/* Base styling for the Palm Beach real estate website */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

header {
  background-color: #004c7f; /* deep teal blue reminiscent of the Atlantic */
  color: #ffffff;
  padding: 1.5rem 2rem;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.2rem;
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 0.5rem;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #d1eaff;
  text-decoration: underline;
}

.hero {
  position: relative;
  text-align: center;
  background-image: url('../images/hero.png');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 5rem 2rem;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.4);
  padding: 3rem;
  border-radius: 8px;
  display: inline-block;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin: 0;
}

section {
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.service-box {
  flex: 1;
  min-width: 250px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1rem;
  background-color: #f9f9f9;
}

.service-box h3 {
  margin-top: 0;
  color: #004c7f;
}

.post-preview {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.post-preview h3 {
  margin-top: 0;
  color: #004c7f;
}

.post-preview p {
  margin: 0.5rem 0 0;
}

footer {
  background-color: #f4f4f4;
  text-align: center;
  padding: 2rem;
  color: #666;
  margin-top: 2rem;
}

footer a {
  color: #004c7f;
  text-decoration: none;
}

/* Responsive design */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }
  .services {
    flex-direction: column;
  }
}