/* ZOMUS Website Main CSS File - styles.css */

:root {
  /* Main color palette */
  --primary: #4A9DFF;       /* Sky blue */
  --secondary: #9C27B0;     /* Purple */
  --accent: #00E5FF;        /* Aqua */
  --gradient-start: #4A9DFF;
  --gradient-end: #00E5FF;
  --light: #E1F5FE;
  --dark: #263238;
  --text: #333;
  --light-text: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  color: var(--text);
  background-color: #f8f9fa;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  padding: 20px 0;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 80px;
  height: 80px;
  margin-right: 15px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.site-title h1 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.site-title p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Navigation */
.navbar {
  background-color: var(--secondary);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu {
  display: flex;
  list-style: none;
}

.menu li {
  position: relative;
}

.menu li a {
  color: white;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.menu li a i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.menu li a:hover, .menu li a.active {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.submenu {
  position: absolute;
  background-color: var(--secondary);
  width: 220px;
  display: none;
  z-index: 100;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 4px 4px;
  transition: all 0.3s ease;
}

.submenu li a {
  padding: 12px 20px;
  color: white;
  font-weight: normal;
  display: block;
}

.menu li:hover .submenu {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.mobile-toggle {
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  background: linear-gradient(rgba(74, 157, 255, 0.7), rgba(156, 39, 176, 0.7)), url('/api/placeholder/1200/600') center/cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--accent);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}

.btn:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn:hover::before {
  left: 100%;
}

.hero-stats {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 40px;
}

.stat-item {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 20px;
  border-radius: 10px;
  min-width: 150px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeIn 1.5s ease-out;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--light);
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(0, 229, 255, 0.1);
  border-radius: 50%;
  top: -150px;
  left: -150px;
  z-index: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
}

.mission-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.mission-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.mission-text p {
  margin-bottom: 20px;
  color: #666;
}

.mission-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

/* Services Section */
.services-section {
  padding: 80px 0;
  background-color: var(--light);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/api/placeholder/100/100') repeat;
  opacity: 0.05;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.service-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  background-color: rgba(74, 157, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
  transform: scale(10);
  opacity: 0;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-icon {
  transform: rotateY(360deg);
  transition: transform 0.8s ease;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark);
  position: relative;
  z-index: 1;
}

.service-card p {
  color: #666;
  position: relative;
  z-index: 1;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: rgba(156, 39, 176, 0.05);
  border-radius: 50%;
  top: -200px;
  right: -200px;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-item {
  background-color: var(--light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  text-align: center;
  display: none;
}

.testimonial-item.active {
  display: block;
  animation: fadeIn 0.5s ease-out;
}

.testimonial-quote {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 20px;
  color: #555;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -40px;
  left: -10px;
  color: rgba(0, 229, 255, 0.2);
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid white;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 5px;
}

.testimonial-info p {
  font-size: 0.9rem;
  color: #666;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--accent);
  transform: scale(1.2);
}

/* News Section */
.news-section {
  padding: 80px 0;
  background-color: white;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.news-card {
  background-color: var(--light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-img {
  height: 200px;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-img img {
  transform: scale(1.1);
}

.news-content {
  padding: 20px;
}

.news-date {
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.news-content h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.news-content p {
  color: #666;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.read-more {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Quote Section */
.quote-section {
  padding: 60px 0;
  background-color: var(--secondary);
  color: white;
  text-align: center;
}

.quote-content {
  max-width: 800px;
  margin: 0 auto;
}

.quote-text {
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.4;
  position: relative;
  padding: 0 30px;
}

.quote-text::before, .quote-text::after {
  content: '"';
  font-size: 3rem;
  position: absolute;
  color: rgba(255, 255, 255, 0.3);
  font-family: Georgia, serif;
}

.quote-text::before {
  top: -20px;
  left: 0;
}

.quote-text::after {
  bottom: -40px;
  right: 0;
}

.quote-author {
  font-size: 1rem;
  font-weight: 600;
}

/* Call to Action */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -150px;
  left: -150px;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  bottom: -150px;
  right: -150px;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-section p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.btn-light {
  background-color: white;
  color: var(--primary);
}

.btn-light:hover {
  background-color: var(--light);
  color: var(--primary);
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 70px 0 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.footer-widget h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h3:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  bottom: 0;
  left: 0;
}

.contact-info {
  list-style: none;
}

.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  margin-right: 10px;
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 5px;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-menu li:hover {
  transform: translateX(5px);
}

.footer-menu a {
  color: #bdc3c7;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-menu a i {
  margin-right: 8px;
  font-size: 0.8rem;
}

.footer-menu a:hover {
  color: var(--accent);
}

.newsletter-form {
  display: flex;
  margin-top: 20px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 30px 0 0 30px;
  font-size: 0.9rem;
}

.newsletter-btn {
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: var(--accent);
}

.footer-social {
  display: flex;
  margin-top: 20px;
}

.footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  transform: translateY(-5px);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #bdc3c7;
}

.footer-bottom a {
  color: var(--accent);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* State Chapters Section */
.chapters-section {
  padding: 80px 0;
  background-color: var(--light);
}

.chapters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.chapter-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.chapter-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.chapter-header {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  padding: 15px;
  text-align: center;
}

.chapter-header h3 {
  font-size: 1.3rem;
  margin: 0;
}

.chapter-info {
  padding: 20px;
}

.chapter-info p {
  margin-bottom: 15px;
  color: #666;
  font-size: 0.95rem;
}

.chapter-contact {
  display: flex;
  align-items: center;
  margin-top: 10px;
  color: #777;
  font-size: 0.9rem;
}

.chapter-contact i {
  margin-right: 8px;
  color: var(--primary);
}

.chapter-link {
  display: block;
  text-align: center;
  padding: 12px;
  background-color: var(--light);
  color: var(--primary);
  font-weight: 600;
  margin-top: 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.chapter-link:hover {
  background-color: var(--primary);
  color: white;
}

/* Music Page Styles */
.music-section {
  padding: 80px 0;
}

.music-categories {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.music-category {
  padding: 10px 20px;
  margin: 0 10px 10px 0;
  background-color: var(--light);
  color: var(--primary);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.music-category.active, .music-category:hover {
  background-color: var(--primary);
  color: white;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.music-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.music-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.music-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.music-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.music-img .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.music-card:hover .play-button {
  opacity: 1;
}

.music-content {
  padding: 20px;
}

.music-title {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.music-artist {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 15px;
}

.music-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

.music-tag {
  padding: 5px 10px;
  background-color: var(--light);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: 5px;
  margin-bottom: 5px;
}

/* Events Section */
.events-section {
  padding: 80px 0;
  background-color: white;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.event-card {
  display: flex;
  background-color: var(--light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.event-date {
  width: 100px;
  min-width: 100px;
  background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
}

.event-day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.event-month {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.event-year {
  font-size: 1rem;
}

.event-info {
  padding: 20px;
  flex: 1;
}

.event-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.event-details {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.event-detail {
  display: flex;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 5px;
  color: #666;
  font-size: 0.9rem;
}

.event-detail i {
  margin-right: 5px;
  color: var(--primary);
}

.event-description {
  color: #666;
  margin-bottom: 15px;
}

.event-actions {
  display: flex;
  gap: 10px;
}

/* Competition Styles */
.competition-section {
  padding: 80px 0;
  background-color: var(--light);
}

.competition-banner {
  position: relative;
  background: linear-gradient(rgba(74, 157, 255, 0.8), rgba(156, 39, 176, 0.8)), url('/api/placeholder/1200/400') center/cover no-repeat;
  color: white;
  padding: 60px 40px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.competition-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.competition-banner p {
  font-size: 1.1rem;
  max-width: 700px;
  margin-bottom: 20px;
}

.competition-countdown {
  display: flex;
  gap: 15px;
  margin: 30px 0;
}

.countdown-item {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 15px;
  min-width: 80px;
  text-align: center;
}

.countdown-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.countdown-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.judges-section {
  padding: 60px 0;
}

.judges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.judge-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.judge-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.judge-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 30px auto 20px;
  overflow: hidden;
  border: 5px solid var(--light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.judge-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.judge-info {
  padding: 0 20px 30px;
}

.judge-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.judge-title {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.judge-bio {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.judge-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.judge-social a {
  width: 35px;
  height: 35px;
  background-color: var(--light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.judge-social a:hover {
  background-color: var(--primary);
  color: white;
}

/* Zomi Lengthe Competition Styles */
.lengthe-section {
  padding: 80px 0;
}

.participants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.participant-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.participant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.participant-img {
  height: 200px;
  position: relative;
}

.participant-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.participant-number {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--primary);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.participant-info {
  padding: 20px;
}

.participant-name {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.participant-song {
  font-style: italic;
  color: #777;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.vote-count {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--primary);
}

.vote-count i {
  color: var(--accent);
}

.vote-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.vote-btn:hover {
  background-color: var(--secondary);
}

/* Gallery Page Styles */
.gallery-section {
  padding: 80px 0;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filter {
  padding: 10px 20px;
  margin: 0 10px 10px 0;
  background-color: var(--light);
  color: var(--primary);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.gallery-filter.active, .gallery-filter:hover {
  background-color: var(--primary);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  height: 250px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.gallery-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.contact-info-card {
  background-color: var(--light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-item {
  display: flex;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 15px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.contact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.contact-text p, .contact-text a {
  color: #666;
  font-size: 0.95rem;
}

.contact-form {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(74, 157, 255, 0.2);
  outline: none;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* About Page Styles */
.about-section {
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 50px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-image::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  bottom: -50px;
  left: -50px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
}

.about-image::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  background: var(--accent);
  top: -35px;
  right: -35px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.about-text p {
  margin-bottom: 20px;
  color: #666;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.about-stat {
  text-align: center;
}

.stat-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-title {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 600;
}

.team-section {
  padding: 80px 0;
  background-color: var(--light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  justify-content: center;
  gap: 10px;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.team-card:hover .team-social {
  transform: translateY(0);
}

.team-social a {
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background-color: white;
  color: var(--primary);
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-name {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.team-position {
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.team-bio {
  color: #666;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
  .site-title h1 {
    font-size: 1.5rem;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-wrap: wrap;
  }
  
  .mission-content {
    grid-template-columns: 1fr;
  }
  
  .mission-img {
    margin-top: 30px;
    order: 2;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    width: 100%;
    min-width: 100%;
    padding: 10px;
  }
  
  .competition-countdown {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .menu {
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .menu.active {
    max-height: 600px;
  }
  
  .menu li {
    width: 100%;
  }
  
  .menu li a {
    padding: 12px 0;
  }
  
  .submenu {
    position: static;
    width: 100%;
    box-shadow: none;
    padding-left: 20px;
    border-radius: 0;
  }
  
  .submenu li a {
    padding: 10px 0;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .quote-text {
    font-size: 1.5rem;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media screen and (max-width: 576px) {
  .logo img {
    width: 60px;
    height: 60px;
  }
  
  .site-title h1 {
    font-size: 1.2rem;
  }
  
  .site-title p {
    font-size: 0.8rem;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .mission-text h3 {
    font-size: 1.5rem;
  }
  
  .cta-section h2 {
    font-size: 1.8rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-input {
    border-radius: 30px;
    margin-bottom: 10px;
  }
  
  .newsletter-btn {
    border-radius: 30px;
    padding: 12px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}