/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Texturina, serif;
  color: white;
  background-color: #000;
}

.container {
  width: 80%;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: #ffd17b;
}

/* Header and Navigation */
header {
  background-color: #000;
  padding: 20px 0;
}

header .logo {
  font-size: 2rem;
  color: #ffd17b;
  text-transform: uppercase;
}

header nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
}

header nav ul li {
  margin-left: 20px;
}

header nav ul li a {
  color: #ffd17b;
  font-size: 1.1rem;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #fff;
}

/* Hero Section */
.hero {
  background-color: black;
  min-height: 800px; 
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffd17b;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
}

/* About Section */
.about {
  padding: 50px 0;
  background-color: #222;
  color: #ffd17b;
  padding: 60px 20px;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}


.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about h3 {
  margin-top: 20px;
  font-size: 1.3rem;

}

.about p {
  line-height: 1.6;
  margin-bottom: 15px;

}

/* Highlights list */
.about-highlights ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.about-highlights li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;

}

.about-highlights i {
  color: #d35400; /* percussion vibe (warm orange) */
  font-size: 1.2rem;
}
/* Closing statement */
.about-closing {
  text-align: center;
  margin-top: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-closing h3 {
  font-size: 1.6rem;
  color: #d35400; /* warm accent */
  margin-bottom: 15px;
}

.about-closing p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* Events Section */
.events {
  padding: 50px 0;
  background-color: #333;
}

.events h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.events ul {
  list-style: none;
}

.events ul li {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Contact Section */
.contact {
  padding: 50px 0;
  background-color: #222;
  color: #ffd17b;
  height:650px;
}

.contact h2 {
	text-align:Center;
	margin: 0 auto;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact form {
	max-width: 500px; /* Set the maximum width of the form */
  margin: 0 auto; /* Center the form horizontally */
  display: flex;
  flex-direction: column;
}

.contact form label {
	
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.contact form input, .contact form textarea {
  padding: 10px;
  font-size: 1rem;
  margin-bottom: 20px;
  border: 1px solid #555;
  background-color: #333;
  color: white;
}

.contact form button {
  background-color: #ffd17b;
  color: black;
  font-size: 1.2rem;
  padding: 10px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact form button:hover {
  background-color: #e6b800;
}

/* Footer */
footer {
  background-color: #111;
  text-align: center;
  padding: 20px;
  color: #ffd17b;
}

footer p {
  font-size: 1rem;
}
/* Social Media Icons Styling */
.social-icons {
  
  justify-content: center;
  margin-top: 10px;
}

.social-icons .icon {
  font-size: 1.5rem;
  margin: 0 15px;
  color: #ffd17b;
  transition: color 0.3s;
}

.social-icons .icon:hover {
  color: white; /* Change color on hover */
}

.social-icons .icon i {
  font-size: 2rem; /* Increase icon size */
}

.hero {
  background-image: url('images/back.jpeg');
  background-size: 75%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: black; /* Fallback */
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
   color: #ffd17b;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.image-collage {
  background-color: #000;
   color: #ffd17b;
  padding: 40px 20px;
}

.image-collage h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}

/* Create a 2x3 Grid Layout for the Images */
.collage-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  grid-gap: 20px; /* Space between images */
}

.collage-images img {
  width: 100%;
  height: auto;
  border-radius: 10px; /* Optional: rounded corners for images */
  object-fit: cover; /* Ensures images maintain aspect ratio without distortion */
  transition: transform 0.3s ease;
}

.collage-images img:hover {
  transform: scale(1.05); /* Zoom-in effect on hover */
}

@media (max-width: 768px) {
  .collage-images {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
  }
}

@media (max-width: 480px) {
  .collage-images {
    grid-template-columns: 1fr; /* 1 column on small screens */
  }
}

section {
  opacity: 0;
  transform: translateY(20px);
   transition: opacity 1.5s ease, transform 1.5s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}
#scrollToTopBtn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  font-size: 24px;
  background: #333;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
}
.horizontal-collage {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 10px;
  padding: 20px;
 background: transparent;
  scrollbar-width: none; /* Hide scrollbar in Firefox */
}

.horizontal-collage::-webkit-scrollbar {
  display: none; /* Hide scrollbar in Chrome */
}

.horizontal-collage img {
  flex: 0 0 auto;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.horizontal-collage img:hover {
  transform: scale(1.05);
  cursor: pointer;
}
@media (max-width: 600px) {
  .horizontal-collage img {
    height: 150px;
  }
}
* Wrapper for carousel and buttons */
.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px; /* adjust to your design */
  margin: auto;
  overflow: hidden;
}

/* Carousel container */
.carousel {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
  display: none;
}

/* Carousel images */
.carousel img {
  flex: 0 0 auto;
  width: 100%;
  max-width: 400px;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  margin: 0;
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 22px;
  transition: background 0.3s;
  z-index: 2;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.8);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');