:root {
  --background: #f8f5ef;
  --foreground: #082e0f;
  --primary: rgb(2, 42, 12);
  --primary-foreground: #fdf8f3;
  --secondary: #efe5d9;
  --accent: #023a0c;
  --muted: #082e0f;
  --border: rgba(95, 67, 52, 0.16);
  --card: #ffffff;
  --shadow: 0 10px 35px rgba(69, 41, 24, 0.06);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Lato', Arial, sans-serif;
  color: var(--foreground);
  background: linear-gradient(180deg, #fbf8f3 0%, var(--background) 100%);
}
img {
    /* display: block; */
    max-width: 100%;
}


.container {
  width: min(100% - 32px, 896px);
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 72vh;
  height:100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
}

.hero-overlay {
  /*background:
    linear-gradient(180deg, rgba(22, 14, 10, 0.18) 0%, rgba(22, 14, 10, 0.42) 100%),
    radial-gradient(circle at 50% 35%, rgba(183, 139, 93, 0.12), transparent 60%);
    */
    background-color:#000;;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 24px 16px;
}

.hero-logo {
    position: relative;
    left: 50%;
    transform: translateX(-50%);

    width: clamp(300px, 40vw, 700px);
    height: auto;
}


.hero h1 {
  margin: 0 0 16px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-subtitle {
  margin: 0 0 24px;
  font-size: clamp(1.125rem, 2.1vw, 1.5rem);
  font-weight: 300;
}

.hero-location {
  margin: 0;
  font-size: clamp(0.95rem, 1.4vw, 1rem);
  opacity: 0.9;
}

.page-content {
  padding-top: 64px;
  padding-bottom: 64px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.section-title {
  margin: 0 0 24px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.35rem);
  line-height: 1.15;
  color: var(--primary);
}

.address-row,
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.address-main {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
}

.address-sub {
  margin: 4px 0 0;
  color: var(--muted);
}

.icon-wrap {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex: 0 0 24px;
}

.description {
  margin: 24px 0 0;
  line-height: 1.85;
  font-size: 1rem;
}

.description span {
  color: var(--accent);
  font-weight: 700;
}

.divider {
  width: 120px;
  height: 1px;
  margin: 40px auto 56px;
  background: linear-gradient(90deg, transparent 0%, rgba(183, 139, 93, 0.7) 50%, transparent 100%);
}

.menu-box {
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.menu-box p {
  margin: 0 0 32px;
  line-height: 1.85;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
  box-shadow: 0 12px 24px rgba(95, 67, 52, 0.18);
}

.menu-button:hover { transform: translateY(-1px); background: #50382b; }

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

.event-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.event-card h3 {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 1.4rem;
}

.event-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  line-height: 1.65;
}

.event-card li:last-child { margin-bottom: 0; }
.event-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.contact-list {
  display: grid;
  gap: 24px;
}

.contact-link {
  font-size: 1.125rem;
  line-height: 1.5;
}

.contact-link:hover { color: var(--accent); }

.social-title { text-align: center; }
.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.social-link {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--primary);
  transition: transform .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.social-link:hover {
  transform: translateY(-2px);
  color: var(--accent);
  border-color: rgba(183, 139, 93, 0.35);
  box-shadow: var(--shadow);
}

.site-footer {
  margin-top: 64px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 32px 0;
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  margin: 0;
  opacity: 0.92;
}

.footer-sub {
  margin-top: 8px !important;
  opacity: 0.75 !important;
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .hero { min-height: 64vh; }
  .page-content { padding-top: 48px; padding-bottom: 48px; }
  .card, .menu-box, .event-card { padding: 24px; }
  .events-grid { grid-template-columns: 1fr; gap: 20px; }
  .divider { margin: 32px auto 40px; }
  .section-title { margin-bottom: 20px; }
}
