/* styles.css - Modern clean style with soft green accents */
:root{
  --bg:#fbfbfb;
  --text:#223;
  --muted:#556;
  --accent:#4fb06a; /* soft green */
  --card:#fff;
  --radius:12px;
  --maxw:1100px;
  --shadow: 0 6px 18px rgba(34,34,34,0.06);
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

*{box-sizing:border-box}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 20px;
  max-width:var(--maxw);
  margin:0 auto;
  background:transparent;
  position:sticky;
  top:0;
  z-index:20;
}

.brand{
  font-weight:700;
  font-size:18px;
}

.nav{
  display:flex;
  gap:16px;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
}
.menu-btn{
  display:none;
  background:none;
  border:0;
  font-size:20px;
}

/* HERO */
.hero{
  position:relative;
  height:60vh;
  max-height:680px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(0.55) saturate(1.05);
}
.hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  color:#fff;
  padding:20px;
  max-width:900px;
}
.hero-content h1{
  font-size:34px;
  margin:0 0 8px 0;
  line-height:1.05;
}
.lead{
  color:rgba(255,255,255,0.95);
  margin:12px 0 18px 0;
  font-size:16px;
}

/* buttons */
.btn{
  background:var(--accent);
  color:white;
  padding:10px 16px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  display:inline-block;
  margin-right:10px;
}
.btn-outline{
  background:transparent;
  border:2px solid rgba(255,255,255,0.9);
}

/* page content */
.page{
  max-width:var(--maxw);
  margin:28px auto;
  padding:0 20px;
}
.intro{
  max-width:var(--maxw);
  margin:24px auto;
  padding:20px;
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:12px;
  margin-top:18px;
}
.gallery-item{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:10px;
  cursor:pointer;
  display:block;
}

/* modal */
.modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,0.6);
  z-index:60;
}
.modal-content{
  max-width:90%;
  max-height:90%;
  position:relative;
}
.modal img{
  width:100%;
  height:auto;
  border-radius:10px;
}
.close{
  position:absolute;
  right:-10px;
  top:-10px;
  background:#fff;
  border-radius:50%;
  border:0;
  padding:6px 8px;
  cursor:pointer;
  font-weight:700;
}

/* map */
.map-container{
  height:420px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.map-container iframe{
  width:100%;
  height:100%;
  border:0;
}

/* form */
.contact-form{
  display:grid;
  gap:12px;
  max-width:600px;
}
.contact-form label{
  display:block;
  font-weight:600;
  color:var(--muted);
}
.contact-form input, .contact-form textarea{
  width:100%;
  padding:10px;
  border-radius:8px;
  border:1px solid #e6e6e6;
  background:white;
}
.note{
  margin-top:12px;
  color:var(--muted);
}

/* footer */
.site-footer{
  margin-top:30px;
  padding:22px 20px;
  text-align:center;
  color:var(--muted);
  font-size:14px;
  background:transparent;
}

/* responsive */
@media(max-width:800px){
  .nav{display:none}
  .menu-btn{display:block}
  .hero{height:50vh}
  .hero-content h1{font-size:24px}
}
