/* -------- Base -------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --text: #111;
  --muted: #666;
  --line: #eee;
  --maxw: 980px;
}

html, body {
  height: 100%;
}

body {
  font-family: "Karla", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

/* -------- Layout -------- */
.wrapper {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header {
  width: 100%;
  border-bottom: 1px solid var(--line);
  padding: 2rem 1.5rem;
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-title {
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
  color: var(--text);
}

/* -------- Navigation -------- */
nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav .nav-links {
  display: flex;
  gap: 2rem;
}

nav .nav-links a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.2s ease;
}

nav .nav-links a:hover {
  opacity: 0.6;
}

/* -------- Burger menu -------- */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}
.burger div {
  width: 22px;
  height: 2px;
  background-color: black;
}

/* -------- Mobile Navigation -------- */
@media (max-width: 768px) {
  .burger { display: flex; }

  nav .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    padding: 15px;
    border-top: 1px solid #ccc;
    z-index: 1000;
  }
  nav.active .nav-links { display: flex; }
  nav .nav-links a { padding: 10px 0; font-size: 15px; }
}

/* -------- Hero -------- */
.hero {
  text-align: center;
  margin: 4rem 0 2rem;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: .5rem;
}
.hero p { color: var(--muted); }

/* -------- Choices -------- */
.choices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.choice {
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  text-align: center;
}
.choice:hover { background: #fafafa; }

/* -------- Gallery -------- */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 2rem;
}
.gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* Home page hero image */
.hero-image {
  display: flex;
  justify-content: center; /* center horizontally */
  margin: 2rem 0;          /* add spacing above/below */
}

.hero-image img {
  max-width: 60%;   /* desktop size */
  height: auto;
  cursor: pointer;  /* clickable for lightbox */
  transition: transform 0.2s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .hero-image img {
    max-width: 85%; /* bigger on mobile */
  }
}



/* -------- Typography -------- */
.page-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: .75rem;
  margin-top: 2rem;  
}
.page-intro {
  color: var(--muted);
  margin-bottom: 2rem;
}

/* -------- Rates -------- */
.rate-card { border-top: 1px solid var(--line); padding: 1.25rem 0; }
.rate-title { font-weight: 700; margin-bottom: .25rem; }
.rate-meta { color: var(--muted); margin-bottom: .5rem; }
ul.clean { list-style: none; margin-top: .5rem; }
ul.clean li { margin: .25rem 0; }

/* -------- Footer -------- */
.footer {
  max-width: var(--maxw);
  margin: 3rem auto 0;
  padding: 2rem 1.5rem 3rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

/* -------- Responsive Grid -------- */
@media (min-width: 720px) {
  .choices { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .gallery { grid-template-columns: 1fr 1fr 1fr; }
}

/* Lightbox styling */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8); /* dark overlay */
  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

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

/* Make gallery images and homepage image clickable */
.gallery img,
.hero-image img {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery img:hover,
.hero-image img:hover {
  transform: scale(1.02); /* subtle zoom */
}
/* -------- FAQ -------- */
.faq {
  margin-top: 2rem;
}

.faq h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2rem 0 0.5rem;
  color: var(--text);
}

.faq p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.faq a {
  color: var(--text);
  text-decoration: underline;
}

.faq a:hover {
  opacity: 0.7;
}

/* Make all links dark grey and subtle */
a {
  color: #3245e2; /* purple */
  text-decoration: none; /* removes underline */
}

/* Optional: show underline or lighter color on hover */
a:hover {
  color: #3245e2; /* purple */
  text-decoration: underline;
}

