:root {
  --charcoal: #1C1C1E;
  --cream: #F9F8F4;
  --gold: #D4AF37;
  --teal: #1DAAA4;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
}
header {
  background: var(--charcoal);
  color: var(--cream);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  text-decoration: none;
  color: var(--cream);
}
.logo span { color: var(--gold); }
nav ul { list-style: none; display: flex; gap: 1.5rem; }
nav a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
}
nav a:hover { color: var(--gold); }
.intro { text-align: center; padding: 3rem 2rem 1rem; }
.intro h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 1px;
}
.intro p {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 1rem auto 2rem;
}
/* Masonry Grid */
.gallery {
  column-count: 3;
  column-gap: 1.5rem;
  padding: 1rem 2rem;
}
.gallery-item {
  background: white;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  break-inside: avoid;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.gallery-item:hover { transform: translateY(-5px); }
.gallery-item img {
  width: 100%;
  display: block;
  height: auto;
  min-height: 350px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .gallery { column-count: 2; }
  .gallery-item img { min-height: 250px; }
}
@media (max-width: 600px) {
  .gallery { column-count: 1; }
  .gallery-item img { min-height: 180px; }
}
.caption {
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  background-color: var(--cream);
}
/* Footer */
footer {
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  padding: 2.5rem 1rem 1rem 1rem;
  font-size: 1rem;
  border-top: 2px solid var(--gold);
  margin-top: 3rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.footer-links a {
  color: var(--gold);
  margin: 0 0.5rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--teal); }
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.copyright {
  color: #bbb;
  font-size: 0.95rem;
  margin-top: 1rem;
}
@media (max-width: 600px) {
  .footer-links { flex-direction: column; gap: 0.5rem; }
}
/* Mobile Menu */
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  position: absolute;
  top: 1.2rem;
  right: 2rem;
  z-index: 1100;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--charcoal);
    flex-direction: column;
    padding: 1rem 0;
  }
  .nav-links.active { display: flex; }
  .nav-links li {
    margin: 0;
    text-align: center;
    padding: 0.5rem 0;
  }
  .hamburger { display: block; }
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: var(--charcoal);
    padding: 1rem 0;
    z-index: 100;
  }
  nav ul.active { display: flex; }
  nav a {
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: center;
  }
}
/* Fullscreen overlay for gallery images */
.fullscreen-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28,28,30,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 2000;
  transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
}
.fullscreen-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.fullscreen-img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  background: #fff;
  object-fit: contain;
  animation: zoomIn 0.3s cubic-bezier(.4,0,.2,1);
}
@keyframes zoomIn {
  from { transform: scale(0.92); opacity: 0.7; }
  to { transform: scale(1); opacity: 1; }
}
.close-fullscreen {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  background: rgba(28,28,30,0.7);
  border: none;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2100;
  transition: background 0.2s;
}
.close-fullscreen:hover {
  background: rgba(212,175,55,0.9);
  color: var(--charcoal);
}
@media (max-width: 600px) {
  .close-fullscreen {
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    width: 2rem;
    height: 2rem;
  }
  .fullscreen-img {
    max-width: 98vw;
    max-height: 80vh;
  }
}