/* === RESET + Basic Settings === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'League Spartan', sans-serif;
}

body {
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === 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;
}

/* === WRAPPER === */
.wrapper {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === 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;
}

/* === BANNER === */
.banner {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* === MAIN === */
main {
  text-align: center;
  padding: 20px;
}

h1 {
  color: #6de0ec;
  font-size: 2rem;
  margin: 20px 0;
}

.promo-text {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #333;
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.7;
}

.promo-text strong {
  color: #6de0ec;
}

/* === MASKOT  === */
.maskot {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.maskot img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: brightness(60%);
}


.maskot h1 {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.3rem;
  white-space: nowrap;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}


.maskot h1:nth-child(2) {
  top: 65%;
}


.maskot h1:nth-child(3) {
  top: 70%;
}



/* === FORM === */
.contact-section {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  max-width: 600px;
  margin: 0 auto 50px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  text-align: left;
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 2px solid #ddd;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff89e2;
}

.contact-form button {
  background-color: #6ee9ff;
  color: white;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* === KONTAKT INFO === */
.contact-info {
  text-align: center;
  margin-bottom: 50px;
}

.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: 50px;
}

.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 p,
.footer-container a {
  color: white;
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-container a:hover {
  text-decoration: underline;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 15px;
  font-size: 0.85rem;
}

/* === RESPONSIVE FOOTER === */
@media (max-width: 800px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

/* === RESPONSIVE DESIGN 900px === */
@media (max-width: 900px) {
  header {
    justify-content: center;
    position: relative;
  }

  .logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    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;
  }

  .maskot h1 {
    font-size: 1.3rem;
  }
}



/* === MOBILE 600px === */
@media (max-width: 600px) {
  .promo-text {
    font-size: 1rem;
    padding: 0 10px;
  }

  .contact-info p {
    font-size: 0.9rem;
  }

  .maskot h1 {
    font-size: 1.3rem;
  }

  .maskot h1:nth-child(2) {
    top: 68%;
  }

  .maskot h1:nth-child(3) {
    top: 82%;
  }
}
