/* ========== VARIABLES ========== */
:root{
  --sidebar-width: 220px;   /* left logo column */
  --number-col-width: 120px;
  --entry-gap: 180px;       /* change this to increase/decrease spacing */
  --max-content-width: 1100px;
  --font-serif: "Synt", "Utopia", "Times New Roman", serif;
}

/* ========== RESET ========== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html,body { height: 100%; }
body {
  font-family: var(--font-serif);
  font-size: 14px;
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
/* Navigation */
nav {
  background-color: #fff;
  padding: 10px 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  display:flex; gap:18px; align-items:center; font-size:13px;

}

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

/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  background-color: #ffffff;
  padding: 30px 0 80px;
}

.img-container {
  position: relative;
  width: 120px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* make image containers wider and responsive */
.img-container {
  flex: 0 1 45%;
  width: 45%;
  max-width: 640px;
  min-width: 220px;
}

/* image styles */
.img-container img {
  width: 100%;
  border-radius: 3px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  box-shadow: 0 4px 10px rgb(255, 224, 224);
  object-fit: cover;
  height: 360px;
  filter: brightness(0.9);
  border: 1px solid #ebdcdc;
  position: relative;
}

.img-container:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font-size: 14px;
  padding: 5px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
  text-align: center;
}

.img-container:hover .info {
  opacity: 1;
  transform: translateY(0);
}

/* Footer banner */
.footer-banner {
  background-color: #f2e5da;
  text-align: center;
  padding: 50px 0;
  position: relative;

}

.footer-banner .tagline {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #000;
  text-align: center;
}

.footer-banner h1 {
  font-size: 14px;
  font-weight: 100;
  letter-spacing: 0px;
  font-family: "Synt", "Utopia", "Times New Roman", serif;

}

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


