/* Global Styles for Jamie Parker Website */

body {
  font-family: 'Baron Neue', sans-serif;
  background-color: #d3d3d3;
  color: black;
  margin: 0;
  text-align: center;
  line-height: 1.6;
  text-transform: lowercase;
}

a {
  color: red;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #660000;
}

h1, h2, h3 {
  font-family: 'Baron Neue', sans-serif;
  margin-bottom: 20px;
}

section {
  padding: 60px 20px;
  border-bottom: 1px solid #d3d3d3;
}

.hero-section {
  background-color: black;
  color: white;
  text-align: center;
  padding: 20px;
}

.hero-section img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

@media (min-width: 768px) {
  .hero-section img {
    width: auto;
    max-width: 50%;
  }
}

.social-media-bubbles {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 10px 0;
}

.social-media-bubbles a {
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 10px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.social-media-bubbles a:hover {
  transform: scale(1.2);
}

.intro-text {
  font-size: 1.6rem;
  margin: 20px 0 50px;
}

#facebook-feed {
  background-color: white;
  padding: 20px;
}

.merch-section {
  background-color: black;
  color: white;
}

.merch-tiles {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.merch-tile {
  width: 30%;
  background-color: #8b0000;
  color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  text-transform: lowercase;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.merch-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.merch-tile:hover {
  background-color: #660000;
  transform: scale(1.05);
}

#mailing-list {
  background-color: black;
  color: white;
}

footer {
  padding: 20px 10px;
  background-color: #e6e6e6;
  color: black;
}

.footer-banner {
  max-width: 150px;
  height: auto;
  margin-top: 10px;
}

#mailing-list-response {
  color: green;
  margin-top: 10px;
  display: none;
}
