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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #0a1514;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Animated Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(100, 150, 140, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(120, 140, 130, 0.08) 0%, transparent 50%);
  animation: bgPulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes bgPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Lightning Flash Effects */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(180, 220, 255, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(200, 240, 255, 0.25) 0%, transparent 35%),
    radial-gradient(circle at 50% 80%, rgba(180, 220, 255, 0.2) 0%, transparent 30%);
  animation: lightning 7s infinite;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}

@keyframes lightning {
  0%, 100% { 
    opacity: 0; 
  }
  15% { 
    opacity: 0; 
  }
  15.1% { 
    opacity: 0.8; 
  }
  15.2% { 
    opacity: 0; 
  }
  15.5% { 
    opacity: 1; 
  }
  15.7% { 
    opacity: 0; 
  }
  45% { 
    opacity: 0; 
  }
  45.1% { 
    opacity: 0.6; 
  }
  45.3% { 
    opacity: 0; 
  }
  78% { 
    opacity: 0; 
  }
  78.1% { 
    opacity: 0.9; 
  }
  78.2% { 
    opacity: 0.3; 
  }
  78.4% { 
    opacity: 0.7; 
  }
  78.6% { 
    opacity: 0; 
  }
}

/* Multiple Lightning Flash Elements */
.lightning-flash {
  position: fixed;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  mix-blend-mode: screen;
}

.lightning-1 {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 15% 15%, rgba(200, 230, 255, 0.4) 0%, transparent 50%);
  animation: flash1 9s infinite;
}

.lightning-2 {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 85% 25%, rgba(180, 220, 255, 0.35) 0%, transparent 45%);
  animation: flash2 11s infinite;
}

.lightning-3 {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 90%, rgba(190, 225, 255, 0.3) 0%, transparent 40%);
  animation: flash3 13s infinite;
}

@keyframes flash1 {
  0%, 100% { opacity: 0; }
  20% { opacity: 0; }
  20.1% { opacity: 0.9; }
  20.2% { opacity: 0; }
  20.4% { opacity: 0.6; }
  20.6% { opacity: 0; }
  60% { opacity: 0; }
  60.1% { opacity: 0.8; }
  60.3% { opacity: 0; }
}

@keyframes flash2 {
  0%, 100% { opacity: 0; }
  35% { opacity: 0; }
  35.1% { opacity: 0.7; }
  35.3% { opacity: 0; }
  70% { opacity: 0; }
  70.1% { opacity: 1; }
  70.2% { opacity: 0.4; }
  70.4% { opacity: 0; }
}

@keyframes flash3 {
  0%, 100% { opacity: 0; }
  50% { opacity: 0; }
  50.1% { opacity: 0.8; }
  50.2% { opacity: 0; }
  50.5% { opacity: 0.9; }
  50.7% { opacity: 0; }
  85% { opacity: 0; }
  85.1% { opacity: 0.6; }
  85.3% { opacity: 0; }
}

/* Header Styles */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 21, 20, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  z-index: 1000;
  border-bottom: 1px solid rgba(180, 200, 190, 0.2);
  transition: all 0.3s ease;
}

#header.scrolled {
  background: rgba(10, 21, 20, 0.95);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-header {
  flex-shrink: 0;
  animation: fadeInLeft 0.8s ease-out;
}

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

.header-logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(180, 200, 190, 0.3));
  transition: filter 0.3s ease;
}

.header-logo:hover {
  filter: drop-shadow(0 0 20px rgba(180, 200, 190, 0.6));
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: #b4c8be;
  text-shadow: 
    0 0 20px rgba(180, 200, 190, 0.8),
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(100, 150, 130, 0.4);
  letter-spacing: 3px;
}

.logo-text-hero {
  font-family: 'Cinzel', serif;
  font-size: 4rem;
  color: #b4c8be;
  text-shadow: 
    0 0 30px rgba(180, 200, 190, 1),
    0 4px 8px rgba(0, 0, 0, 0.9),
    0 0 60px rgba(100, 150, 130, 0.6),
    inset 0 2px 3px rgba(255, 255, 255, 0.3);
  letter-spacing: 8px;
  margin-bottom: 30px;
}

.nav-menu {
  animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: #b8c9c3;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #b8c9c3, #d4e0dc);
  transition: width 0.3s ease;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
  width: 100%;
}

.nav-menu a:hover {
  color: #d4e0dc;
  text-shadow: 0 0 20px rgba(180, 200, 190, 0.8);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: 
    linear-gradient(180deg, rgba(10, 21, 20, 0.7) 0%, rgba(10, 21, 20, 0.9) 100%),
    url('hero-background.png?v=3') center/cover no-repeat;
  padding-top: 80px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(120, 160, 150, 0.2) 0%, transparent 60%);
  animation: heroSpotlight 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroSpotlight {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateX(-50%) scale(1.1);
    opacity: 0.8;
  }
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, #0a1514, transparent);
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

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

.main-logo {
  margin-bottom: 30px;
  animation: logoFloat 3s ease-in-out infinite;
}

.hero-logo {
  max-width: 500px;
  width: 90%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(180, 200, 190, 0.5));
  transition: filter 0.5s ease;
}

.hero-logo:hover {
  filter: drop-shadow(0 0 60px rgba(180, 200, 190, 0.8));
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}


.slogan {
  font-family: 'Metamorphous', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(135deg, #b8c9c3 0%, #d4e0dc 50%, #b8c9c3 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  letter-spacing: 2px;
  font-weight: normal;
  text-shadow: none;
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

/* Section Animations */
section {
  position: relative;
  opacity: 0;
  animation: fadeInSection 0.8s ease-out forwards;
}

@keyframes fadeInSection {
  to {
    opacity: 1;
  }
}

/* About Section */
.about-section {
  padding: 120px 20px;
  background: 
    linear-gradient(135deg, rgba(120, 160, 150, 0.03) 0%, transparent 100%),
    #0a1514;
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180, 200, 190, 0.5), transparent);
}

.about-section h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  background: linear-gradient(135deg, #c5d4ce 0%, #8a9d95 50%, #b8c9c3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 4px;
  position: relative;
  animation: slideInFromLeft 0.8s ease-out;
  font-weight: 600;
  text-transform: uppercase;
  filter: drop-shadow(0 2px 8px rgba(138, 157, 149, 0.6));
}

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

.about-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #b8c9c3, transparent);
  animation: expandWidth 1s ease-out 0.5s forwards;
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 100px;
  }
}

.bio {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  text-align: center;
  line-height: 2;
  color: #e0e0e0;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
  padding: 30px;
  background: rgba(20, 35, 33, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(180, 200, 190, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Band Members Section */
.members-section {
  padding: 120px 20px;
  background: 
    radial-gradient(circle at top right, rgba(120, 160, 150, 0.05) 0%, transparent 60%),
    #0a1514;
  position: relative;
}

.members-section h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  background: linear-gradient(135deg, #c5d4ce 0%, #8a9d95 50%, #b8c9c3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 70px;
  letter-spacing: 4px;
  position: relative;
  animation: slideInFromRight 0.8s ease-out;
  font-weight: 600;
  text-transform: uppercase;
  filter: drop-shadow(0 2px 8px rgba(138, 157, 149, 0.6));
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.members-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #b8c9c3, transparent);
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.member-card {
  background: linear-gradient(145deg, rgba(20, 35, 33, 0.8), rgba(15, 25, 23, 0.6));
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(180, 200, 190, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out backwards;
}

.member-card:nth-child(1) { animation-delay: 0.1s; }
.member-card:nth-child(2) { animation-delay: 0.2s; }
.member-card:nth-child(3) { animation-delay: 0.3s; }
.member-card:nth-child(4) { animation-delay: 0.4s; }
.member-card:nth-child(5) { animation-delay: 0.5s; }
.member-card:nth-child(6) { animation-delay: 0.6s; }

.member-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(120, 160, 150, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.member-card:hover::before {
  opacity: 1;
  animation: rotateGlow 3s linear infinite;
}

@keyframes rotateGlow {
  to {
    transform: rotate(360deg);
  }
}

.member-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(120, 160, 150, 0.25),
    inset 0 1px 0 rgba(212, 224, 220, 0.1);
  border-color: rgba(180, 200, 190, 0.3);
}

.member-photo {
  width: 160px;
  height: 160px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(145deg, #1a2e2b, #142320);
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: all 0.4s ease;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.member-photo::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #a8b9b3, #d4e0dc, #a8b9b3);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.member-card:hover .member-photo::before {
  opacity: 1;
  animation: rotateBorder 2s linear infinite;
}

@keyframes rotateBorder {
  to {
    transform: rotate(360deg);
  }
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1a2e2b, #0f1a18);
  color: #b8c9c3;
}

.member-card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #b8c9c3, #d4e0dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  font-weight: 700;
}

.member-card p {
  color: #8a9a94;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.member-card:hover p {
  color: #b8c9c3;
}

/* Music Section */
.music-section {
  padding: 120px 20px;
  background: 
    linear-gradient(135deg, transparent 0%, rgba(120, 160, 150, 0.03) 100%),
    #0a1514;
  position: relative;
}

.music-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180, 200, 190, 0.5), transparent);
}

.music-section h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  background: linear-gradient(135deg, #c5d4ce 0%, #8a9d95 50%, #b8c9c3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 4px;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
  font-weight: 600;
  text-transform: uppercase;
  filter: drop-shadow(0 2px 8px rgba(138, 157, 149, 0.6));
}

.music-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #b8c9c3, transparent);
}

.music-player {
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.player-placeholder {
  background: linear-gradient(145deg, rgba(20, 35, 33, 0.8), rgba(15, 25, 23, 0.6));
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 100px 40px;
  text-align: center;
  border: 1px solid rgba(180, 200, 190, 0.2);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(212, 224, 220, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.player-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(120, 160, 150, 0.15), transparent);
  animation: shimmerSlide 3s infinite;
}

@keyframes shimmerSlide {
  to {
    left: 100%;
  }
}

.player-placeholder:hover {
  transform: scale(1.02);
  border-color: rgba(180, 200, 190, 0.4);
}

.player-placeholder p {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #b8c9c3, #d4e0dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.player-note {
  font-size: 1rem !important;
  color: #6a7a74 !important;
  font-style: italic;
  background: none !important;
  -webkit-text-fill-color: #6a7a74 !important;
}

/* Agenda Section */
.agenda-section {
  padding: 120px 20px;
  background: 
    linear-gradient(135deg, rgba(120, 160, 150, 0.03) 0%, transparent 100%),
    #0a1514;
  position: relative;
}

.agenda-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180, 200, 190, 0.5), transparent);
}

.agenda-section h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  background: linear-gradient(135deg, #c5d4ce 0%, #8a9d95 50%, #b8c9c3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 4px;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
  font-weight: 600;
  text-transform: uppercase;
  filter: drop-shadow(0 2px 8px rgba(138, 157, 149, 0.6));
}

.agenda-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #b8c9c3, transparent);
}

.agenda-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.agenda-message {
  font-size: 1.3rem;
  color: #b8c9c3;
  margin-bottom: 20px;
  line-height: 1.8;
  letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
  padding: 120px 20px;
  background: 
    radial-gradient(circle at bottom left, rgba(120, 160, 150, 0.05) 0%, transparent 60%),
    #0a1514;
  position: relative;
}

.contact-section h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  background: linear-gradient(135deg, #c5d4ce 0%, #8a9d95 50%, #b8c9c3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 4px;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
  font-weight: 600;
  text-transform: uppercase;
  filter: drop-shadow(0 2px 8px rgba(138, 157, 149, 0.6));
}

.contact-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #b8c9c3, transparent);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.social-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(20, 35, 33, 0.8), rgba(15, 25, 23, 0.6));
  backdrop-filter: blur(10px);
  border: 2px solid rgba(180, 200, 190, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #b8c9c3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(120, 160, 150, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.social-icon:hover::before {
  opacity: 1;
  animation: rotateGlow 2s linear infinite;
}

.social-icon svg {
  width: 40px;
  height: 40px;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.social-icon:hover {
  transform: translateY(-10px) scale(1.15);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(120, 160, 150, 0.4);
  border-color: #d4e0dc;
  color: #d4e0dc;
}

.social-icon:hover svg {
  transform: scale(1.1) rotate(5deg);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.contact-form-container h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  color: #b8c9c3;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 2px;
}

.contact-form {
  background: linear-gradient(145deg, rgba(20, 35, 33, 0.8), rgba(15, 25, 23, 0.6));
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(180, 200, 190, 0.2);
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(10, 21, 20, 0.6);
  border: 1px solid rgba(180, 200, 190, 0.2);
  border-radius: 10px;
  color: #b8c9c3;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6a7a74;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(180, 200, 190, 0.5);
  background: rgba(10, 21, 20, 0.8);
  box-shadow: 0 0 20px rgba(120, 160, 150, 0.2);
}

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

.submit-btn {
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(135deg, #2a3935, #1a2421);
  border: 1px solid rgba(180, 200, 190, 0.3);
  border-radius: 10px;
  color: #b8c9c3;
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #3a4945, #2a3431);
  border-color: rgba(180, 200, 190, 0.6);
  box-shadow: 0 10px 30px rgba(120, 160, 150, 0.3);
  transform: translateY(-2px);
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-size: 1rem;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.5);
  color: #4caf50;
}

.form-message.error {
  display: block;
  background: rgba(244, 67, 54, 0.2);
  border: 1px solid rgba(244, 67, 54, 0.5);
  color: #f44336;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.contact-email {
  text-align: center;
}

.contact-email a {
  color: #b8c9c3;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  padding: 15px 40px;
  display: inline-block;
  background: linear-gradient(145deg, rgba(20, 35, 33, 0.8), rgba(15, 25, 23, 0.6));
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(180, 200, 190, 0.2);
}

.contact-email a::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  padding: 2px;
  background: linear-gradient(135deg, #a8b9b3, #d4e0dc, #a8b9b3);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-email a:hover::before {
  opacity: 1;
}

.contact-email a:hover {
  color: #d4e0dc;
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(120, 160, 150, 0.3);
}

/* Footer */
footer {
  background: linear-gradient(to bottom, transparent, #050d0c);
  padding: 50px 20px;
  text-align: center;
  border-top: 1px solid rgba(180, 200, 190, 0.1);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180, 200, 190, 0.3), transparent);
}

footer p {
  color: #4a5a54;
  font-size: 0.95rem;
  animation: fadeIn 1s ease-out;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .nav-menu ul {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-menu a {
    font-size: 12px;
  }

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

  .social-links {
    gap: 30px;
  }

  .social-icon {
    width: 65px;
    height: 65px;
  }

  .social-icon svg {
    width: 30px;
    height: 30px;
  }

  .about-section,
  .members-section,
  .music-section,
  .agenda-section,
  .contact-section {
    padding: 80px 20px;
  }
}

@media (max-width: 480px) {
  .members-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .header-logo {
    height: 40px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .contact-email a {
    font-size: 1.2rem;
    padding: 12px 30px;
  }
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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