@import url('https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:wght@400;600;700&family=Playfair+Display:ital@0;1&display=swap');

:root {
  --primary-bg: #0F0F0F;
  --secondary-bg: #1C1C1C;
  --accent-red: #E30613;
  --accent-gold: #D4AF37;
  --text-white: #FFFFFF;
}

body {
  background-color: var(--primary-bg);
  color: var(--text-white);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, .font-heading {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.font-vintage {
  font-family: 'Playfair Display', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--primary-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-red);
  border-radius: 10px;
}

/* Animations */
@keyframes flicker {
  0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
    opacity: 1;
  }
  20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
    opacity: 0.4;
  }
}

.animate-flicker {
  animation: flicker 4s infinite;
}

/* Ripped border effect */
.ripped-bottom {
  position: relative;
}

.ripped-bottom::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: var(--primary-bg);
  clip-path: polygon(0% 0%, 5% 40%, 10% 0%, 15% 50%, 20% 0%, 25% 30%, 30% 0%, 35% 60%, 40% 0%, 45% 20%, 50% 0%, 55% 45%, 60% 0%, 65% 35%, 70% 0%, 75% 55%, 80% 0%, 85% 25%, 90% 0%, 95% 40%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 10;
}

.ripped-top {
  position: relative;
}

.ripped-top::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: inherit;
  clip-path: polygon(0% 100%, 5% 60%, 10% 100%, 15% 50%, 20% 100%, 25% 70%, 30% 100%, 35% 40%, 40% 100%, 45% 80%, 50% 100%, 55% 55%, 60% 100%, 65% 65%, 70% 100%, 75% 45%, 80% 100%, 85% 75%, 90% 100%, 95% 60%, 100% 100%, 100% 0%, 0% 0%);
  z-index: 10;
}

/* Button styles */
.btn-rock {
  background: linear-gradient(to right, var(--accent-red), var(--accent-gold));
  color: white;
  padding: 1rem 2rem;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn-rock:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(227, 6, 19, 0.4);
}

.text-gradient {
  background: linear-gradient(to right, var(--accent-red), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glassmorphism */
.glass-nav {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(227, 6, 19, 0.2);
}

/* Cards */
.agenda-card {
  background-color: var(--secondary-bg);
  border: 1px solid var(--accent-red);
  transition: all 0.3s ease;
}

.agenda-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
}

/* Spotify Custom Integration */
.spotify-container {
  box-shadow: 0 0 40px rgba(29, 185, 84, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.spotify-container:hover {
  box-shadow: 0 0 60px rgba(29, 185, 84, 0.2);
  transform: scale(1.01);
}

@media (max-width: 768px) {
  .spotify-container iframe {
    height: 452px;
  }
}
