@import "template.css";
@import "darkmode.css";

.resume-menu {
    margin-top: 10px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
}

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

.resume-menu a {
    text-decoration: none;
    color: var(--nav-text, #505050);
    font-size: 18px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.resume-block {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 85%;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 40px;
    background-color: var(--container-bg, #ffffff);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--box-shadow, rgba(0, 0, 0, 0.1));
    min-height: 800px;
}

.resume-frame {
    width: 78%;
    height: 1200px;
    border: none;
    border-radius: 8px;
}

.rf1 {
    display: none;
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
    .resume-block {
        width: 95%;
        padding: 20px;
    }

    .resume-frame {
        height: 600px;
    }
}