
* {
  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;
}

.wrapper {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === 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 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,
nav a.active {
  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;
}

/* === HLAVNÝ OBSAH === */
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 h2 {
  color: #ff5ec2;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.promo-text strong {
  color: #6de0ec;
}

/* === CAROUSEL (smaller) === */
.carousel-container {
  position: relative;
  max-width: 600px;   
  margin: 0 auto 40px; 
  overflow: hidden;
  border-radius: 10px; 
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel img {
  min-width: 100%;
  height: auto;
  border-radius: 10px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 94, 194, 0.8);
  border: none;
  color: white;
  font-size: 1.5rem;   
  padding: 8px;        
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-btn:hover {
  background-color: rgba(255, 94, 194, 1);
}

/* === 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 DESIGN === */
@media (max-width: 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;
    font-size: 2rem;
    color: white;
    position: relative;        
  }

  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;
  }
}


  h1 {
    font-size: 1.6rem;
  }

  .promo-text {
    font-size: 1rem;
    padding: 0 10px;
  }
}

@media (max-width: 600px) {
  .carousel-btn {
    font-size: 1.5rem;
    padding: 8px;
  }

  .promo-text {
    font-size: 0.95rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
