@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700&family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

:root {
    --primary: #202020;
    --red-light: #FFA5A5;
    --red-deep: #F02F44;
    --accent-gray: #f8fafc;
    --container-width: 1280px;
}

body { 
    font-family: 'Plus Jakarta Sans', 'Noto Sans SC', sans-serif; 
    color: var(--primary); 
    background: #ffffff; 
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.max-container {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}

/* Section Title with Underline */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}
.section-title-after-left::after {
    content: '';
    position: absolute;
    left: 20px;
    bottom: -10px;
    
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: white;
    z-index: 100;
    padding: 2rem;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Hover effects */
.hover-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* PDF Modal */
.pdf-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.pdf-modal.active {
    display: flex;
}

.pdf-modal-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 90vh;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pdf-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    color: #333;
}

.pdf-modal-close:hover {
    background: #f0f0f0;
    transform: rotate(90deg);
}

.pdf-modal-content {
    width: 100%;
    height: 100%;
    border: none;
}
