/* Reset and basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #fff0f5;
  color: #333;
  line-height: 1.6;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header and Navigation */
header {
  background-color: #ffb6c1;
  padding: 10px 20px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 1.2rem;
}

.nav-links a:hover {
  color: #ff1493;
}

.logo {
  /* Adjusted to center-align the text vertically */
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: 'Fredoka One', cursive;
  font-size: 2.5rem;
  color: #ff69b4;
  text-decoration: none;
}

.logo-text:hover {
  color: #ff1493;
}

/* Hero Section */
.hero {
  flex: 1;
  padding: 40px 20px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1.2;
  padding: 35px;
  text-align: left;
}

.hero-text h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 4rem;
  color: #ff69b4;
}

.hero-text h2 {
  font-size: 2rem;
  margin-top: 20px;
  color: #ff1493;
}

.hero-image {
  flex: 0.9;
  padding: 20px;
  text-align: center;
}

.hero-image img {
  max-width: 85%;
  height: auto;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 20px;
  color: #555;
}

/* Music Platform Links */
.music-platforms {
  margin: 30px 0;
}

.music-platforms p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.music-platforms a {
  display: inline-block;
  background-color: #ff69b4;
  color: #fff;
  padding: 10px 20px;
  margin: 5px;
  font-size: 1.1rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
}

.music-platforms a i {
  margin-right: 8px;
}

.music-platforms a:hover {
  background-color: #ff1493;
}

/* Platform-specific colors */
.platform-link.spotify {
  background-color: #1DB954;
}

.platform-link.spotify:hover {
  background-color: #1ED760;
}

.platform-link.apple {
  background-color: #000;
}

.platform-link.apple:hover {
  background-color: #333;
}

.platform-link.youtube {
  background-color: #FF0000;
}

.platform-link.youtube:hover {
  background-color: #E60000;
}

/* Footer */
footer {
  background-color: #ffb6c1;
  text-align: center;
  padding: 20px 10px;
}

footer p {
  color: #333;
  margin: 10px 0;
}

/* Social Media Links in Footer */
footer .social-media {
  margin: 20px 0;
}

footer .social-media a {
  color: #ff69b4;
  font-size: 2rem;
  margin: 0 10px;
  text-decoration: none;
}

footer .social-media a:hover {
  color: #ff1493;
}

footer .social-media p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-image img {
    max-width: 85%;
  }
}

/* About Page */
.about {
  text-align: center;
  padding: 40px 20px;
}

.about h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 3rem;
  color: #ff69b4;
}

.about p {
  font-size: 1.2rem;
  color: #555;
  margin-top: 10px;
}

.band-members {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.member {
  margin: 20px;
  max-width: 300px;
  text-align: center;
}

.member img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.member h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  margin-top: 15px;
  color: #ff69b4;
}

.member p {
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
}

.member p strong {
  color: #ff1493;
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {
  .band-members {
    flex-direction: column;
    align-items: center;
  }

  .member {
    max-width: 80%;
  }
  
  .member img {
    /* Set the width and height to ensure consistency */
    width: 250px;
    height: 250px;
  
    /* Ensures the image covers the entire area without distortion */
    object-fit: cover;
  
    /* Makes the image circular */
    border-radius: 50%;
  
    /* Optional: Add a border or shadow for styling */
    /* border: 2px solid #ff69b4; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

}