/* === RESET + Basic Settings === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'League Spartan', sans-serif;
}

html, body {
  height: 100%;
}

body {
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* === HEADER === */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #6de0ec;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

/* === MENU TOGGLE === */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

/* === NAV === */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #222;
}

main {
  flex: 1; 
}

/* === KONTAKT INFO === */
.contact-info {
  text-align: center;
  margin: 50px 20px;
}

.contact-info h1 {
  font-size: 1.6rem;
  color: #6de0ec;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 1rem;
  color: #000000;
  margin: 6px 0;
}

/* === FOOTER === */
footer {
  background-color: #6de0ec;
  color: white;
  padding: 40px 20px 20px;
  margin-top: auto;
}

/* 🔥 FIX FOOTER LIST POINTS */
footer ul,
footer li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-container h3 {
  color: #ff5ec2;
  margin-bottom: 15px;
}

.footer-container a,
.footer-container p {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-container a:hover {
  text-decoration: underline;
}

/* === RESPONSIVE FOOTER === */
@media (max-width: 800px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }
}

/* === MENU TOGGLE MOBILE === */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    background-color: #6de0ec;
    position: absolute;
    top: 70px;
    right: 0;
    width: 220px;
    padding: 20px;
    border-radius: 0 0 0 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  nav.active ul {
    display: flex;
  }
}
