/* Base */
* { box-sizing: border-box; margin:0; padding:0; }
body {
  font-family:'Raleway',sans-serif;
  background: url('outdoors.jpg') center/cover fixed no-repeat;
  color: #333;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.7);
  color: #fff;
}
.nav .logo a {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem;
  color: inherit;               /* now white */
  text-decoration: none;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  color: #fff;                  /* now white */
  text-decoration: none;
  font-weight: 600;
}
.nav-links a:hover,
.nav-links a.active {
  color: #b5651d;
  text-decoration: underline;
}

/* HERO */
.hero {
  height: 80vh;
  background: url('outdoors.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-inner {
  background: rgba(255,255,255,0.8);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}
.hero-inner h1 {
  font-family: 'Pacifico', cursive;
  font-size: 3rem;
  color: #5c3a1a;
  margin-bottom: 1rem;
}
.hero-inner p {
  font-size: 1.2rem;
  color: #4a2c2a;
  margin-bottom: 1.5rem;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: .8rem 1.6rem;
  background: #c49a6c;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background .3s, transform .2s;
}
.btn:hover {
  background: #b28558;
  transform: translateY(-2px);
}

/* MENU GRID */
.menu-pdf {
  margin: 2rem auto;
  max-width: 1000px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  border-radius: 8px;
  overflow: hidden;
}

/* MASONRY GALLERY */
.gallery-masonry {
  column-count: 3; column-gap:1rem; margin:2rem;
}
.masonry-item {
  break-inside: avoid; margin-bottom:1rem; border-radius:6px; overflow:hidden;
}
.masonry-item img {
  width:100%; display:block; transition:transform .3s; cursor:pointer;
}
.masonry-item:hover img {
  transform: scale(1.05);
}

/* LIGHTBOX */
.lightbox {
  display:none; position:fixed; inset:0;
  background: rgba(0,0,0,0.8);
  align-items:center; justify-content:center; z-index:20;
}
.lightbox img { max-width:90%; max-height:90%; border-radius:8px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position:absolute; background: rgba(0,0,0,0.6);
  border:none; color:#fff; font-size:2rem; padding:.5rem .8rem;
  cursor:pointer; border-radius:4px;
}
.lightbox-close { top:1rem; right:1rem; }
.lightbox-prev  { left:1rem; top:50%; transform:translateY(-50%); }
.lightbox-next  { right:1rem; top:50%; transform:translateY(-50%); }
@media(max-width:900px){ .gallery-masonry{column-count:2} }
@media(max-width:600px){ .gallery-masonry{column-count:1} }

/* CONTACT BOX */
.contact-info-box {
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 2rem;
  border-radius: 8px;
  max-width:600px;
  margin: 2rem auto;
  text-align: center;
}
.contact-info-box p { margin:.5rem 0; }

/* CONTACT FORM */
.contact-form {
  display:flex; flex-direction:column; gap:1rem;
  max-width:500px; margin:2rem auto 4rem;
}
.contact-form input,
.contact-form textarea {
  padding:.75rem; border:1px solid #ccc; border-radius:4px;
}
.contact-form button {
  padding:.75rem; background:#c49a6c; color:#fff; border:none; border-radius:4px;
  cursor:pointer; transition:background .3s;
}
.contact-form button:hover {
  background:#b28558;
}

/* ===== FOOTER ===== */
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.7);
  color: #fde2c7;
  font-size: 0.9rem;
}

footer .social-icons {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

footer .social-icons li {
  display: inline-block;
}

footer .social-icons a {
  display: inline-block;
}

footer .social-icons img {
  width: 24px;
  height: 24px;
  /* ensure the SVGs show up on dark bg */
  object-fit: contain;
}

footer a {
  color: inherit;            /* white-ish */
  text-decoration: none;
  font-weight: 400;
}

footer a:hover {
  color: #b5651d;
  text-decoration: underline;
}
/* Embedded PDF container */
.menu-pdf {
  margin: 2rem auto;
  max-width: 1000px; /* constrain for large desktops */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  border-radius: 8px;
  overflow: hidden;
}

/* make the PDF embed keep its aspect ratio */
.menu-pdf .pdf-container {
  position: relative;
  width: 100%;
  /* A4 aspect ratio: height = width × 1.414 */
  padding-top: 141.4%;
  overflow: hidden;
}

.menu-pdf .pdf-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 600px) {
  .contact-form {
    width: 90%;
    max-width: 400px;
    margin: 2rem auto 4rem;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100%;
    box-sizing: border-box;
  }
}
