* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    color: #333;
}

/* ----- HEADER ----- */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    background-color: white;
    padding: 0 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1000;
}

/* ----- LOGO ----- */
.logo {
    height: 60px;
}

.logo img {
    height: 100%;
    object-fit: contain;
}

/* ----- NAVIGÁCIA ----- */
.navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid transparent;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-link:hover {
    color: #00bcd4;
    transform: scale(1.1);
    border-color: #00bcd4;
    background-color: #f0fafa;
}

.nav-link.active {
    color: #00bcd4;
    background-color: #f0fafa;
    transform: scale(1.1);
    border: none;
}

/* ===== HOME SECTION (DOMOV) ===== */
.home-section {
    display: flex;
    height: auto;
    padding: 50px;
  }
  
  .left-content {
    flex: 0 0 65%;
    padding-right: 40px;
    border-right: 1px solid #ccc;
  }
  
  .left-content img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .left-content p {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
  }
  
  .right-content {
    flex: 0 0 35%;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .right-content h3 {
    margin-bottom: 10px;
    color: #00bcd4;
  }
  
  .right-content p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  
  @media (max-width: 768px) {
    .home-section {
      flex-direction: column;
      padding: 20px;
    }
  
    .left-content, .right-content {
      flex: 1 1 100%;
      padding: 0;
      border: none;
    }
  
    .left-content {
      margin-bottom: 30px;
    }
  }  

/* ----- BURGER MENU ----- */
.burger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    user-select: none;
}

/* ----- KONTAKT ----- */
.contact {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.contact h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #00bcd4;
}

.contact-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 18px;
    line-height: 1.6;
}

.contact-card a {
    color: #00bcd4;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-map {
    max-width: 800px;
    margin: 40px auto 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 768px) {
    .navigation {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        display: none;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .navigation.open {
        display: flex;
    }

    .navigation ul {
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
        gap: 10px;
    }

    .navigation ul li {
        width: 100%;
        text-align: center;
    }

    .burger {
        display: block;
    }
}

/* Kontajner pre stránku */
.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  /* Hlavný obsah – rastie podľa potreby */
  main {
    flex: 1;
  }
  
  /* Footer – vždy na spodku */
  footer {
    text-align: center;
    background-color: #1a1a1a;
    color: white;
    padding: 20px 0;
  }

