/* === GENERAL PAGE STYLING === */
body {
  font-family: 'BBH Sans Hegarty', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #e0e3e4;
  text-align: center;
  color: #333;
}

h1 {
  font-size: 130px;
  font-weight: lighter;
  margin: 20px  0px;
  color: #ffc1e3;
  animation: colorFade 5s ease-in-out infinite alternate;
}

@keyframes colorFade {
  0%   { color: #ffc1e3; }
  33%  { color: #d3bfff; }
  66%  { color: #a8d0e6; }
  100% { color: #ffc1e3; }
}

h2 {
  font-size: 28px;
  font-weight: lighter;
  color: rgb(46, 11, 153);
  /* margin-bottom: 30px; */
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  /* margin: 20px auto ; */
  /* margin: 5px 0 15px; */
   margin: 5px auto 35px auto; /* top 5px, bottom 15px, left/right auto to stay centered */
  max-width: 700px;
}

/* Header */
/* Header */
/* Header */
.header {
  background-color: #84d1ab;
  height: 60px;
  display: grid;
  grid-template-columns: 1.5fr 0.0fr 1.5fr;

 /* 3 equal columns */
  align-items: center;
  padding: 0 20px;
}

/* Buttons */
.btn {
  background-color: white;
  color: #84d1ab;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  justify-self: center; /* centres buttons in their columns */
  transition: 0.2s ease;
}

.btn:hover {
  background-color: #f2f2f2;
}


/* Buttons */
.btn {
  background-color: white;
  color: #84d1ab;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: 0.2s ease;
}

.btn:hover {
  background-color: #f2f2f2;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.photo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Photo styling with backgrounds for gaps */
/* Shared photo styling */
.photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background-size: 80%;            /* Zoom level for all photos */
  background-repeat: no-repeat;
  background-position: center;     /* Default position */
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Individual photos */
.photo1 {
  background-image: url("IMG_7351.jpg");
  background-color: #FFDAB9;       /* peach */
  background-position: center 70%; 
}

.photo2 {
  background-image: url("IMG_7354.PNG");
  background-color: #87CEEB;       /* sky blue */
  background-position: center 32%; /* LOWER this number to move image UP */
}

.photo3 {
  background-image: url("IMG_7494.jpg");
  background-color: #b992c1;       /* soft grey */
  /* adjust if needed: background-position: center 50%; */
}
.photo4 {
  background-image: url("Screenshot\ 2025-08-05\ at\ 19.46.39.png");
  background-color: #9cc7c9; /* optional fallback */
  background-position: center 50%; /* tweak this */
}
.small {
  width: 65%;
  aspect-ratio: 4 / 3;
  margin: 40px auto;
  border-radius: 20px;
}


/* Captions */
.caption {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  max-width: 90%;
  margin: 10px auto 0 auto;
  padding: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 { font-size: 2.2em; }
  h2 { font-size: 1.2em; }
  .caption { font-size: 0.95rem; }
}

