:root {
  --primary: #0a5a87;
  --secondary: #073048;
  --accent: #1ab4e0;
  --background: #050402;
  --text-light: #f8f9fa;
  --text-muted: #adb5bd;
}

@font-face {
  font-family: 'Varino';
  src: url('/fonts/varino.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Exo Space';
  src: url('/fonts/exospace.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

body {
  background-color: var(--background);
  color: var(--text-light);
  font-family: "Exo Space", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Varino", sans-serif;
}

.dragon-font-hero {
  font-family: "Varino", sans-serif;
  font-size: 3.6rem;
}

.dragon-font-nav {
  font-family: "Varino", sans-serif;
  font-size: 1.4rem;
}

.dragon-blue {
  color: #285b87;
}

.btn-primary {
  background-color: #285b87;
  border: 2px solid var(--accent);
  color: white;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-secondary {
  border: 2px solid var(--accent);
  color: #285b87;
  transition: all 0.3s ease;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
}
.btn-secondary:hover {
  background-color: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.btn-primary-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  transition: all 0.3s ease;
}
.btn-primary-outline:hover {
  background-color: var(--accent);
  color: white;
}

.timeline-container {
  position: relative;
}
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 60px;
}
.timeline-dot {
  position: absolute;
  left: 31px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent);
  border: 4px solid var(--background);
  box-shadow: 0 0 0 2px var(--primary);
  transform: translateX(-50%);
  z-index: 10;
}
.timeline-content {
  background-color: rgba(7, 48, 72, 0.7);
  border-left: 3px solid var(--accent);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.badge-private {
  background-color: var(--primary);
  color: var(--text-light);
}
.badge-public {
  background-color: var(--accent);
  color: var(--background);
}
.badge-genre {
  background-color: rgba(26, 180, 224, 0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
}

.music-player {
  background-color: rgba(7, 48, 72, 0.7);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.music-player:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.event-card {
  background-color: rgba(7, 48, 72, 0.7);
  border-left: 3px solid var(--accent);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.event-card:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.gallery-image {
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.gallery-image:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.contact-form input,
.contact-form textarea {
  background-color: rgba(7, 48, 72, 0.7);
  border: 1px solid var(--secondary);
  color: var(--text-light);
  transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 180, 224, 0.3);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: 9999px;
  color: var(--text-light);
  transition: all 0.3s ease;
}
.social-icon:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}

.nav-link {
  position: relative;
  transition: all 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}