/* styles.css */
body {
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  margin: 0;
  padding: 50px 0;
  background-color: #f5f5f5;
  color: #333;
}

.container {
  width: 600px;
  margin: 0 auto;
  text-align: left;
}

nav {
  margin-bottom: 20px;
  font-family: 'EB Garamond', serif;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #0066cc;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

img.lola-main {
  width: 200px;
}



p, ul {
  line-height: 1.6;
  margin-bottom: 20px;
}

ul {
  padding-left: 20px;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

nav .nav-arrow {
  margin: 0 5px;
  color: #333;
  font-weight: 500;
  font-family: 'EB Garamond', serif; /* Explicitly set to match nav links */
}

hr.separator {
  width: 600px;
  border: 0;
  border-top: 1px solid #333;
  margin: 20px 0;
}

p.align-right {
  text-align: right;
}

p.align-center {
  text-align: center;
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

.image-grid div {
  margin-bottom: 10px;
  text-align: center;
}

.vertical-img {
  width: 300px;
  height: 400px;
  object-fit: cover;
}

.horizontal-img {
  width: 400px;
  height: 300px;
  object-fit: cover;
}

img {
  max-width: 100%;
  height: auto;
}


/* ----- Shared box style ----- */
.collapsible__trigger,
.collapsible__content {
  background: #fff;
  border: 1px solid #ddd;
}

/* ----- Trigger (top box) ----- */
.collapsible__trigger {
  all: unset;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-weight: 600;
  border-radius: 6px 6px 0 0;
  transition: background 0.2s;
}
.collapsible__trigger:hover { background: #dad9ff; }

.collapsible__arrow {
  margin-right: 0.5rem;
  transition: transform 0.25s ease;
  font-size: 0.9em;
}
.collapsible[open] .collapsible__arrow { transform: rotate(90deg); }


/* ----- Content (bottom box) ----- */
.collapsible__content {
  padding: 0 1rem;
  border-radius: 0 0 6px 6px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0s 0.3s;
}
.collapsible[open] .collapsible__content {
  padding: 1rem;
  max-height: none;  /* increased for images */
  transition: max-height 0.3s ease, padding 0s;
}


/* ----- Seamless merge when open ----- */
.collapsible[open] .collapsible__trigger {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
}
.collapsible[open] .collapsible__content {
  border-top: none;
}

/* ----- PHOTO GRID ----- */
.photo-grid {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  justify-content: center;
  flex-wrap: wrap; /* allows stacking on small screens */
}

.photo-grid__img {
  width: 150px;
  height: 150px;
  object-fit: cover;           /* ensures image fills square without distortion */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.photo-grid__img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Responsive: stack on small screens */
@media (max-width: 600px) {
  .photo-grid {
    flex-direction: column;
    align-items: center;
  }
  .photo-grid__img {
    width: 120px;
    height: 120px;
  }
}

/* ---- YouTube embed ---- */
.youtube-embed {
  position: relative;
  padding-bottom: 56.25%;   /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  margin: 1.5rem 0;
}
.youtube-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
