/* Gallery */
.gallery {
    margin-top: 16px;
}

.gallery-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    background: #eee;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.slide.active {
    opacity: 1;
}

.gallery.manual .slide {
    transition: opacity 0.75s ease;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.arrow {
    background: none;
    border: 1px solid var(--color-text-muted);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    color: var(--color-text);
    transition: all 0.15s;
}

.arrow:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.indicators {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    padding: 0;
    transition: all 0.15s;
}

.dot:hover {
    background: var(--color-text-muted);
}

.dot.active {
    background: var(--color-accent);
    transform: scale(1.4);
}

/* Intro block inside the home pane */
.intro {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: 15%;
    margin-right: 15%;
}

.intro-logo {
    width: 350px;
    height: auto;
    flex-shrink: 0;
}

.intro-text {
    margin: 0;
    color: var(--color-text-subtle);
}

.intro-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

/* Responsive */
@media (max-width: 1600px) {
    .intro {
        flex-direction: column;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }
}
