:root {
  --navbar: #f0f0f0;
  --text: #2f2a26;
  --muted: #3b3631;
  --accent: #008e7f;
  --entry: #fff3b9;
  --accent-strong: #006d60;
  --shadow: 0 24px 60px rgba(84, 68, 57, 0.08);

  --bg01: linear-gradient(225deg, #d4c9e8, transparent);
  --bg02: linear-gradient(225deg, #c9d7e8, transparent);
  --bg03: linear-gradient(225deg, #c9e8e1, transparent);
  --bg04: linear-gradient(225deg, #c9e8ce, transparent);
  --bg05: linear-gradient(225deg, #d8e8c9, transparent);
  --bg06: linear-gradient(225deg, #e8e6c9, transparent);
  --bg07: linear-gradient(225deg, #e8dbc9, transparent);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  padding-bottom: 1.75rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--navbar);
  border-bottom: 1px solid rgba(0, 143, 129, 0.12);
}

.site-header-inner,
.main-content,
.content-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.content-section {
  padding: 0;
  justify-content: center;
}

.content-section h2 {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-strong);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.site-footer {
  background: var(--navbar);
  border-top: 1px solid rgba(0, 143, 129, 0.12);
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  font-size: 0.95rem;
}

.brand {
  display: flex;
  align-items: center;
}

.brand a {
  width: 12rem;
  height: 3rem;
  display: grid;
  place-items: center;
}

.brand img {
  position: relative;
  top: -5px;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-nav a {
  color: var(--text);
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.5rem;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.25rem;
}

.main-content {
  flex-direction: column;
  max-width: 760px;
  padding: 1.5rem 0;
}

.landing {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0rem 0 5rem;
  font-weight: 600;
}

.landing h2 {
  margin: 1.25rem 0 1rem;
  font-size: clamp(2.25rem, 3.2vw, 3.5rem);
  line-height: 1.05;
}

.landing p {
  margin: 0 auto 2rem;
  max-width: 36rem;
  color: var(--muted);
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  font-weight: 600;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.87);
  color: var(--accent);
  border-color: rgba(0, 142, 127, 0.18);
}

.grid-1 {
  display: grid;
  gap: 1.75rem;
}

.grid-2 {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-entry {
  background: var(--entry);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  padding: 2rem;
  text-align: center;
}

.info-entry h3 {
  margin-bottom: .3rem;
}

.info-entry h4 {
  color: var(--accent-strong);
  font-weight: 600;
  margin: 0 0 2rem;
}

.info-entry p, ul {
  margin: 0.85rem 0 0;
  color: var(--muted);
  text-align: justify;
  text-indent: 2rem;
  list-style-type: "🐱";
}

.contact-list {
  display: grid;
  gap: .5rem;
}

.contact-list h3 {
  margin: .5rem 0 0 0;
}

.contact-list article {
  background: var(--entry);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  padding: 1rem 2rem;
}

.contact-list article p, .contact-list article h4 {
  white-space: pre;
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 1.5rem;
  height: 240px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery-item img:hover {
  filter: brightness(1.2);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.4);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  height: 5rem;
  width: 3rem;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: background 0.3s ease;
  display: flex;
  justify-content: center;
  line-height: 2.9rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    display: none;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}

.carousel-section {
  padding: 3rem 0;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.carousel-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.3s ease;
}

.indicator.active {
  background: #fff;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}


@media (max-width: 1000px) {
  .site-header-inner {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  /* Revert to single column layout on smaller screens */
  .grid-2 {
    display: flex;
    flex-direction: column;
  }
}
