/* Sticky Footer Layout */

body,
html {
    height: 100%;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.hero {
    background: linear-gradient(135deg, #2d3342, #689f99);
    color: white;
}

a.btn-warning {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
}

a.nav-link:hover {
    color: #efb509 !important;
}

.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}


/* style cv.php */

.cv-a4 {
    width: 210mm;
    min-height: 297mm;
    background: white;
    padding: 30px;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Segoe UI', sans-serif;
}

@media print {
    body * {
        visibility: hidden;
    }
    #cv-content,
    #cv-content * {
        visibility: visible;
    }
    #cv-content {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        box-shadow: none;
    }
}