/* ====== Základní styly ====== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: #0f0f1a;
  color: #f0f0f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

.section {
  padding: 4rem 2rem;
  text-align: center;
  background: rgba(15, 15, 26, 0.95);
}

h1, h2, h3, h4 {
  font-family: 'Rubik', sans-serif;
  margin-bottom: 1rem;
  color: #ffffff;
}

p {
  max-width: 800px;
  margin: 0 auto 1rem;
  color: #d9d9d9;
}

/* ====== Navbar styl ====== */
.navbar {
  backdrop-filter: blur(10px);
  background: rgba(30, 30, 35, 0.75);
  padding: 0.75rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-left img {
  width: 40px;
}

.navbar-left span {
  font-weight: 700;
  font-size: 1.2rem;
  color: #f0f0f0;
}

.navbar-right {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar-right a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  transition: background 0.3s;
}

.navbar-right a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ====== Hero sekce ====== */
.hero {
  background: url('images/Background_2.png') center/cover no-repeat;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  padding: 2rem;
  backdrop-filter: brightness(0.75);
}

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 80px;
}

.hero-text {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.hero-text h1 {
  font-size: 4rem;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  font-family: 'Rubik', sans-serif;
}

.hero-text p {
  font-size: 1.3rem;
  color: #f0f0f0;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.btn {
  background: #f9c74f;
  color: #000;
  padding: 0.8rem 1.5rem;
  border: none;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.btn:hover {
  background: #ffb703;
}

/* ====== Flex sekce pro postavu ====== */


.drtikul-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .drtikul-column {
    flex: 1 1 30%;
    text-align: center;
  }
  
  .character-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
  }
  
  .character {
    width: 300px;
    max-width: 100%;
    transition: transform 0.3s ease;
  }
  
  .character:hover {
    transform: scale(1.05);
  }
  
  .arrow-btn {
    background: none;
    border: none;
    color: #f9c74f;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .arrow-btn:hover {
    transform: scale(1.2);
  }
  
  .drtikul-text {
    flex: 1 1 40%;
    text-align: left;
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.8;
  }
  
  .pet {
    max-width: 120px;
    margin-top: 1rem;
  }

/* ====== Schopnosti ====== */
.abilities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.ability {
  background: #1a1a2e;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 0 10px #000;
}

.ability h4 {
  margin-top: 1rem;
  color: #90e0ef;
  font-family: 'Rubik', sans-serif;
}

/* ====== Footer ====== */
.footer {
  background: #1a1a2e;
  color: #ccc;
  padding: 2rem 2rem 1rem;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.footer-map {
  flex: 1 1 45%;
  min-width: 300px;
}

.footer-info {
  flex: 1 1 45%;
  min-width: 300px;
}

.footer-info p {
  margin: 0.5rem 0;
}

.footer-info a {
  color: #f9c74f;
  text-decoration: none;
}

.footer-socials {
  margin-top: 1rem;
}

.footer-socials a {
  margin-right: 1rem;
}

.footer-socials img {
  width: 32px;
  height: 32px;
  filter: brightness(90%);
  transition: transform 0.3s;
}

.footer-socials img:hover {
  transform: scale(1.1);
}

.footer-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888;
}
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  color: #f0f0f0;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

/* Mobilní zobrazení */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .navbar-right {
    display: none;
    flex-direction: column;
    background: rgba(30, 30, 35, 0.95);
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .navbar-right.show {
    display: flex;
  }

  .navbar-right li {
    padding: 0.5rem 0;
  }

  .navbar {
    align-items: flex-start;
  }
  .drtikul-layout {
    flex-direction: column;
    align-items: center;
  }

  .character-wrapper {
    justify-content: center;
  }

  .drtikul-text {
    text-align: center;
    padding: 1rem;
  }
}