/* Global scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Base body styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    color: #333;
}
  
/* Header layout and appearance */
header {
  background-color: #0072CE;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Hero section styling */
.hero {
  background-color: #F8A531;
  color: white;
  padding: 3rem 1rem;
  text-align: center;
}

/* Generic content section styles */
.content-section {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: auto;
}

/* Section heading color */
.content-section h2 {
  color: #0072CE;
}

/* Mayor section layout */
.mayor-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

/* Mayor photo styling */
.mayor-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #F8A531;
}

/* View map section styling */
.view-map-section {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #F8A53110;
}

/* Map button appearance */
.map-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #0072CE;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

/* Map button hover effect */
.map-button:hover {
  background-color: #005ca3;
}  

/* Responsive styles for larger screens */
@media (min-width: 768px) {
  .mayor-container {
    flex-direction: row;
    text-align: left;
  }

  .mayor-photo {
    margin-right: 1.5rem;
  }
}
  