body {
  box-sizing: border-box;
  min-height: 100vh;

  /* gradient (semi-transparent) on top of the image */
  background: linear-gradient(
                to right,/*
                rgba(255, 27, 107, 0.65), 
                rgba(69, 202, 255, 0.65)  */
                rgba(235, 244, 245, 0.65),
                rgba(181, 198, 224, 0.65)
             ),
             url("../../images/guitar background 1.jpg") center/cover no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* Social Icons Styling */
.social-icons {
  display: flex;
  gap: 24px;
}

.social-link {
  font-size: 30px;
  color: white;
  transition: transform 0.2s ease, color 0.2s ease;
}

/* Brand Colors on Hover */
.social-link.instagram:hover { color: #dd2a7b; }
.social-link.facebook:hover  { color: #1877f2; }
.social-link.whatsapp:hover  { color: #25d366; }
.social-link.youtube:hover   { color: #ff0000; }
.social-link.patreon:hover   { color: #f96854; }
.social-link.spotify:hover   { color: #1DB954; }
.social-link.tiktok:hover    { color: #000000; }



nav img {
  width: 80px;
}

.navigation-bar {
  display: flex;
  margin: 0;
  align-items: center;      /* vertically center logo & links */
  justify-content: space-between; /* space between logo and links */
  padding: 10px 20px;
}

.navigation-bar .logo {
  height: 50px;             /* control logo size */
}

.navigation-bar ul {
  list-style: none;         /* remove bullet points */
  display: flex;            /* align list items horizontally */
  gap: 20px;                /* space between items */
  margin: 0;
  padding: 0;
}

.navigation-bar ul li a {
  text-decoration: none;
  color: #010201;
  font-weight: 600;
  transition: color 0.3s;
}


.navigation-bar ul li {
  padding-top: 10px;
}

.navigation-bar ul li a {
  font-size: 1.5rem;
}


.title-container {
  display: flex;
  flex-direction: column; 
  align-items: center;
  padding-top: 30px; 
}

.title-container h1 {
  font-size: 4rem;      
  font-weight: bold;
  margin-bottom: 5px;
}

.title-container p {
  font-size: 2rem;
  font-weight: 500;
}

.title-container img {
  height: 400px;
}

.hero-section-image {
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
  border-radius: 5px;
}

.CTA {
  background-color: aliceblue;
  border: 1px solid #dd2a7b;
  padding: 10px 15px;
}

.CTA:hover {
  background-color: #dd2a7b;
  color: #fff !important;
}

