/* === Global Styles === */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* === Header === */
header {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #fff;
}

header h1 {
  color: #e63946; /* red title */
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

header h2 {
  color: #000;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

header img {
  width: 150px;
  height: auto;
  border-radius: 50%;
  border: 3px solid #e63946;
  margin-top: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

header em {
  display: block;
  color: #e63946;
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* === Section Styling === */
section {
  background-color: #e63946;
  color: #fff;
  margin: 2rem auto;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

section h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

section p {
  background-color: #fff;
  color: #333;
  border-radius: 10px;
  padding: 1rem;
  font-size: 1rem;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  max-width: 90%;
  margin: 0 auto;
}

/* === Merch Gallery === */
.merch-gallery {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.merch-gallery img {
  width: 130px;
  border-radius: 12px;
  border: 2px solid #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.merch-gallery img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

/* === Mayor Gallery === */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  justify-items: center;
}

.gallery img {
  width: 100%;
  max-width: 180px;
  border-radius: 12px;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* === Footer === */
footer {
  text-align: center;
  background-color: #e63946;
  color: #fff;
  padding: 1.5rem 1rem;
  margin-top: 3rem;
  border-top: 5px solid #000;
}

footer a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

footer a:hover {
  text-decoration: none;
}
