/* CV Page Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-y: scroll;
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    background: linear-gradient(110deg, rgba(60, 60, 60, 1) 0%, rgba(255, 255, 255, 1) 100%);
    min-width: 1200px;
    color: #a9b4b4;
}

/* Responsive Design */
@media (max-width: 650px) {
    body {
        min-width: initial;
    }
    
    body.desktopV {
        min-width: 1200px;
    }
}

@media (min-width: 651px) {
    body {
        min-width: 1200px;
    }
    
    body.mobileV {
        min-width: initial;
    }
}


/* Header Section */
.header-section {
    background-color: rgba(22, 20, 20, 1);
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 72px;
    padding: 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 20px;
}

.logo {
    font-size: 30px;
    font-weight: bold;
    color: #d1e3e3;
    text-decoration: none;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0;
}

.nav-link {
    color: #d1e3e3;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: rgba(169, 180, 180, 1);
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    background-color: rgba(169, 180, 180, 1);
}

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

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(22, 20, 20, 0.1);
}

.mobile-menu a {
    display: block;
    padding: 15px 20px;
    color: rgba(22, 20, 20, 1);
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
}

.mobile-menu a:hover {
    background-color: rgba(22, 20, 20, 1);
    color: rgba(169, 180, 180, 1);
    font-weight: bold;
}

/* Main Content */
.main-container {
    background-color: #161414;
    min-height: calc(100vh - 72px);
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* CV Container */
.cv-container {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.cv-iframe {
    width: 100%;
    max-width: 900px;
    height: 1200px; /* Adjusted for 1-page PDF */
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
}

/* Footer */
.footer {
    background-color: #a9b4b4;
    padding: 60px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-title {
    font-size: 32px;
    font-weight: bold;
    color: #121212;
    margin-bottom: 30px;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 30px;
}

.footer-social-links a {
    display: block;
    width: 36px;
    height: 36px;
    filter: brightness(0);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-social-links a:hover {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

.footer-social-links img {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(18, 18, 18, 0.2);
    padding-top: 20px;
}

.copyright,
.privacy-notice {
    font-size: 14px;
    color: #121212;
    margin-bottom: 5px;
}

.privacy-notice a {
    color: #121212;
    text-decoration: none;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-container {
        padding: 20px 15px;
        min-height: calc(100vh - 72px);
    }
    
    .cv-iframe {
        height: 800px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .cv-iframe {
        height: 600px;
    }
    
    .footer-content {
        padding: 0 15px;
    }
}

