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

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Row */
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Hero Section */
.hero {
  position: relative;
  height: 85vh;  /* Changed from 100vh to 85vh to make it 85% of the screen height */
  background: url('/assets/images/b4.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay with 50% opacity */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top:40%;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem; /* Increased margin below the logo */
}

.hero-content p {
  font-size: 1.8rem;
}

.hero-content h1 img.logo {
  width: 100%;        /* Make the logo take the full available width */
  max-width: 900px;    /* Optional: Limit the maximum width to 400px */
  margin-bottom: 2rem; /* Add extra margin below the logo */
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* About Me Section */
.about-me {
  padding: 4rem 0;
  background-color: #fff;
}

.about-me .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-image {
  width: 48%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.about-text {
  width: 48%;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
  .about-me .row {
    flex-direction: column;
  }

  .about-image, .about-text {
    width: 100%;
    margin-bottom: 2rem;
  }
}

/* Audio Section */
.media-section {
  padding: 4rem 0; /* Add padding for spacing */
  text-align: center;
}

.media {
  width: 48%;
}

.media h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.media .bandcamp img{
  width: 100%;
}

/* Events Section */
#events {
  background-color: #f9f9f9;
  padding: 2rem;
  text-align: center;
}

#events h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

#events ul {
  list-style: none;
}

#events ul li {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Contact Section */
#contact {
  padding: 2rem;
  background-color: #fff;
  text-align: center;
}

#contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

#contact p {
  font-size: 1.2rem;
}

.social-links {
  list-style: none;
  padding: 20px 0;
}

.social-links li {
  display: inline-block;
  margin: 0 1rem;
}

.social-links a {
  font-size: 1.5rem;
  text-decoration: none;
}

.svg-icon {
  height: 25px;
  fill: #333;
  transition: fill 0.3s ease;
}

.svg-icon:hover {
  fill: #000; /* Change color on hover */
}

.social-links a:hover {
  color: #007bff;
}

/*before footer*/

#before-footer {
  height: 100px;
  width: 100%;
  background: url('/assets/images/before-footer-image.jpg') repeat-x center;
  background-size: auto 100px; /* Ensures the height fits the 200px while repeating horizontally */
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

/* Media Queries for Responsiveness */

/* Tablets (768px and below) */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .media-section {
    flex-direction: column;
    padding: 4rem 0;
  }

  .media {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .row {
    flex-direction: column;
  }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .media-section {
    padding: 1rem;
  }

  .media h2 {
    font-size: 1.5rem;
  }

  .row {
    flex-direction: column;
    align-items: center;
  }

  .social-links li {
    margin: 0 0.5rem;
  }
}

/* Quote Section */
.quote-section {
  background-color: #f4f4f4;
  padding: 6rem 0; /* Increased padding to 4rem */
  text-align: center;
}

.quote-section blockquote {
  font-size: 1.8rem; /* Slightly larger font size */
  font-style: italic;
  color: #555;
  margin: 0 auto;
  max-width: 800px; /* Restrict max width to keep quotes readable */
}
/* Two-column layout for Gallery and Testimonials */
.gallery-testimonial-section .row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap; /* Ensures that items will wrap if necessary on smaller screens */
  padding: 4rem 0; /* Add padding for spacing */
}

.gallery-column, .testimonial-column {
  flex: 1; /* Each column will take up equal space */
  max-width: 48%; /* Limit each column to 50% */
  box-sizing: border-box;
}

/* Responsive for Gallery & Testimonials Section */
@media (max-width: 768px) {
  .gallery-testimonial-section .row {
    flex-direction: column;
  }

  .gallery-column, .testimonial-column {
    width: 100%; /* Make them stack on top of each other on tablets */
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .gallery-testimonial-section .row {
    flex-direction: column;
  }

  .gallery-column, .testimonial-column {
    width: 100%;
    max-width: 100%;
  }

  .gallery {
    grid-template-columns: 1fr; /* Make gallery items stack in a single column on mobile */
  }
}

/* Gallery styling */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  grid-gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 200px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Overlay for full-size image */
.overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9); /* Dark background with transparency */
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensure it appears on top */
}

.overlay-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px; /* Keep the rounded corners */
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 1001; /* Make sure close button appears above image */
  transition: color 0.3s;
}

.close-btn:hover {
  color: #ccc; /* Lighter color on hover */
}

/* Testimonials Slider */
.testimonial-slider {
  max-width: 100%;
  margin: 0 auto;
}

.testimonial-item {
  padding: 20px;
  background-color: #f4f4f4;
  border-radius: 8px;
  text-align: center;
}

.testimonial-item blockquote {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial-item p {
  font-size: 1rem;
  color: #666;
}

/* Slick Slider Arrows */
.slick-prev, .slick-next {
  color: #333;
  font-size: 2rem;
}

.slick-prev:hover, .slick-next:hover {
  color: #007bff;
}
