:root {
  --blue-dark: #0b2545;
  --blue-medium: #163b6d;
  --blue-accent: #1f5aa6;
  --bg-light: #f5f7fa;
  --text-dark: #1f2933;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* HEADER */
header {
  background: var(--blue-dark);
  color: #fff;
  padding: 20px;
  text-align: center;
}

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

.main-nav a {
  color: #fff;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 4px;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--blue-medium);
}

/* CONTENT */
.container,
.content {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 20px;
}

h2, h3 {
  color: var(--blue-dark);
  margin-bottom: 10px;
}

/* SLIDESHOW */
.slideshow {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* CONTACT */
.kontakt-info {
  background: #fff;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background: var(--blue-accent);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: var(--blue-medium);
}

/* FOOTER */
footer {
  background: var(--blue-dark);
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--blue-dark);
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  z-index: 9999;
}

#cookie-banner a {
  color: #fff;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .slideshow {
    height: 250px;
  }

  #cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}
.gallery img {
  width: 100%;
  border-radius: 6px;
}
.call-banner-mobile {
  display: none;
}

@media (max-width: 768px) {
  .call-banner-mobile {
    display: block;
    background: #0f2e4d;
  }

  .call-banner-mobile a {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
  }

  .call-banner-mobile strong {
    font-size: 0.9rem;
    font-weight: 600;
  }

  .call-banner-mobile small {
    font-size: 0.85rem;
    opacity: 0.9;
  }
}
