/**
 * NextBio Website - Brochure Modal Styles
 * 브로슈어 모달 스타일
 */

.brochure-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brochure-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.brochure-modal-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    max-height: 900px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    z-index: 10001;
    overflow: hidden;
}

.brochure-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #2c2c2c;
    border-bottom: 1px solid #3a3a3a;
    flex-shrink: 0;
}

.brochure-modal-title {
    color: #ffffff;
    font-family: var(--font-family-suit);
    font-weight: 600;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}

.brochure-modal-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brochure-download-btn {
    background: var(--main, #8dc63f);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 4px;
    font-family: var(--font-family-suit);
    font-weight: 600;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.brochure-download-btn:hover {
    background: var(--main, #7ab82e);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(141, 198, 63, 0.3);
}

.brochure-close-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.brochure-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.brochure-close-btn svg {
    width: 24px;
    height: 24px;
}

.brochure-modal-body {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.brochure-pdf-viewer {
    width: 100%;
    height: 100%;
    border: none;
}

/* 반응형 */
@media (max-width: 1024px) {
    .brochure-modal-container {
        width: 95%;
        height: 95%;
    }
    
    .brochure-modal-header {
        padding: 16px 20px;
    }
    
    .brochure-modal-title {
        font-size: 16px;
    }
    
    .brochure-download-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .brochure-modal-container {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    
    .brochure-modal-header {
        padding: 12px 16px;
    }
    
    .brochure-modal-title {
        font-size: 14px;
    }
    
    .brochure-download-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .brochure-close-btn {
        width: 36px;
        height: 36px;
    }
    
    .brochure-close-btn svg {
        width: 20px;
        height: 20px;
    }
}
