* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: #222220;
  background-color: #fff;
  letter-spacing: 1px;
}

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

.navbar a, .btn {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

.container {
  max-width: 1200px; 
  margin: 0 auto;
  padding: 0 20px; 
}

.section-title {
  font-size: 48px;
  margin-bottom: 12px;
}

.section-subtitle {
  opacity: 0.7;
  margin-bottom: 60px;
  font-size: 18px;
}



.about-row,
.menu-card,
.coffee-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: transform, opacity;
}

.about-row.visible,
.menu-card.visible,
.coffee-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.visit-info,
.visit-photo {
  opacity: 0;
  transform: translateY(40px) translateZ(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: transform, opacity;
}

.visit-info.visible,
.visit-photo.visible {
  opacity: 1;
  transform: translateY(0);
}


/* LIGHTBOX ----------------------------------- */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: #fff;
  cursor: pointer;
  opacity: 0.4;
  user-select: none;
  transition: opacity 0.3s ease;
}

.lightbox-arrow:hover {
  opacity: 1;
}

.lightbox-arrow.prev {
  left: 40px;
}

.lightbox-arrow.next {
  right: 40px;
}

.section-divider {
  border: none;
  height: 1px;
  max-width: 120px;
  margin: 18px auto;
  background: rgba(255,255,255,0.2);
}



