:root {
  --header-bg: rgba(255, 192, 192, 0.95);
  --text-color: #241f21;
  --transition-speed: 0.3s;

    /* Primary Pastels - Richer and more vibrant */
    --pastel-rose: #FFE4E6;      /* Soft rose pink - for hero/header accents */
    --pastel-peach: #FFE5D9;     /* Warm peach - for merch section */
    --pastel-sage: #E2EAE4;      /* Muted sage green - for about section */
    --pastel-lavender: #E9E4F0;  /* Soft purple - for music section */
    --pastel-sand: #F5E6D3;      /* Warm sand - for shows section */
    
    /* Accent Colors - For buttons and highlights */
    --accent-dusty-rose: #E8A4A4;  /* Deeper rose - for buttons */
    --accent-sage: #98B4A6;        /* Deeper sage - for hover states */
    --accent-purple: #B5A6D1;      /* Deeper purple - for accents */
    
    /* Background Gradients - For more depth */
    --gradient-rose: linear-gradient(135deg, #FFE4E6 0%, #FFD1D6 100%);
    --gradient-peach: linear-gradient(135deg, #FFE5D9 0%, #FFD1C1 100%);
    --gradient-sage: linear-gradient(135deg, #E2EAE4 0%, #D1DED5 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.7;
  color: #2a2a2a;
  font-weight: 400;
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}


h1, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 2.25rem;
  color: #1a1a1a;
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.3;
}

.section-title {
  font-size: 2.25rem;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 1px;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.3;
  text-transform: capitalize;
}

h1 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.75px;
}

h2 {
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: 1px;
  font-family: 'Cormorant Garamond', serif;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.3;
  text-transform: capitalize;
}

h3 {
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.25px;
}

/* Consistent section padding */
section {
  padding: 6rem 2rem;
}

@media (max-width: 768px) {
  section {
      padding: 4rem 1rem;
  }
}

.fa-instagram {
  color: #E1306C; /* Instagram's primary color */
  font-size: 24px; /* Change the size */
  margin: 10px; /* Add some margin */
}

.fa-spotify {
  color: #1DB954; /* Spotify's primary color */
  font-size: 30px;
  margin: 10px;
}

.fa-facebook {
  color: #1877F2; /* Facebook's primary color */
  font-size: 30px;
  margin: 10px;
}

.fa-tiktok {
  color: #000000; /* TikTok's primary color */
  font-size: 30px;
  margin: 10px;
}

.fa-apple {
  color: #000000; /* Black color for Apple Music */
  font-size: 30px;
  margin: 10px;
}

.fa-music {
  color: #FF0090; /* Color representing Deezer */
  font-size: 30px;
  margin: 10px;
}

.fa-youtube {
  color: #FF0000; /* Red color for YouTube Music */
  font-size: 30px;
  margin: 10px;
}

.fill-svg {
  fill: #333;
}