@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Obecné stylování */
body {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: "Roboto", serif;
    font-weight: 500;
    font-style: normal;
    background-color: #000000;
    color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

header nav a {
    float: right;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
}

header .logo img {
    max-height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #00aaff;
    text-decoration: none;
}

/* Úvodní sekce */
#intro {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to right, #000, #00aaff);
    color: #fff;
    padding: 10%;
}

#intro img {
    margin-bottom: 5%;
    width: 50%;
}

#intro p {
    font-size: 300%;
    margin-bottom: 5%;
}

#intro button {
    background-color: #00aaff;
    border: none;
    padding: 10px 20px;
    color: #fff;
    font-size: 300%;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#intro button:hover {
    background-color: #0077cc;
}

a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    text-decoration: none;
    color: #fff;
}

a:visited :active {
    text-decoration: none;
    color: #fff;
}

/* Sekce styl */
section {
    padding: 20px;
    margin: 20px 0;
    background-color: #141414;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

p{
    font-size: 1em;
}

h2 {
    border-bottom: 2px solid #00aaff;
    padding-bottom: 5px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 2em;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.main-content {
    display: flex;
    align-items: center;
    padding: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.text-section {
    flex: 1;
    padding-right: 20px;
}

.text-section h1 {
    font-size: 24px;
}

.text-section p {
    margin: 10px 0;
}

.text-section a {
    text-decoration: none;
    font-weight: bold;
}

.image-section {
    flex: 1;
    border-radius: 15%;
}

.image-section img {
    width: 100%;
    max-width: 630px;
    height: auto;
}

/* Gallileo */

.gallery {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.gallery img {
    width: 130px;
    height: 130px;
}

.gallery a :hover {
    transform: scale(1.1);
}

.gallery a {
    text-decoration: none;
    margin-top: 10px;
    display: block;
    font-weight: bold;
}

.gallery-description {
    margin-top: 20px;
}

/* Galerie 2? */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
  /* Galria srovnána ? */
  .column {
    flex: 33%;
    max-width: 33%;
    padding: 0 4px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }
  
  /* Responsive layout - galery */
  @media screen and (max-width: 800px) {
    .column {
      flex: 50%;
      max-width: 50%;
    }
  }
  
  /* Responsive layout - geleee 2 */
  @media screen and (max-width: 600px) {
    .column {
      flex: 100%;
      max-width: 100%;
    }
  }

/* Kontakty */
iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
    margin-top: 15px;
    text-align: center;
}

.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    
}
.employee-card {
    background: #141414;
    border: 1px solid #141414;
    border-radius: 8px;
    width: 250px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all .2s ease-in-out; 
}
.employee-card:hover{
    transform: scale(1.1); 
}
.employee-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}
/* feet pics */
footer {
    text-align: center;
}

/* Responzivní design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Basic styles for the gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Media Queries for responsiveness */
@media (max-width: 1024px) {
    .header a {
        float: none;
        display: block;
        text-align: left;
      }
      .header {
        float: none;
      }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .main-content{
        grid-template-columns: repeat(1fr);
    }
}


.show {
    display: block !important; 
}
