/* style.css */

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&family=Pacifico&display=swap');

/* General Body Styling */
body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  background: linear-gradient(to bottom right, #1b0033, #330033, #4d004d);
  color: #f0e8ff;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #2b0040;
  padding: 30px;
  text-align: center;
  border-bottom: 2px solid #8844ff;
}

header h1 {
  font-family: 'Pacifico', cursive;
  font-size: 3.2em;
  margin: 0;
  color: #f9caff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

/* Navigation */
nav {
  background-color: #1a001f;
  display: flex;
  justify-content: center;
  padding: 14px 0;
  box-shadow: inset 0 -1px 0 #8844ff;
}

nav a {
  color: #f0e8ff;
  text-decoration: none;
  margin: 0 25px;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
  position: relative;
}

nav a:hover {
  color: #ddaaff;
}

/* Section Styling */
section {
  padding: 60px 30px;
  text-align: center;
  max-width: 900px;
  margin: 40px auto;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

section h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.3em;
  color: #ffccff;
  margin-bottom: 20px;
}

/* Footer */
footer {
  text-align: center;
  padding: 5px;
  background-color: #1a001f;
  color: #bfa6ff;
  font-size: 0.95em;
  }

#footer-container {
    border-top: 2px solid #8844ff;
    border-bottom: 2px solid #8844ff;
  }

footer .social-links {
    margin-top: 10px;
  }
  
  footer .social-links a {
    margin: 0 10px;
    font-size: 1.5em;
    color: #ddaaff;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.3s ease;
  }
  
  footer .social-links a:hover {
    transform: scale(1.2);
    color: #ffccff;
  }

  

/* Buttons */
button {
  padding: 12px 28px;
  background-color: #ddaaff;
  color: #2b0040;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1em;
  box-shadow: 0 2px 5px rgba(0,0,0,0.4);
  transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover {
  background-color: #f0e8ff;
  color: #1b0033;
}

/* Forms */
form {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.05);
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  font-size: 1em;
  background-color: #fff;
  color: #1b0033;
}

/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.gallery img {
  width: 250px;
  height: auto;
  border: 4px solid #ddaaff;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.gallery img:hover {
  transform: scale(1.04);
  box-shadow: 0 0 20px #ddaaff;
}

.logo-container {
    text-align: center;
    padding: 20px 0;
  }
  
  .logo {
    max-width: 500px;
    width: 80%;
    height: auto;
  }

  .music-quote-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: #2d1b3a;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(204, 153, 255, 0.2);
  }
  
  .quote-image {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(204, 153, 255, 0.4);
  }
  
  .music-quote {
    font-style: italic;
    color: #cc99ff;
    font-size: 1.2rem;
    margin: 0;
    text-shadow: none;
    -webkit-text-stroke: 0;
    filter: none;
  }
  
  .music-quote span {
    display: block;
    margin-top: 0.75rem;
    font-weight: bold;
    font-size: 1rem;
    color: #ff99cc;
  }
  

.video-embed {
    position: relative;
    width: 100%;
    max-width: 720px;
    height: 405px; /* 720 × 0.5625 = 405 (16:9 ratio) */
    margin: 40px auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  }
  
  .video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
  }
  
  /* Make it responsive for small screens */
  @media (max-width: 768px) {
    .video-embed {
      height: auto;
      padding-bottom: 56.25%;
    }
  
    .video-embed iframe {
      position: absolute;
      width: 100%;
      height: 100%;
    }
  }

  section {
    padding: 40px 20px;
  }

