
* { box-sizing: border-box; }
html, body {
  margin: 0;
  height: 100%;
  background: #F5F5DC; 
  font-family: "Anonymous Pro", monospace;
  color: #111;
  overflow-x: hidden;
}


.back {
  position: fixed;
  top: 20px;
  left: 25px;
  font-size: 26px;
  color: #111;
  text-decoration: none;
  z-index: 50;
}


.title {
  text-align: center;
  font-size: clamp(40px, 10vw, 120px);
  margin-top: 100px;
  margin-bottom: 60px;
  font-weight: 700;
  letter-spacing: 0.05em;
}


.gallery-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0 40px;
}


.photo {
  width: 180px;
  height: 180px;
  background: #ccc;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}


.photo:hover img {
  filter: blur(3px) brightness(0.8);
  transform: scale(1.05);
}

.photo-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(183, 211, 181, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.photo-info .cafe {
  font-family: "Anonymous Pro", monospace;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.photo-info .drink {
  font-size: 0.85rem;
  opacity: 0.8;
}
.photo:hover .photo-info {
  opacity: 1;
}

.quote {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 40px;
  font-family: "Anonymous Pro", monospace;
  color: #111;
}

.quote p {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.quote span {
  font-size: 0.95rem;
  color: #444;
  opacity: 0.8;
}
