:root {
  --primary-color: #57A5B8;
  --accent-color: #E0A030;
  --text-color: #333;
  --bg-color: #f8f9fa;
}

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

body {
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 56px; /* space for fixed header */
}

/* Header + Hamburger */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  z-index: 1000;
}
.site-header .header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}
.site-header .social-links {
  display: flex;
  gap: 1rem;
  margin: 0;
  margin-left: auto;
  min-height: auto;
}
.site-header .social-link {
  font-size: 1.25rem;
}
.site-title {
  color: var(--primary-color);
  font-weight: 400;
  text-decoration: none;
}
.hamburger {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger-lines,
.hamburger-lines::before,
.hamburger-lines::after {
  display: block;
  content: '';
  width: 22px;
  height: 2px;
  background: var(--text-color);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger-lines::before { transform: translateY(-6px); }
.hamburger-lines::after  { transform: translateY(6px); }

/* Drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 260px;
  background: #fff;
  box-shadow: 2px 0 16px rgba(0,0,0,0.12);
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  z-index: 1001;
  padding-top: 56px; /* below header */
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  display: block;
  padding: 1rem 1.25rem;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.nav-drawer a:hover { background: rgba(0,0,0,0.04); }
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1000;
}
.drawer-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Intro overlay */
#intro {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color);
  z-index: 9999;
}
#intro .intro-logo {
  width: clamp(160px, 22vw, 320px);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
  animation: pop-in 1200ms ease forwards;
}
@keyframes pop-in {
  0% { transform: scale(1.40); opacity: 0; }
  60% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
#intro.fade-out { animation: intro-hide 600ms ease forwards; }
@keyframes intro-hide { to { opacity: 0; visibility: hidden; } }

@media (prefers-reduced-motion: reduce) {
  #intro .intro-logo { animation: none; }
  #intro.fade-out { animation: none; display: none; }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-container {
  width: 300px;
  margin: 0 auto;
  transition: transform 0.3s ease;
  min-width: 300px;
}
.logo-container:hover { transform: scale(1.05); }
#logoADM { width: 100%; height: auto; }

.content { text-align: center; width: 100%; }
.content h1 { text-transform: uppercase; }

.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  aspect-ratio: 16/9;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.video-container iframe,
#player {
  width: 100%;
  height: 100%;
  border: none;
}

/* Layout for video + sidebar */
.content-grid {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.video-container { flex: 1 1 auto; max-width: none; }
.sidebar { width: 300px; max-width: 35%; }
.sidebar h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #555;
  text-transform: uppercase;
}
.video-list { display: flex; flex-direction: column; gap: 0.75rem; }
.video-item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.video-item:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.12); }
.video-item img { width: 100%; display: block; }
.video-caption { padding: 0.5rem 0.6rem 0.65rem; background: #fff; }
.video-title { font-size: 0.9rem; font-weight: 600; line-height: 1.3; margin-bottom: 0.15rem; }
.video-duration { font-size: 0.8rem; color: #777; }

.hidden { visibility: hidden; display: none; }

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  min-height: 3rem;
}
.social-link {
  color: var(--primary-color);
  font-size: 2rem;
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.social-link i {
  display: block;
}
.social-link:hover { color: var(--accent-color); transform: translateY(-3px); }

footer {
  text-align: center;
  padding: 1.5rem;
  margin-top: auto;
  background-color: rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 1024px) {
  .site-header .social-link {
    font-size: 1rem;
  }
  .site-header .social-links {
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .container { padding: 1rem; }
  .logo-container { width: 200px; }
  .social-link { font-size: 1.75rem; }
  .content-grid { flex-direction: column; }
  .sidebar { width: 100%; max-width: none; }
  .site-header .social-links { display: none; }
}

/* Misc from inline */
div#logoADM { min-width: 300px; }
 
.rating-input {
  color: #000;
}

/* Images and Videos Wrapper Styles */
div#images-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    display: flex;
    gap: 20px;
    justify-content: center;
}

div#videos-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.image-container {
    width: 50%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-container > a {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.image-container img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.02);
}

.song-image {
    display: flex;
    flex-direction: column;
    padding: 10px;
    text-align: center;
}

.song-image>a {
    text-decoration: none;
    color: #004c5f;
    font-weight: 600;
    margin-bottom: 5px;
}

.song-text {
    font-size: 0.9rem;
    color: #666;
}

/* Responsive styles for images and videos on mobile */
@media (max-width: 768px) {
    div#images-wrapper, div#videos-wrapper {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        width: 100%;
    }
    
    .image-container {
        width: 100%;
        max-width: 100%;
    }
    
    .image-container img {
        max-width: 100%;
    }
    
    .video-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .video-container iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
    
    div#images-wrapper, div#videos-wrapper {
        margin: 1rem auto;
    }
}

@media (max-width: 480px) {
    .song-image>a {
        font-size: 1rem;
    }
    
    .song-text {
        font-size: 0.85rem;
    }
    
    .video-container iframe {
        max-height: 250px;
    }
}