/* Banner Section with Responsive Design */
.banner-section {
  width: 100%;
  min-height: 400px;
  background: url("../image/ban.jpg") no-repeat center center/cover;
  position: relative;
  display: flex;
  flex-direction: column; /* Stacks elements vertically */
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px; /* Adds padding for small screens */
}

/* Overlay effect */
.banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 50, 0.5);
}

/* Heading Style - Responsive */
.banner-heading {
  width: 100%;
  color: white;
  position: relative;
  font-size: 3rem; /* Default large font */
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(203, 142, 45, 0.59);
  animation: fadeIn 1.5s ease-in-out;
  margin-bottom: 20px; /* Space between heading and subheading */
  padding: 0 15px; /* Ensures text doesn't touch edges */
}
/* Subheading Wrapper */
.banner-subheading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* Space between image and text */
  position: relative;
  flex-wrap: wrap; /* Ensures wrapping on smaller screens */
  max-width: 90%; /* Prevents overflow */
}
/* Ensure Image & Text Stay in One Line */
.banner-subheading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex-wrap: nowrap; /* Prevent wrapping */
  max-width: 100%;
  overflow: hidden; /* Prevent content overflow */
  white-space: nowrap; /* Keep text on the same line */
} 
/* Ensure Image & Text Stay in One Line */
.banner-subheading {
    margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex-wrap: nowrap; /* Prevent wrapping */
  max-width: 100%;
  overflow: hidden; /* Prevent content overflow */
  white-space: nowrap; /* Keep text on the same line */
}
/* Ensure Image Stays Small on Small Screens */
.banner-subheading img {
  height: 80px;
  width: 80px;
  max-width: 100%;
  flex-shrink: 0; /* Prevents shrinking */
}

/* Adjust Subheading Text */
.banner-subheading h5 {
  text-align: center;
  font-size: 1.8rem;
  color: red;
  white-space: nowrap; /* Prevents text from breaking into multiple lines */
}

/* Responsive Design for Different Screen Sizes */
@media (max-width: 1024px) {
  .banner-heading {
    font-size: 2.5rem; /* Reduce heading size */
  }

  .banner-subheading h5 {
    font-size: 1.3rem; /* Adjust subheading font size */
  }

  .banner-subheading img {
    height: 60px;
    width: 60px; /* Reduce image size */
  }
}

@media (max-width: 768px) {
  .banner-heading {
    font-size: 2rem; /* Smaller font size for tablets */
  }

  .banner-subheading h5 {
    
    font-size: 1.2rem; /* Reduce text size */
    text-align: center;
  }

  .banner-subheading img {
    height: 70px;
    width: 70px; /* Reduce image size */
  }
}

/* Media Queries for Smaller Screens */
@media (max-width: 480px) {
  .banner-subheading {
    gap: 5px; /* Reduce gap for smaller screens */
  }

  .banner-subheading img {
    height: 45px;
    width: 45px;
  }

  .banner-subheading h5 {
    padding-top: 6px;
    margin-top: 2px;
    font-size: 1.1rem;
  }
}
/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive font size */
@media (max-width: 768px) {
  .banner-heading {
    font-size: 2rem;
  }
}

/* event css */
.event-section {
  width: 100%;
  padding: 50px 0;
  background: whitesmoke;
}

.left-container img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.44);
  animation: fadeInLeft 1s ease-in-out;
}

.left-container img:hover {
  box-shadow: 5px 5px 20px rgba(227, 142, 23, 0.44);
}

.event-card-1 {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.49);
  overflow: hidden;
}

.event-card-1:hover {
  box-shadow: 5px 5px 20px rgba(227, 142, 23, 0.44);
  /* Same shadow on hover to prevent shift */
  transform: none !important;
  /* No movement on hover */
}

/* Gradient Header */
.event-header {
  background: linear-gradient(135deg, #8b4513, #ffd700);
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 1.6rem;
  font-weight: bold;
}

.event-body {
  padding: 20px;
}

.event-section {
  display: flex;
  align-items: center;
  background: #f9f1e7;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.event-icon {
  font-size: 1.8rem;
  color: #8b4513;
  margin-right: 12px;
}

.event-text {
  font-size: 1rem;
  color: #444;
}

.register-btn {
  display: block;
  width: 100%;
  background: #8b4513;
  color: white;
  font-size: 1.1rem;
  padding: 10px;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  transition: background 0.3s ease-in-out;
}

.register-btn:hover {
  background: #654321;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.small-screen-section {
  padding: 40px 15px;
  background: whitesmoke;
}

.banner img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.event-card-2 {
  background: white;
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

/* Full-Width Section */
.kala-kumbh-section {
  background: linear-gradient(135deg, #3e2723, #ffd700);
  color: black;
  min-height: 500px;
  padding: 30px 5px;
  position: relative;
  overflow: hidden;
}

/* Glass Effect Container */
.glass-container {
  background: rgb(255, 255, 255);
  border-radius: 15px;
  color: black;
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.57);
  animation: fadeIn 1.5s ease-in-out;
}

/* Heading */
.kala-heading {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: rgb(99, 87, 14);
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1.2s ease-in-out;
}

/* Content */
.kala-content {
  color: black;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: left;
  animation: fadeInUp 1.5s ease-in-out;
}

/* Artist List */
.artist-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.artist-list li {
  font-size: 1.1rem;
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.artist-list i {
  color: rgb(52, 45, 6);
  margin-right: 10px;
  font-size: 1.3rem;
}

/* Portrait Image Styling */
.kala-image img {
  margin-top: 5px;
  width: 100%;
  height: 700px;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1.5s ease-in-out;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Full-Width Section */
.event-video-section {
  background: transparent;
  /* Transparent Background */
  padding: 30px 5px;
  position: relative;
  overflow: hidden;
}

/* Gradient Background for Content Container */
.content-container-1 {
  background: black;
  color: white !important;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeInLeft 1.5s ease-in-out;
}

/* Glass Effect for Video Section */
.video-container {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  position: relative;
  border-radius: 15px;
  text-align: center;
  animation: fadeInRight 1.5s ease-in-out;
}

/* Video Styling */
.video-container video {
  width: 100%;
  height: 500px;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.62);
}

/* Animation */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Background Section */
.about-section {
  background: linear-gradient(135deg, #3e2723, #ffd700);
  padding: 30px 10px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Glass Effect */
.about-container {
  background: rgb(255, 255, 255);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 20px;
  color: white;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  margin: auto;
  animation: fadeIn 1.5s ease-in-out;
}

/* Heading */
.about-heading {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  background: -webkit-linear-gradient(left, rgb(197, 181, 4), rgb(82, 56, 5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

/* Content */
.about-content {
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
}

/* Highlighted Text */
.highlight {
  font-weight: bold;
  color: rgb(116, 98, 0);
}

/* Contact Details */
.contact-section {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 15px;
  margin-top: 20px;
  animation: fadeIn 2s ease-in-out;
}

/* Icons */
.contact-info i {
  color: rgb(129, 110, 0);
  margin-right: 10px;
  font-size: 1.3rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-section h3 span img {
  height: 70px;
  width: 70px;
}
