html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: white;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(10, 10, 10, 0.8);
  border-left: 1px solid rgba(218, 165, 32, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #daa520 0%, #b8860b 100%);
  border-radius: 6px;
  border: 2px solid rgba(10, 10, 10, 0.8);
  box-shadow: 0 0 10px rgba(218, 165, 32, 0.3);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f0c040 0%, #daa520 100%);
  box-shadow: 0 0 15px rgba(218, 165, 32, 0.6);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #b8860b 0%, #8b6914 100%);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #daa520 rgba(10, 10, 10, 0.8);
}
@media screen and (max-width: 768px) {
  html, body {
    font-size: 10px;
  }
}

body {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 25%, #16213e 50%, #0f3460 75%, #1a1a2e 100%);
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
  padding-top: 80px;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  box-shadow: none;
  border-bottom: none;
}

.nav-container {
  max-width: 1366px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media screen and (min-width: 1367px) and (max-width: 1920px) {
  .nav-container {
    max-width: 1150px;
  }
}

@media screen and (min-width: 1921px) {
  .nav-container {
    max-width: 1366px;
  }
}

.nav-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 10, 46, 0.98) 50%, rgba(22, 33, 62, 0.98) 100%);
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0.5s;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.nav-menu.active {
  opacity: 1;
  visibility: visible;
}

.nav-menu li {
  margin: 2rem 0;
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-menu.active li {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.nav-menu.active li:nth-child(1) {
  transition-delay: 0.15s;
}

.nav-menu.active li:nth-child(2) {
  transition-delay: 0.25s;
}

.nav-menu.active li:nth-child(3) {
  transition-delay: 0.35s;
}

.nav-menu.active li:nth-child(4) {
  transition-delay: 0.45s;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 3rem;
  font-weight: 300;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 1.5rem 3rem;
  display: block;
  letter-spacing: 3px;
}

.nav-link:hover {
  color: #daa520;
  text-shadow: 0 0 20px rgba(218, 165, 32, 0.8);
  transform: scale(1.15);
}

@media screen and (max-width: 768px) {
  .nav-link {
    font-size: 2rem;
    padding: 1rem 2rem;
  }
}

.hamburger {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  margin: 4px 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(218, 165, 32, 0.3);
}

.hamburger:hover span {
  background: #daa520;
  box-shadow: 0 0 10px rgba(218, 165, 32, 0.6);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 7px);
  background: #daa520;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -7px);
  background: #daa520;
}


.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

@media screen and (max-width: 991px) {
  .section {
    min-height: auto;
    padding: 0 0 3rem 0;
  }
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-container {
  width: 100%;
  max-width: 1150px;
  padding: 0 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 1367px) and (max-width: 1920px) {
  .hero-container {
    max-width: 1150px;
    padding: 0 2rem 2rem 2rem;
  }
}

@media screen and (min-width: 1921px) {
  .hero-container {
    max-width: 1366px;
    padding: 0 3rem 3rem 3rem;
  }
}

@media screen and (max-width: 991px) {
  .hero-container {
    padding: 0 1rem 1rem 1rem;
  }
}

.hero-header {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .hero-header {
    margin-bottom: 2rem;
  }
}

.hero-logo-main {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: block;
  filter: drop-shadow(0 0 30px rgba(218, 165, 32, 0.4));
  transition: transform 0.3s ease;
}

@media screen and (min-width: 1400px) {
  .hero-logo-main {
    max-width: 600px;
  }
}

@media screen and (min-width: 1920px) {
  .hero-logo-main {
    max-width: 700px;
  }
}

.hero-logo-main:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 991px) {
  .hero-logo-main {
    max-width: 280px;
    margin-bottom: 1rem;
  }
}

.tagline {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 4px;
  margin: 0;
  padding: 0;
  color: #daa520;
  text-shadow: 0 0 30px rgba(218, 165, 32, 0.5);
}

@media screen and (min-width: 1400px) {
  .tagline {
    font-size: 1.8rem;
    letter-spacing: 5px;
  }
}

@media screen and (min-width: 1920px) {
  .tagline {
    font-size: 2rem;
    letter-spacing: 6px;
  }
}

@media screen and (max-width: 991px) {
  .tagline {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  min-height: 500px;
}

@media screen and (min-width: 1367px) {
  .slider-wrapper {
    min-height: 550px;
  }
}

@media screen and (max-width: 991px) {
  .slider-wrapper {
    min-height: 450px;
  }
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.slide.prev {
  transform: translateX(-100%);
}

.slide-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 10, 46, 0.9) 100%);
  border: 3px solid rgba(218, 165, 32, 0.5);
  border-radius: 30px;
  padding: 3rem 4rem;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

@media screen and (min-width: 1367px) {
  .slide-banner {
    padding: 4rem 5rem;
    min-height: 500px;
  }
}

@media screen and (max-width: 991px) {
  .slide-banner {
    padding: 2.5rem;
    min-height: 400px;
    border-radius: 20px;
  }
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.banner-label {
  display: inline-block;
  background: linear-gradient(135deg, #daa520, #b8860b);
  color: #0a0a0a;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(218, 165, 32, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@media screen and (max-width: 991px) {
  .banner-label {
    padding: 0.6rem 2rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
}

.banner-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #ffffff 0%, #daa520 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 80px rgba(218, 165, 32, 0.5);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@media screen and (min-width: 1367px) {
  .banner-title {
    font-size: 4.5rem;
  }
}

@media screen and (max-width: 991px) {
  .banner-title {
    font-size: 3rem;
    margin: 1rem 0;
  }
}

@media screen and (max-width: 576px) {
  .banner-title {
    font-size: 2.5rem;
  }
}

.banner-subtitle {
  font-size: 1.3rem;
  color: #daa520;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

@media screen and (max-width: 991px) {
  .banner-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
}

.banner-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.banner-btn.primary {
  background: linear-gradient(135deg, #daa520, #b8860b);
  color: #0a0a0a;
  box-shadow: 0 10px 30px rgba(218, 165, 32, 0.5);
}

.banner-btn.primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(218, 165, 32, 0.7);
  background: linear-gradient(135deg, #f0c040, #daa520);
}

.banner-btn.secondary {
  background: transparent;
  color: #daa520;
  border-color: #daa520;
}

.banner-btn.secondary:hover {
  background: rgba(218, 165, 32, 0.1);
  transform: translateY(-5px);
  border-color: #f0c040;
  color: #f0c040;
}

@media screen and (max-width: 991px) {
  .banner-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    letter-spacing: 1px;
  }
}

.banner-events {
  padding: 3rem;
}

@media screen and (max-width: 991px) {
  .banner-events {
    padding: 2rem;
  }
}

.events-list {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(218, 165, 32, 0.1);
  border: 1px solid rgba(218, 165, 32, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.event-item:hover {
  background: rgba(218, 165, 32, 0.15);
  border-color: rgba(218, 165, 32, 0.5);
  transform: translateX(5px);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #daa520, #b8860b);
  color: #0a0a0a;
  border-radius: 12px;
  padding: 1rem;
  min-width: 80px;
  text-align: center;
}

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

.event-month {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.3rem;
}

.event-details {
  flex: 1;
  text-align: left;
}

.event-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}

.event-time {
  font-size: 1rem;
  color: #daa520;
  margin: 0;
}

@media screen and (max-width: 991px) {
  .event-item {
    padding: 1rem;
    gap: 1rem;
  }

  .event-date {
    min-width: 60px;
    padding: 0.8rem;
  }

  .event-day {
    font-size: 1.5rem;
  }

  .event-month {
    font-size: 0.75rem;
  }

  .event-name {
    font-size: 1.1rem;
  }

  .event-time {
    font-size: 0.9rem;
  }
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 8rem;
  position: relative;
  z-index: 10;
}

.slider-btn {
  background: rgba(218, 165, 32, 0.2);
  border: 2px solid rgba(218, 165, 32, 0.5);
  color: #daa520;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

@media screen and (max-width: 991px) {
  .slider-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

.slider-btn:hover {
  background: rgba(218, 165, 32, 0.4);
  border-color: #daa520;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(218, 165, 32, 0.5);
}

.slider-dots {
  display: flex;
  gap: 1rem;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(218, 165, 32, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

@media screen and (max-width: 991px) {
  .dot {
    width: 10px;
    height: 10px;
  }
}

.dot:hover {
  background: rgba(218, 165, 32, 0.6);
  transform: scale(1.2);
}

.dot.active {
  background: #daa520;
  width: 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(218, 165, 32, 0.7);
}

@media screen and (max-width: 576px) {
  .dot.active {
    width: 25px;
  }
}


#contact {
  padding: 4rem 0;
}

.contact-title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #daa520 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
  font-weight: 300;
}

.contact-content {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.contact-card {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 10, 46, 0.8) 100%);
  border: 2px solid rgba(218, 165, 32, 0.4);
  border-radius: 20px;
  padding: 3rem 4rem;
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.contact-card:hover {
  border-color: rgba(218, 165, 32, 0.7);
  box-shadow: 0 15px 50px rgba(218, 165, 32, 0.3);
  transform: translateY(-5px);
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #daa520, #b8860b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 5px 20px rgba(218, 165, 32, 0.4);
  position: relative;
  z-index: 1;
}

.contact-card-icon i {
  font-size: 2rem;
  color: #0a0a0a;
}

.contact-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.contact-phone {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  color: #daa520;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-phone:hover {
  color: #f0c040;
  text-shadow: 0 0 20px rgba(218, 165, 32, 0.6);
  transform: scale(1.05);
}

.contact-card-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  position: relative;
  z-index: 1;
}

.social-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(218, 165, 32, 0.2);
}

.social-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.social-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  font-weight: 300;
}

@media screen and (max-width: 991px) {
  #contact {
    padding: 2rem 0;
  }

  .contact-title {
    font-size: 2.5rem;
  }

  .contact-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .contact-card {
    padding: 2rem;
  }

  .contact-card-icon {
    width: 70px;
    height: 70px;
  }

  .contact-card-icon i {
    font-size: 1.8rem;
  }

  .contact-card h3 {
    font-size: 1.5rem;
  }

  .contact-phone {
    font-size: 1.5rem;
  }

  .social-section {
    margin-top: 3rem;
    padding-top: 2rem;
  }

  .social-title {
    font-size: 1.8rem;
  }
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .container {
    padding: 0.25rem;
  }
}
.container .box {
  width: 100%;
  max-width: 1150px;
  padding: 2rem;
  text-align: center;
  font-size: 20px;
  font-weight: 100;
}

@media screen and (min-width: 1367px) and (max-width: 1920px) {
  .container .box {
    max-width: 1150px;
    padding: 2rem;
  }
}

@media screen and (min-width: 1921px) {
  .container .box {
    max-width: 1366px;
    padding: 3rem;
  }
}

@media screen and (max-width: 991px) {
  .container .box {
    max-width: calc(100% - 0.5rem);
    padding: 1rem;
  }
}

.about-content {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  text-align: left;
}

.about-content img {
  width: 300px;
  height: auto;
  border-radius: 20px;
  flex-shrink: 0;
  margin-top: 2.5rem;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  text-align: left;
  margin-top: 0;
}

.about-text p {
  text-align: left;
}

@media screen and (max-width: 991px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-content img {
    width: 200px;
  }

  .about-text h2,
  .about-text p {
    text-align: center;
  }
}
.container h1 {
  display: block;
  font-size: 5.75rem;
  margin: 0 0 0.5rem 0;
  padding: 0;
  text-shadow: 0 4px 20px rgba(218, 165, 32, 0.5);
  background: linear-gradient(135deg, #ffffff 0%, #daa520 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.container h1 small {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 5px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
.container h1 br {
  line-height: 2.75rem;
  margin: 0;
  padding: 0;
}
.container h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-top: 2rem;
  text-shadow: 0 2px 10px rgba(218, 165, 32, 0.3);
  color: #f5f5f5;
}
.container h2 b {
  font-size: 1.5rem;
  font-weight: 100;
}
.container h4 {
  margin-top: 6.25rem;
  font-size: 1.75rem;
  font-weight: 100;
  margin: 0 0 2rem 0;
  padding: 0;
}
.container .socials {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
}

.container .socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(10, 10, 10, 0.5);
  border: 2px solid rgba(218, 165, 32, 0.3);
  border-radius: 50%;
  color: white;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.container .socials a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.container .socials a:hover::before {
  opacity: 1;
}

.container .socials a:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: rgba(218, 165, 32, 0.8);
  box-shadow: 0 10px 30px rgba(218, 165, 32, 0.4);
  background: rgba(218, 165, 32, 0.1);
}

.container .socials i {
  font-size: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.container .socials a:hover i {
  color: #daa520;
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.6);
}

.container .socials img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.container .socials a:hover img {
  filter: brightness(1.3) drop-shadow(0 0 10px rgba(218, 165, 32, 0.6));
}

@media screen and (max-width: 991px) {
  .container .socials {
    gap: 1rem;
    margin-top: 2rem;
  }

  .container .socials a {
    width: 70px;
    height: 70px;
  }

  .container .socials i {
    font-size: 2rem;
  }

  .container .socials img {
    width: 2rem;
    height: 2rem;
  }
}

.music-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}
.music-box .item {
  width: calc(33.333% - 0.75rem);
  margin: 0;
  background: rgba(10, 10, 10, 0.5);
  border: 2px solid rgba(218, 165, 32, 0.3);
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  overflow: hidden;
}

.music-box .item:hover {
  border-color: rgba(218, 165, 32, 0.6);
  box-shadow: 0 8px 30px rgba(218, 165, 32, 0.3);
  transform: translateY(-5px);
}

.music-box .item iframe {
  border-radius: 10px;
}
@media screen and (max-width: 991px) {
  .music-box {
    flex-direction: column;
  }
  .music-box .item {
    width: 100%;
    margin: 0.5rem 0;
  }
}

#events {
  padding: 4rem 0;
}

#events .slide {
  position: static;
  opacity: 1;
  transform: none;
  pointer-events: all;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}

@media screen and (min-width: 1367px) and (max-width: 1920px) {
  #events .slide {
    max-width: 1150px;
  }
}

@media screen and (min-width: 1921px) {
  #events .slide {
    max-width: 1366px;
  }
}

#events .slide-banner {
  min-height: auto;
  padding: 3rem;
}

@media screen and (min-width: 1367px) {
  #events .slide-banner {
    padding: 4rem;
  }
}

#events .banner-title {
  font-size: 3.5rem;
  margin: 1.5rem 0;
}

@media screen and (min-width: 1367px) {
  #events .banner-title {
    font-size: 4rem;
  }
}

#events .events-list {
  margin: 3rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

#events .event-item {
  margin-bottom: 1.5rem;
}

#events .event-item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  #events {
    padding: 2rem 0;
  }

  #events .slide-banner {
    padding: 2rem;
  }

  #events .banner-title {
    font-size: 2.5rem;
  }

  #events .events-list {
    margin: 2rem 0;
  }
}/*# sourceMappingURL=style.css.map */
