/* ===== Global ===== */
body {
  margin: 0;
  font-family: "Monaco";
  font-weight: 900;
  background: #f0f1e6;
  color: #655f35;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== Top Bar ===== */
.top-bar {
  display: flex;  
  align-items: center;     /* vertical alignment */
  justify-content: space-between;  /* space left / center / right */
  padding: 1rem 2rem;
  width: 100%;
  box-sizing: border-box;
}

.top-left,
.top-right {
  flex: 0 0 auto;
}


.about-link {
  font-size: 1.2rem;
  opacity: 0.7;
align-content: center;
}

.about-link:hover {
  opacity: 1;
}
/* Center flex item */
.top-center {
  flex: 1;                       /* take remaining space */
  display: flex;
  justify-content: center;  
  max-width: 800px;                 /* optional: limit how wide the name image can grow */
   transition: transform 0.3s ease;     /* center the name image */
}

.top-center:hover {
  /* Only the hovered image scales up */
  transform: scale(1.05);
  z-index: 2; /* optional: brings it above neighboring images */
}

.home-link {                   /* take remaining space */
  display: inline-block;
  pointer-events: auto;
        /* center the name image */
}

.home-link img {
  height: auto;
  width: clamp(120px, 30vw, 460px);
  display: block;
}


.menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  opacity: 0.7;
  cursor: pointer;
  margin-right: 50%;
  color: #655f35
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.8;
}
.menu-toggle:hover { opacity: 1; }

/* ===== Hamburger Overlay ===== */
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(169, 179, 146, 0.95);
  display: inline-block;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 1000;
}

.overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.overlay-links { margin-top: 12rem; display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.overlay-links a {
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.overlay-links a:hover { opacity: 0.7; }

.close-overlay {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.close-overlay:hover { opacity: 0.7; }



/* ===== Homepage Main Content ===== */
.home-main {
  padding: 3rem 2rem 2rem; /* extra top padding for top-bar */
  max-width: 1200px;
}

.marquee {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: .75rem 0;;
  height: 150px;

}

.marquee-track {
  display: inline-flex;
  animation: scroll-left 20s linear infinite;
}

.marquee span {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 50px;
  padding-right: 9rem;
}

/* Animation */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}

.page-content {
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: 50px;
}

.masonry-container {
  /* Define the number of columns and column width/gap */
  columns: 3 250px;
  column-gap: 10px;
}

.item {
  /* Crucial for masonry: prevents items from breaking mid-content */
  break-inside: avoid;
  margin-bottom: 10px; /* Space between items vertically */
}

.item img {
  max-width: 100%;
  display: block;
  /* Ensures images maintain their original aspect ratio */
  height: auto;
  width: 100%;       /* ensures it fills its container */
  border-radius: 20px; /* adjust for more or less rounding */

  transition: transform 0.3s ease;

  

}

.item img:hover {
  /* Only the hovered image scales up */
  transform: scale(1.025);
  z-index: 2; /* optional: brings it above neighboring images */
}
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;

  /* Start hidden and scaled down for smooth animation */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.visible {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);

  /* Smooth zoom animation */
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.lightbox.visible .lightbox-img {
  transform: scale(1);
}

.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
  padding: 0 1rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox .prev:hover,
.lightbox .next:hover {
  opacity: 1;
}

.lightbox .prev {
  left: 1rem;
}

.lightbox .next {
  right: 1rem;
}

.section-header {
  font-size: .75rem;
  color: #655f35;
  text-align: center;
  margin-bottom: .25rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin:  auto;
  margin-bottom: 100px;
}

.contact-form input,
.contact-form textarea {
  font-family: inherit;
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.2);
  font-size: 0.9rem;
  background: #f0f1e6;
}

.contact-form button {
  padding: 0.75rem;
  border-radius: 999px;
  border: none;
  background: #655f35;
  color: #f0f1e6;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.contact-form button:hover {
  opacity: 0.85;
}


.social-footer {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  gap: 20px;

  font-size: 14px;
  letter-spacing: 0.05em;
  z-index: 10;
}

.social-footer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem 0 2rem;
}

.social-footer svg {
  width: 26px;
  height: 26px;
  fill: #655f35;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-footer svg:hover {
  opacity: 1;
  transform: translateY(-2px);
}

