* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

header {
  background-color: #333;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

header .logo img {
  width: 120px;
}

header nav ul {
  list-style-type: none;
  display: flex;
}

header nav ul li {
  margin-right: 20px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #f4a261;
}

.hero {
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero .btn {
  padding: 10px 20px;
  background-color: #f4a261;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.hero .btn:hover {
  background-color: #e76f51;
}

.featured {
  text-align: center;
  padding: 40px 20px;
  background-color: #ffffff;
}

.featured h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.video-container iframe {
  width: 100%;
  max-width: 720px;
  height: 400px;
  margin: 0 auto;
}

.events {
  background-color: #333;
  color: white;
  padding: 40px 20px;
}

.events h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.event h3 {
  font-size: 1.8rem;
}

.event p {
  font-size: 1.1rem;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

footer .contact-info p,
footer .social-links a {
  margin-bottom: 10px;
}

footer .social-links a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

footer .footer-text {
  margin-top: 20px;
}

.song-list {
  padding: 40px 20px;
  background-color: #ffffff;
  text-align: center;
}

.song-list h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.song-list p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.songs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.song {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.song:hover {
  transform: scale(1.05);
}

.song h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.song p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.song iframe {
  width: 100%;
  border-radius: 12px;
}

@media (max-width: 1024px) {
  header nav ul {
    flex-direction: column;
    text-align: center;
  }

  .songs {
    grid-template-columns: 1fr;
  }

  .song-list h1 {
    font-size: 2rem;
  }

  .song-list p {
    font-size: 1rem;
  }

  footer {
    padding: 20px 10px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  header nav ul {
    flex-direction: column;
    margin-top: 20px;
  }

  .songs {
    grid-template-columns: 1fr;
  }

  .song {
    padding: 15px;
  }

  .song-list h1 {
    font-size: 1.8rem;
  }

  .song-list p {
    font-size: 1rem;
  }

  footer .contact-info,
  footer .social-links {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .song-list h1 {
    font-size: 1.5rem;
  }

  .song-list p {
    font-size: 1rem;
  }

  .songs {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 15px 10px;
  }

  footer .contact-info p,
  footer .social-links a {
    font-size: 0.9rem;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

header {
  background-color: #333;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

header .logo img {
  width: 120px;
}

header nav ul {
  list-style-type: none;
  display: flex;
}

header nav ul li {
  margin-right: 20px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #f4a261;
}

.contact-form {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-form label {
  font-size: 1rem;
  color: #333;
  margin-bottom: 5px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f4a261;
  outline: none;
}

.contact-form button {
  padding: 10px 20px;
  background-color: #f4a261;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #e76f51;
}

.map-section {
  margin: 40px auto;
  text-align: center;
}

.map-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.map-section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.google-map iframe {
  width: 100%;
  max-width: 800px;
  height: 450px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

footer .contact-info p,
footer .social-links a {
  margin-bottom: 10px;
}

footer .social-links a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

footer .footer-text {
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .contact-form {
    width: 90%;
  }

  .google-map iframe {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  header nav ul {
    flex-direction: column;
    margin-top: 10px;
  }

  .contact-form {
    width: 90%;
  }

  .map-section h2 {
    font-size: 1.8rem;
  }

  .map-section p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 15px;
  }

  .contact-form {
    width: 100%;
    padding: 15px;
  }

  footer {
    padding: 20px 10px;
  }

  footer .contact-info p,
  footer .social-links a {
    font-size: 0.9rem;
  }
}
 /* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

/* Header Styles */
header {
  background-color: #333;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

header .logo img {
  width: 120px;
}

header nav ul {
  list-style-type: none;
  display: flex;
}

header nav ul li {
  margin-right: 20px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

header nav ul li a:hover,
header nav ul li a.active {
  color: #f4a261;
}

/* Main Section */
main {
  padding: 40px 20px;
}

/* About Section */
.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.about-text {
  flex: 1;
  padding-right: 20px;
  text-align: center;
}

.about-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.band-photo {
  flex: 1;
  text-align: center;
}

.band-photo img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Gallery Section */
.gallery {
  text-align: center;
  margin-top: 40px;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.image-gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Footer Section */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

footer .contact-info p,
footer .social-links a {
  margin-bottom: 10px;
}

footer .social-links a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

footer .footer-text {
  margin-top: 20px;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    width: 100%;
    margin-bottom: 20px;
  }

  .band-photo img {
    width: 100%;
    max-width: 400px;
  }

  .image-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .about-text h1 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .image-gallery {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .image-gallery img {
    width: 100%;
    max-width: 300px;
  }

  footer {
    padding: 20px 10px;
  }
}

@media (max-width: 480px) {
  .about-text h1 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  footer .contact-info p,
  footer .social-links a {
    font-size: 0.9rem;
  }

  footer .footer-text {
    font-size: 0.9rem;
  }
}
