/* Normalize CSS - базовые стили */
/* Содержимое из normalize.css будет загружено отдельно */

/* Main CSS - основные стили сайта */
/* Содержимое из main.css будет загружено отдельно */

/* Дополнительные стили из inline <style> секции generator_form.html */
.header-table {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

.header-title,
.header-logo-wrp,
.header-links-img {
    padding: 25px;
}

header {
    display: flex;
    flex-wrap: wrap;
}

#header_top,
.contact_info {
    width: 100%;
}

@media (max-width: 1000px) {
    .header-table {
        flex-wrap: wrap;
    }

    .header-title,
    .header-logo-wrp,
    .header-links-img {
        padding: 10px;
        font-size: 0.8em;
    }
    #header_wrap {
        padding-top: var(--spacing-md);
        padding-bottom: var(--spacing-md);
    }
    .header-title{
        height:150px;
    }
}


/* Clickable cover in header */
.header-logo-clickable {
    cursor: pointer;
    transition: opacity 0.2s;
}
.header-logo-clickable:hover {
    opacity: 0.8;
}

/* Cover lightbox overlay */
.cover-lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    cursor: pointer;
    justify-content: center;
    align-items: center;
}
.cover-lightbox.active {
    display: flex;
}
.cover-lightbox img {
    max-height: 95vh;
    max-width: 95vw;
    object-fit: contain;
    cursor: default;
}
.cover-lightbox-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    z-index: 10001;
}
.cover-lightbox-close:hover {
    color: #ccc;
}
