/* ---------- Theme Colors ---------- */
:root{
  --bg: #FFCCFF;
  --accent: #FF0066;
  --accent-soft: #ff5c9a;
  --card: #ffffff;
  --text: #333333;
  --muted: #666666;
  --border: rgba(0,0,0,0.12);
  --shadow: 0 6px 16px rgba(0,0,0,0.12);
  --radius: 14px;
}

/* ---------- Page Basics ---------- */
*{ box-sizing: border-box; }

body{
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* ---------- Header / Main / Footer (IDs match your HTML) ---------- */
#header{
  text-align: center;
  padding: 18px 12px;
  background: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid var(--border);
}

#header h1{
  margin: 0;
  color: var(--accent);
}

#main a {
  display: block;
  width: fit-content;
  margin: 12px auto 0;
}


#footer{
  text-align: center;
  padding: 16px 12px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
}

/* ---------- Links ---------- */
a{
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
}

a:hover{
  color: var(--accent-soft);
  text-decoration: underline;
}

.photos{
  display: inline-block;  /* makes them sit in rows */
  margin: 10px;
  vertical-align: top;
}

.photos img{
  width: 180px;
  height: 180px;
  object-fit: cover;
  display: block;

  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(255, 0, 102, 0.10);
  border: 1px solid rgba(0,0,0,0.10);

  transition: transform 0.15s ease;
}

.photos img:hover{
  transform: scale(1.03);
}

/* ---------- Full-size image on photos.php ---------- */
.full{
  max-width: 650px;
  width: 95%;
  height: auto;
  display: block;
  margin: 18px auto;

  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.10);
}