/* ---------- Reset & Base Styles ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


  body, a, img, button, .gallery-item {
    cursor: none !important;
  }
  
  /* Custom Cursor Styles */
  .cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 9999; /* Ensure it's above other elements */
  }
  
  .cursor-dot {
    position: fixed;
    width: 5px; /* Size of the dot */
    height: 5px;
    background-color: #e95a0c; /* Color of the dot */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: background-color 0.3s ease; /* Above the ring */
  }
  
  .cursor-ring {
    position: fixed;
    width: 30px; /* Initial size of the ring */
    height: 30px;
    background-color: #e95a0c;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    z-index: 9999;
  }
  
  .cursor-ring.hover {
    width: 40px; /* Enlarged size */
    height: 40px;
    background-color: #ffaa21 /* Optional: Change color on hover */
  }
  
  /* Change the color of the dot when hovering over images */
  .cursor-dot.hover {
    background-color: #ffaa21; /* Change to your desired color */
    transition: background-color 0.3s ease;
  }
  

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    color: #222;
    line-height: 1.5;
}

.handwritten-name {
    width: 100%;
    max-width: 720px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    
  }

  .hero-content path {
    fill: #000000; /* Default orange color */
    transition: fill 1s ease; /* Apply transition to both hover and un-hover states */
  }
  
  .hero-content:hover path {
    fill: #e95a0c; /* Change color on hover */
  }
  

a {
    color: #e95a0c;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover, .social-links a:hover {
    color: #ffaa21;
}

h1, h2 {
    color: #e95a0c;
    margin-bottom: 10px;
}

h1 {
    font-size: 2.4rem;
    text-align: left;
    
    margin-bottom: 18px;
}

h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

/* ---------- Navigation/Menu ---------- */
.menu-container {
    position: relative;
    z-index: 200;
}

.menu-button {
    position: fixed;
    top: 12px;
    left: 12px;
    font-size: 32px;
    background: none;
    border: none;
    color: #e95a0c;
    cursor: pointer;
    z-index: 999;
    transition: transform 0.3s;
}

.menu-button:hover {
    transform: scale(1.25);
    color: #ffaa21;
}

.menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100%;
    background-color: #fff;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 18px;
    transition: left 0.3s;
    box-shadow: 4px 0 20px rgba(0,0,0,0.04);
    z-index: 998;
}

.menu ul {
    list-style: none;
    margin-top: 24px;
}

.menu li {
    margin: 15px 0;
}

.menu a {
    color: #e95a0c;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.2s;
}

.menu a:hover {
    color: #ffaa21;
}

/* ---------- Band Bio & Links ---------- */
.band-bio {
    max-width: 720px;
    margin: 50px auto 20px auto;
    padding: 36px 26px;
    white-space: pre-line;
    text-align: left;      /* <-- Veranderd van center naar left */
}


.band-bio p {
    font-size: 0.9rem;
    color: #000000;
    ;
}




/* ---------- Footer ---------- */
/* Footer Styles */
footer {
    background-color: transparent;
    
    text-align: center;
    
  }
  
  footer .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  footer .social-links a {
    color: #000; /* Link color */
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  
  footer .social-links a:hover {
    color: #ffaa21; /* Hover color */
  }
  

  footer .copyright {
    font-size: 14px;
    color: #000;
    display: block;
    padding-top: 5px;
    margin-bottom: 5px;
    
  }





.image-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-bottom: 18px;
}

.album-cover-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.album-cover-block img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(50,50,50,0.13);
}

.album-title-small {
  font-size: 0.7rem; /* ongeveer 10-11pt */
  color: #444;
  margin-top: 2px;
  margin-left: 3px;
  opacity: 0.8;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.01em;
}
@media (max-width: 600px) {
  .album-cover-block img {
    width: 90vw;
    max-width: 230px;
    height: auto;
  }
}


/* --- Top menu --- */
.page-menu {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 26px 0 32px 0;
}

.page-menu ul {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-menu li {
}

.page-menu a {
  font-size: 1rem;
  font-weight: 600;
  color: #e95a0c;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 5px;
  
}


.page-menu a:hover, .page-menu a:focus {
transition: fill 1s ease, color 0.5s;
  color: #ffaa21;
}

/* --- General column layout --- */
.bio-section,
.album-section,
.video-section {
  max-width: 680px;
  margin: 0 auto 44px auto;
  padding: 0 16px;
  text-align: left;
}

.bio-section h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  color: #e95a0c;
}

.album-section h2,
.video-section h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #e95a0c;
  text-align: left;
}

/* --- Album covers --- */
.album-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.album-cover-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.album-cover-block img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 9px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(50,50,50,0.11);
}

.album-title-small {
  font-size: 0.72rem;
  color: #444;
  margin-top: 2px;
  margin-left: 2px;
  opacity: 0.82;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.01em;
}

/* --- Videos --- */
.video-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.video-container-small {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
  overflow: hidden;
  max-width: 420px;
}

.video-container-small iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

/* --- Responsive for mobile --- */
@media (max-width: 600px) {
  .album-cover-block img {
    width: 95vw;
    max-width: 240px;
    height: auto;
  }
  .video-container-small {
    max-width: 98vw;
  }
}
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  justify-items: center;
  margin-bottom: 24px;
  width: 100%;
}

.album-cover-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.album-cover-block img {
  width: 250x;
  height: 250;
  object-fit: cover;
  border-radius: 9px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(50,50,50,0.11);
}

.album-title-small {
  font-size: 0.72rem;
  color: #444;
  margin-top: 2px;
  text-align: center;
  opacity: 0.82;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.01em;
}

@media (max-width: 600px) {
  .album-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .album-cover-block img {
    width: 95vw;
    max-width: 240px;
    height: auto;
  }
}


.video-container-small {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
  overflow: hidden;
  max-width: 900px;   /* was 420px */
  margin: 0 auto;     /* gecentreerd */
}

@media (max-width: 900px) {
  .video-container-small {
    max-width: 98vw;
  }
}


.w {
  width: 90vw;
  max-width: 650px;
  height: 70vw;
  max-height: 90vh;
  margin: 0 auto 40px;
  display: block;
}
.ts {
  width: 100%; height: 100%;
  position: relative;
  --barH: 12%;
}
.t {
  --w:20%;
  display: block; width: var(--w); height: var(--barH);
  position: absolute; bottom: 0; left: var(--l);
  transform-origin: top left;
}
.t img {
  display: block; width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 6px;
  
  transition: transform 0.4s;
}
[type="radio"] { display: none; }
:checked + label.t {
  left:0; bottom:var(--barH);
  height:calc(100% - var(--barH));
  z-index: 2;
}
:checked + label.t img {
  object-fit: contain;
  transform: scale(1.05);
}
.ts:after {
  content:"";
  display:block; width:100%; height:15px;
  position:absolute; bottom:0;
  background:linear-gradient(transparent 20%, rgba(0,0,0,0.08));
  transform:rotateX(90deg)scaleX(1.2);
  transform-origin:bottom center;
}
:not(:checked) + .t {
  transform: translate3d(0,0,-5px);
  pointer-events: auto;
}
:not(:checked) + .t:hover {
  transform: translate3d(0,-8px,-5px) scale(1.08);
 
  cursor: pointer;
}
:not(:checked) + .t img {
  transform: scale(0.92);
  opacity: 0.84;
}
:checked + .t {
  box-shadow: 0 0 0 transparent;
  animation: anim 1.3s 1;
}
@keyframes anim {
  from { transform: rotateY(6deg) rotateX(3deg) }
}
.t {
  transition: transform 0.8s cubic-bezier(0.77,0,0.175,1), 
              bottom 1s cubic-bezier(0.77,0,0.175,1), 
              left 1s cubic-bezier(0.77,0,0.175,1), 
              width 0.6s cubic-bezier(0.77,0,0.175,1), 
              box-shadow 1.5s cubic-bezier(0.77,0,0.175,1);
}
.t:hover, :checked + .t {
  transition: transform 0.8s cubic-bezier(0.77,0,0.175,1), 
              bottom 1s cubic-bezier(0.77,0,0.175,1), 
              left 1s cubic-bezier(0.77,0,0.175,1), 
              width 0.6s cubic-bezier(0.77,0,0.175,1), 
              box-shadow 0s;
}


.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 500px;
  
}

.gallery-arrow {
  background: #e95a0c;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  padding: 0.002em 0.5em;
  
  cursor: pointer;
  box-shadow: 0 2px 8px -2px rgba(0,0,0,0.11);
  transition: background 0.2s, transform 0.15s;
}
.gallery-arrow:hover {
  background: #ffaa21;
  
}

.gallery-arrow {
  background: none;
  border: none;
  padding: 0;
  margin: 0 20px;
  cursor: pointer;
  transition: transform 0.15s;
  outline: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  opacity: 0.92;
}
.gallery-arrow:active {
  transform: scale(0.90);
}
.gallery-arrow svg {
  display: block;
  width: 48px;
  height: 48px;
  transition: filter 0.22s, opacity 0.22s;
  filter: drop-shadow(0 1px 8px rgba(233,90,12,0.12));
}
.gallery-arrow:hover svg circle {
  fill: #ffaa21;
}
.gallery-arrow:focus svg circle {
  stroke: #333;
  stroke-width: 2;
}
.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 16px 0 8px 0;
}

/* ---------- Mobile tweaks voor het page-menu ---------- */
@media (max-width: 480px) {          /* pas drempel aan naar wens */
  .page-menu {
    margin: 18px 0 24px 0;           /* iets minder verticale ruimte */
  }

  .page-menu ul {
    gap: 12px;                       /* compacter dan de 28 px desktop */
    flex-wrap: wrap;                 /* breekt naar 2 rijen als nodig */
    justify-content: center;
  }

  .page-menu a {
    font-size: 0.85rem;              /* ca. 14 px → leesbaar maar smaller */
    padding: 4px 8px;                /* kleinere hit-box */
  }
}


/* === Footer fix: mobile wrap === */
footer .social-links          { flex-wrap: wrap; padding: 0 12px; } /* mag over meerdere regels breken */
footer .social-links a        { white-space: nowrap; }             /* link-woorden blijven heel */
@media (max-width: 480px) {
  footer .social-links        { gap: 12px; }                       /* iets kleiner horizontaal gat */
}


/* === Footer fix: mobile wrap === */
footer .social-links          { flex-wrap: wrap; padding: 0 12px; } /* mag over meerdere regels breken */
footer .social-links a        { white-space: nowrap; }             /* link-woorden blijven heel */
@media (max-width: 480px) {
  footer .social-links        { gap: 12px; }                       /* iets kleiner horizontaal gat */
}

