/*
Theme Name: Mała Huta - Zamknięte
Description: Prosta strona informacyjna o zamknięciu restauracji Mała Huta.
Author: Artur
Version: 1.0
*/

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: #0a0a0a;
  color: #f2ede4;
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  width: 100%;
  overflow-x: hidden;
}

.mh-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #0a0a0a;
}

/* HERO IMAGE — contain, never stretched, blends into black bg */
.mh-hero {
  width: 100%;
  background: #0a0a0a;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mh-hero img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  display: block;
}

@media (min-width: 900px) {
  .mh-hero img {
    width: auto;
    height: 78vh;
    max-width: 92vw;
  }
}

/* TEXT CONTENT */
.mh-content {
  width: 100%;
  max-width: 720px;
  padding: 48px 28px 90px;
  text-align: center;
}

.mh-content .mh-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 12px;
  color: #a9a196;
  margin-bottom: 22px;
  font-family: Georgia, serif;
}

.mh-content h1 {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 30px;
  color: #f6f1e8;
}

.mh-divider {
  width: 60px;
  height: 1px;
  background: #4a4640;
  margin: 0 auto 30px;
}

.mh-content p {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.8;
  color: #cfc7bb;
  margin: 0 0 24px;
  font-weight: 300;
}

.mh-content p.mh-future {
  font-style: italic;
  color: #e7dfd2;
  margin-top: 34px;
}

.mh-signature {
  margin-top: 44px;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #7d766c;
}

@media (max-width: 480px) {
  .mh-content {
    padding: 34px 22px 70px;
  }
}
