/* BASIC css start */
/**/
#footer .foot_bottom, #bbsData .bbs-link-top, #bbsData .bbs-link-btm, .bbs-table-list table thead, .top-banner
{
    display: none !important;
}
#footer
{
    margin-top: 60px;
}

/* brochure */
.brochure-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.brochure-card:hover {
    transform: translateY(-5px);
}

.brochure-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: #f5f5f5;
}

.brochure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: background-color 0.3s ease;
}

.brochure-card:hover .overlay {
    background-color: rgba(0, 0, 0, 0.6);
}

.button-group {
    display: flex;
    gap: 12px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.brochure-card:hover .button-group {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background-color: #dc2626;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.action-button:hover {
    background-color: #991b1b;
}

.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background-color: #dc2626;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.download-button:hover {
    background-color: #991b1b;
}

.brochure-title {
    padding: 16px;
    background-color: white;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
    border-top: 1px solid #e5e7eb;
}

/* BASIC css end */

