/* ── Variables ──────────────────────────────────── */
:root {
  --green:       #7fb069;
  --green-dark:  #2c3e2d;
  --green-light: #e8f5e3;
  --bg:          #f5f4f0;
  --text:        #2e2e2e;
  --muted:       #666;
  --shadow:      0 4px 24px rgba(0,0,0,0.09);
  --radius:      12px;
}

/* ── Base ───────────────────────────────────────── */
body {
  background-color: var(--bg) !important;
  color: var(--text);
  font-family: 'Lato', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  flex: 1;
}

a { color: var(--green); }
a:hover { color: var(--green-dark); text-decoration: none; }

h1, h2, h3 {
  font-family: 'Playfair Display', serif !important;
  color: var(--green-dark) !important;
  font-weight: 700 !important;
}

h1 { font-size: 2.4rem !important; }
h2 { font-size: 1.5rem !important; }

p { color: var(--muted); line-height: 1.85; }

hr { border-color: var(--green-light); }

/* ── Navbar ─────────────────────────────────────── */
.navbar-gkrth {
  background-color: var(--green-dark) !important;
  padding: 0.75rem 1rem;
  border-bottom: 3px solid var(--green);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.navbar-gkrth .navbar-brand {
  color: #fff !important;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  letter-spacing: 0.5px;
}

.navbar-gkrth .nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.45rem 0.75rem !important;
  border-radius: 4px;
  transition: color 0.2s, background-color 0.2s;
}

.navbar-gkrth .nav-link:hover,
.navbar-gkrth .nav-item.active .nav-link {
  color: var(--green-dark) !important;
  background-color: var(--green) !important;
}

/* ── Hero Image ─────────────────────────────────── */
#topImg {
  width: 100%;
  height: 30vh;
  object-fit: cover;
  display: block;
  margin-bottom: 2.5rem;
}

/* ── Content wrapper ────────────────────────────── */
.gkrth-body {
  padding-bottom: 3rem;
}

/* ── Cards ──────────────────────────────────────── */
.card {
  border: none !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow) !important;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.13) !important;
}

.card-header {
  background-color: var(--green-dark) !important;
  color: #fff !important;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none !important;
  padding: 0.85rem 1.1rem;
}

.card-body {
  background: #fff;
  padding: 0.75rem !important;
}

.card-footer {
  background-color: var(--green-light) !important;
  border: none !important;
  padding: 0.6rem 1.1rem;
}

.card-footer a {
  color: var(--green-dark) !important;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.card img {
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.card img:hover {
  transform: scale(1.025);
}

/* ── Section label ──────────────────────────────── */
.section-title {
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}

/* ── Gallery ────────────────────────────────────── */
.img-galery {
  max-height: 400px;
  justify-content: center;
}

.thumbnail {
  max-width: 100%;
  max-height: 380px;
  width: 100%;
  height: 260px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  margin-bottom: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.thumbnail:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

/* ── Modal ──────────────────────────────────────── */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.88);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
}

.modal-img {
  width: auto;
  height: auto;
  max-width: 88vw;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 0 80px rgba(0,0,0,0.6);
}

/* ── Info text (hours, lists) ───────────────────── */
.info-block p {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text);
}

.text-brand { color: var(--green) !important; font-weight: 700; }

/* ── Map ────────────────────────────────────────── */
iframe {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  margin-top: 3rem;
  padding: 1.2rem 1.5rem;
  background: var(--green-dark);
  border-top: 3px solid var(--green);
  text-align: center;
}

.site-footer a {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover { color: rgba(255,255,255,0.9); }

/* ── Scrollbar ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }
