/* ===== GLOBAL ===== */
html {
  min-height: 100%;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fffef5;
  color: #3E2510;
}

/* ===== HEADER ===== */
.header {
  height: auto;
  min-height: 80px;
  border: 1px solid #f7f139;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  border-radius: 5px;
  box-shadow: 10px 10px 5px #3E2510;
  background: linear-gradient(to top, #fff6a8, #ffffff);
  flex-wrap: wrap;
  gap: 10px;
  box-sizing: border-box;
}

.logo {
  height: 80px;
  width: auto;
  flex-shrink: 0;
}

.nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.a {
  text-decoration: none;
  color: #3E2510;
  font-size: 22px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  padding: 5px 10px;
  margin: 0;
}

.a:hover {
  color: white;
  background-color: #3E2510;
  border-radius: 5px;
  transition: 0.3s;
}

/* ===== MAIN ===== */
.main {
  width: 100%;
  min-height: calc(100vh - 180px);
  flex: 1;
  border: 1px solid #fff6a8;
  background-color: #fff6a8;
  margin-top: 20px;
  border-radius: 5px;
  box-shadow: 10px 10px 5px #3E2510;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding: 20px;
}

.main::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('pozadie.png') no-repeat center;
  background-size: 50%;
  opacity: 0.2;
  z-index: -1;
  animation: lietaj 6s ease-in-out infinite alternate;
}

@keyframes lietaj {
  0%   { transform: translateX(0px) translateY(0px); }
  50%  { transform: translateX(15px) translateY(-10px); }
  100% { transform: translateX(-15px) translateY(10px); }
}

.main-nadpis {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.main-img {
  width: min(380px, 80vw);
  height: auto;
  aspect-ratio: 420 / 380;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  object-fit: cover;
}

.main-text {
  max-width: 500px;
  font-size: 18px;
  line-height: 1.6;
  padding: 0 10px;
}

/* ======== PATIČKA ======== */
.footer {
  position: relative;
  width: 100%;
  background-color: #3E2510;
  border: 1px solid #3E2510;
  border-radius: 5px;
  box-shadow: 10px 10px 5px #3E2510;
  margin-top: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 30px;
  box-sizing: border-box;
  min-height: 80px;
}

.footer::before, .footer::after, .hex-row3 {
  filter: brightness(0.4) contrast(1.2);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='34.641' height='40'><polygon points='17.32,0 34.64,10 34.64,30 17.32,40 0,30 0,10' fill='none' stroke='%236b4d34' stroke-width='1.2'/></svg>");
  background-repeat: repeat-x;
  background-size: 34.64px 40px;
  pointer-events: none;
  z-index: 1;
}

.footer::after {
  content: '';
  position: absolute;
  top: 30px; left: 17.32px;
  width: 100%; height: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='34.641' height='40'><polygon points='17.32,0 34.64,10 34.64,30 17.32,40 0,30 0,10' fill='none' stroke='%236b4d34' stroke-width='1.2'/></svg>");
  background-repeat: repeat-x;
  background-size: 34.64px 40px;
  pointer-events: none;
  z-index: 1;
}

.hex-row3 {
  position: absolute;
  top: 60px; left: 0;
  width: 100%; height: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='34.641' height='40'><polygon points='17.32,0 34.64,10 34.64,30 17.32,40 0,30 0,10' fill='none' stroke='%236b4d34' stroke-width='1.2'/></svg>");
  background-repeat: repeat-x;
  background-size: 34.64px 40px;
  pointer-events: none;
}

.footer-logo {
  position: relative;
  z-index: 2;
  height: 60px;
  width: auto;
  flex-shrink: 0;
}

.footer-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: white;
  font-size: 16px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  text-align: center;
  width: 60%;
}

img {
  max-width: 100%;
  height: auto;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
  body { display: block; min-height: unset; }
  .main { min-height: 400px; }
  .header {
    flex-direction: column;
    align-items: center;
    padding: 15px;
    text-align: center;
  }
  .logo { height: 70px; }
  .nav { justify-content: center; gap: 8px; }
  .a { font-size: 18px; padding: 6px 12px; }
  .main-nadpis { font-size: 28px; }
  .main-text { font-size: 16px; }
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    min-height: 100px;
  }
  .footer-logo { height: 50px; margin-bottom: 8px; }
  .footer-text {
    position: relative;
    left: auto;
    transform: none;
    font-size: 13px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .a { font-size: 16px; }
  .main-nadpis { font-size: 24px; }
  .main-text { font-size: 15px; }
  .footer-logo { height: 45px; }
  .footer-text { font-size: 12px; }
}
