* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: rgb(1, 16, 31);
    color: #f4f4f4;   
  }
  
  .container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
  }
  
  /* Header */
  .main-header {
    background: rgb(1, 16, 31);
    padding: 20px 0;
  }
  
  .logo {
    font-size: 2rem;
    font-style: oblique;
    color: white;
    transition: transform 0.3s ease;
  }
  .logo:hover {
    transform: scale(1.1);
  }
  .main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
  }
  
  .main-nav a {
    text-decoration: none;
    color: #f4f4f4;
    font-weight: bold;
    transition: color 0.5s;
  }
  
  .main-nav a:hover {
    color: rgb(161, 165, 215);
  }
  
  /* Hero section */
  .hero-section {
    background-image: url('moj_zazitok_2.jpg'); /* sem vložíš svoj obrázok */
    background-size: cover;
    background-position: center;
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5em;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  /* Content section */
  .content-section {
    padding: 60px 0;
    max-width: 1100px;
    margin: auto;
    color: #f4f4f4;
    /* Odstránil som flex, aby sa obsah poriadne zobrazil v bloku */
  }
  
  .content-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .content-section h2 {
    margin-top: 1.5em;
    color: rgb(161, 165, 215);
  }
  
  .content-section .text-wrapper {
    max-width: 1100px;
    padding: 0 20px;
  }
  
  /* Footer */
  .main-footer {
    background: rgb(1, 16, 31);
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.9rem;
  }
  
  /* Galéria obrázkov a videí */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    justify-items: center;
    align-items: center;
  }
  
  .gallery-grid img,
  .gallery-grid video {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    background-color: black;
    transition: transform 0.3s ease;
  }
  
  .gallery-grid img:hover,
  .gallery-grid video:hover {
    transform: scale(1.05);
  }
  /* Lightbox pozadie */
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  /* Zväčšený obsah */
  .lightbox-content img,
  .lightbox-content video {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.8);
    background: black;
  }
  
  /* Zatváracie tlačidlo */
  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    z-index: 10000;
    transition: color 0.3s ease;
  }
  .lightbox-close:hover {
    color: rgb(161, 165, 215);
  }
  