main {
    width: 95%;
    margin-top: 30px;
    margin-bottom: 50px;
}
/* Stylování sekce o nás */
.aboutus-section {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    color: black;
    border: 2px solid var(--tertiary-color);
    border-radius: 30px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: var(--secondaryGlass2-color);
    animation: fadeIn 1.3s ease-in-out forwards;
    opacity: 0;
}
.aboutus-section h1 {
    margin: 10px 0;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Historie firmy */
.history {
    margin-bottom: 30px;
}

.history h2 {
    border-bottom: 2px solid var(--secondary-background-color);
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.history p {
    margin: 10px 0;
}

/* Galerie fotografií */
.gallery {
    margin-bottom: 30px;
}

.gallery h2 {
    border-bottom: 2px solid var(--secondary-background-color);
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.gallery p {
    margin-bottom: 15px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.photo-item {
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}
.photo-item img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item img:hover {
    transform: scale(1.05);
}

