:root {
  --primary-bg: #0f172a;
  --primary-text: #1e293b;
  --light-bg: #f4f6f8;
  --white: #ffffff;
  --accent: #38bdf8;
  --link-hover: #38bdf8;
  --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 6px 20px rgba(0, 0, 0, 0.06);
  --font-main: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--light-bg);
  color: var(--primary-text);
  line-height: 1.6;
  cursor: url('cursor.png') 16 0, pointer;
}

header {
  background-color: var(--primary-bg);
  padding: 24px 60px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: var(--shadow-light);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 40px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--link-hover);
}

#kontakt {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
}

.hero {
  position: relative;
  height: 90vh;
  background: url('hero.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 0 1rem;
  box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.4);
}

.hero .overlay {
  max-width: 700px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.hero .btn-primary {
  background-color: #2a9d8f;
  color: white;
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(42,157,143,0.6);
  transition: background-color 0.3s ease;
}
.hero .btn-primary:hover,
.hero .btn-primary:focus {
  background-color: #21867a;
  outline: none;
  box-shadow: 0 6px 16px rgba(33,134,122,0.8);
}

.hero .scroll-down {
  margin-top: 2rem;
  font-size: 2rem;
  color: #2a9d8f;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(10px);}
  60% {transform: translateY(5px);}
}

section {
  padding: 60px 40px;
  max-width: 1100px;
  margin: 40px auto;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--primary-bg);
}

ul {
  padding-left: 25px;
  list-style-type: disc;
}

.team-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.member {
  flex: 1 1 250px;
  background-color: #f1f5f9;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.member:hover {
  transform: translateY(-5px);
}

footer {
  background-color: var(--primary-bg);
  color: var(--white);
  text-align: center;
  padding: 25px 0;
  font-size: 0.9rem;
  margin-top: 60px;
}

.footer-logo-container {
  margin-bottom: 10px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: var(--white);
  color: var(--primary-text);
  padding: 20px 30px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  display: none;
  z-index: 1000;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.cookie-buttons {
  margin-top: 12px;
}

.cookie-buttons button {
  padding: 10px 24px;
  margin: 5px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.cookie-buttons button:first-child {
  background-color: #2563eb;
  color: white;
}

.cookie-buttons button:first-child:hover {
  background-color: #1d4ed8;
}

.cookie-buttons button:last-child {
  background-color: #e2e8f0;
  color: var(--primary-text);
}

.cookie-buttons button:last-child:hover {
  background-color: #cbd5e1;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    padding: 16px 20px;
    gap: 20px;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
  }

  nav a {
    font-size: 1.1rem;
  }
}
