/* =====================================================
   CSS RESET (MEYER)
===================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, footer, header, nav, section {
  display: block;
}
body {
  line-height: 1.65;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #1a1a1a;
  background: #fff;
}
ol, ul { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }


/* =====================================================
   BRAND VARIABLES
===================================================== */
:root {
  --brand-primary: #B16200;
  --brand-dark: #000;
  --text-muted: #555;
  --background-soft: #f9f9f9;
}


/* =====================================================
   HEADER & NAVIGATION
===================================================== */
header {
  padding: 1.5rem;
  border-bottom: 3px solid var(--brand-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header img {
  height: 60px;
  width: auto;
  display: block;
}
nav { position: relative; }
#menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}
#nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
#nav-links a {
  text-decoration: none;
  color: var(--brand-dark);
  font-weight: 500;
}
#nav-links a:hover { color: var(--brand-primary); }
.nav-cta {
  background-color: var(--brand-primary);
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  border-radius: 4px;
  font-weight: 600;
}


/* =====================================================
   MOBILE NAVIGATION
===================================================== */
@media (max-width: 768px) {
  #menu-toggle { display: block; }
  #nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 1rem;
    width: 220px;
    border: 1px solid #e5e5e5;
    z-index: 100;
  }
  #nav-links.active { display: flex; }
  #nav-links a { padding: 0.5rem 0; }
  iframe {
    width: 100%;
    max-width: 100%;
    height: 350px; 
    border: 0;
    border-radius: 6px;
  }
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }
}


/* =====================================================
   MAIN LAYOUT
===================================================== */
main {
  padding: 2rem 1.5rem;
}
@media (min-width: 768px) { main { padding: 3rem 4rem; } }
@media (min-width: 1024px) { main { padding: 4rem 6rem; } }


/* =====================================================
   HERO SECTION
===================================================== */
main > section:first-of-type { position: relative; }
main > section:first-of-type img { width: 100%; display: block; }
main > section:first-of-type a {
  position: absolute;
  top: 55%;
  left: 7%;
  transform: translateY(-50%);
  background: var(--brand-primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 5px;
}
/* Mobile adjustment for hero CTA */
@media (max-width: 768px) {
  main > section:first-of-type a {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
  }
}
@media (max-width: 768px) {
  main > section:first-of-type a {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    top: 65%; /* moved down from 55% to 65% */
  }
}


/* =====================================================
   TYPOGRAPHY IMPROVEMENTS
===================================================== */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--brand-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}
p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
strong { font-weight: 700; color: var(--brand-primary); }


/* =====================================================
   SECTIONS
===================================================== */
.intro, .gallery, .visit { padding: 3rem 0; }


/* =====================================================
   GALLERY STYLING
===================================================== */
.image-grid { display: grid; gap: 2rem; }
figure img { width: 100%; border-radius: 6px; }
figcaption { margin-top: 0.5rem; font-size: 0.9rem; color: var(--text-muted); }
@media (min-width: 768px) { .image-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .image-grid { grid-template-columns: repeat(3, 1fr); } }


/* =====================================================
   LISTS
===================================================== */
section ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}
section ul li {
  border: 1px solid #e5e5e5;
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: var(--brand-dark);
  transition: all 0.3s;
}
section ul li:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}


/* =====================================================
   MAP
===================================================== */
iframe {
  margin-top: 1.5rem;
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 6px;
}


/* =====================================================
   FOOTER
===================================================== */
footer {
  background: var(--brand-dark);
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
}
footer a { color: var(--brand-primary); text-decoration: none; }
