:root {
  --terracotta: #c0533a;
  --gold:       #d4a853;
  --cream:      #faf4e8;
  --deep:       #0d1f2d;
}

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--deep);
  color: var(--cream);
}

.photo-section {
  padding: 4rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.photo-frame {
  width: 100%;
  max-width: 620px;
  position: relative;
}

/* ===== HEADER (KNOP + TITEL) ===== */
.photo-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 1rem;
}

.photo-title {
  position: static;
  transform: none;

  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.14em;
  color: #f5e7c6;
  text-shadow:
    0 2px 6px rgba(0,0,0,0.9),
    0 6px 18px rgba(0,0,0,0.75);
  white-space: nowrap;
}

.index-title {
	position: absolute; 
	top: -3.2rem; left: 50%; 
	transform: translateX(-50%); 
	font-family: 'Cormorant Garamond', serif; 
	font-size: clamp(2rem, 4.5vw, 3rem); 
	font-weight: 700; font-style: italic; 
	letter-spacing: 0.14em; color: #f5e7c6; 
	text-shadow: 0 2px 6px rgba(0,0,0,0.9), 0 6px 18px rgba(0,0,0,0.75); 
	white-space: nowrap;
}

/* ===== AFBEELDING ===== */
.photo-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow:
    0 8px 40px rgba(0,0,0,.5),
    0 0 0 1px rgba(212,168,83,.15);
  transition: transform .4s ease;
}

.photo-frame img:hover {
  transform: scale(1.015);
}

/* ===== TERUG KNOP ===== */
.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;
  flex: 0 0 40px;

  background: rgba(255,255,255,0.08);
  color: var(--cream);

  border-radius: 50%;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.14);

  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: all 0.2s ease;
}

.back-button:hover {
  background: var(--gold);
  color: #000;
  transform: scale(1.05);
}

/* ===== CENTER BADGE ===== */
.expired-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Jost', sans-serif;
  font-weight: 900;
  font-size: clamp(1.2rem, 5vw, 2.2rem);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: white;

  background: rgba(120, 120, 120, 0.45);
  padding: 0.5em 1.2em;
  border-radius: 999px;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);

  pointer-events: none;
  white-space: nowrap;
}

/* ===== NAV ===== */
.nav {
  margin-top: 3rem;
  padding-bottom: 2rem;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-list a {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  color: var(--cream);
  font-size: 22px;
  text-decoration: none;
  transition: all .3s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.nav-list a:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Specifieke hover kleuren */
.nav-list li:first-child a:hover {
  background: #FF0000;
  color: #fff;
}

.nav-list li:nth-child(2) a:hover {
  background: #00A61A;
  color: #fff;
}

.nav-list li:nth-child(3) a:hover {
  background: #006FB5;
  color: #fff;
}

.nav-list li:nth-child(4) a:hover {
  background: #6441A5;
  color: #fff;
}

.nav-list li:nth-child(5) a:hover {
  background: #FF5500;
  color: #fff;
}