body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background-color: #ebe7e7;
  color: #000000;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
}

h1 {
  font-weight: 700;
  letter-spacing: 1px;
}

h2 {
  font-weight: 400;
  letter-spacing: 1px;
}

header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-toggle {
  display: none;
}

@media screen and (max-width: 600px) {

  header {
    flex-direction: row; /* keep h1 and toggle in a row */
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }

  /* Show hamburger */
  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    cursor: pointer;
  }

  /* Mobile nav - hidden initially */
  nav {
    position: fixed;
    top: 0;
    right: -220px; /* offscreen */
    width: 200px;
    height: 100%;
    background-color: #ebe7e7;
    flex-direction: column;
    padding: 60px 20px 20px 20px;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  /* Show nav when toggled */
  nav.show {
    right: 0;
  }

  nav a {
    margin: 15px 0;
    font-size: 1.2rem;
    color: #000;
    text-decoration: none;
  }

  /* Remove desktop left margin on mobile */
  nav a {
    margin-left: 0;
  }

  h1 {
    font-size: 1.5rem;
  }
}


nav a {
  color: #000000;
  text-decoration: none;
  margin-left: 20px;
}

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

.hero {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  opacity: 0.7;
}


.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px;
}

.gallery img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.gallery-item img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.contact {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact p {
  font-size: 1.2rem;
  margin: 10px 0;
}

.contact a {
  color: #000000;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}