:root {
    --bg: #1F2A44;
    --surface: #2B3A5F;
    --text: #FFFAFA;
    --text-muted: #dcdcdc;
    --shadow-strong: #456882;
    --shadow-glow: #4FD1C573;
    --experience-text: black;
}

body.day {
    --bg: #C4C7CF;              /* Soft, muted gray-blue background */
    --surface: #F5F5F7;         /* Light grey for cards/surfaces */
    --text: #000000;             /* Pure black for main text */
    --text-muted: #000000;       /* Muted gray for secondary text */
    --shadow-strong: #0000001A;  /* Soft subtle shadow */
    --shadow-glow: #7DA0B233;    /* Soft muted blue glow */
    --experience-text: #000000;  /* Matches main text */
}

body {
    margin: 0;
    background-color: var(--bg);
}

.document {
    display: flex;
    flex-direction: column;
    width: 900px;
    margin: auto;
}

.topbar,
.navigation-bar {
    display: flex;
    background-color: var(--surface);
    border-radius: 12px;
}

.topbar {
    padding: 16px;
    margin-bottom: 32px;
}

.navigation-bar {
    justify-content: space-between;
    padding: 4px;
    margin-bottom: 32px;
}

.leftbar-navigation,
.rightbar-navigation {
    display: flex;
    gap: 16px;
    padding: 16px;
}

.leftbar-navigation {
    font-size: 24px;
}

.leftbar-navigation a {
    color: var(--text);
    text-decoration: none;
}

.leftbar-navigation a:hover {
    color: var(--text);
    text-decoration: underline;
}

.content {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    margin-bottom: 32px;
    background-color: var(--surface);
    border-radius: 12px;
}

.leftside {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.rightside {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 150px;
    color: var(--text-muted);
}

.rightside h2,
.rightside h4 {
    margin-top: 0;
}

.underphoto {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-weight: bold;
    text-shadow: 2px 2px 4px var(--shadow-strong);
}

.green-dot {
    width: 10px;
    height: 10px;
    background-color: #00f359;
    border-radius: 50%;
}


.links {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 8px;
}

.resumelink {
    color: var(--text);
    text-decoration: none;
}

/* Shared button style */
.resume,
.linkedinIcon,
.linkedin-Icon,
.mail {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--text);
    border-radius: 12px;
    box-shadow: 0 4px 24px var(--shadow-strong);
}

.linkedinIcon{
    padding: 6px;
}

/* Resume button */
.resume {
    padding: 8px;
    gap: 8px;
}

.resume.bot {
    height: 50px;
    padding: 0 8px;
}

/* Icon buttons */
.linkedin-Icon,
.mail {
    width: 50px;
    height: 50px;
}

/* Hover effect */
.resume:hover,
.linkedinIcon:hover,
.linkedin-Icon:hover,
.mail:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


.exp-edu-proj {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.experience,
.education,
.certifications,
.projects {
    border: 1px solid #fff;
    border-radius: 16px;
    font-size: 16px;
    font-weight: bold;
    opacity: 0.8;
    box-shadow: 0 0 8px rgba(var(--shadow-glow));
    transition: all 0.3s ease;
    background-color: white;
}

.experience {
    color: var(--experience-text);
}

.eepbutton.active,
.experience:hover,
.education:hover,
.certifications:hover,
.projects:hover {
    background-color: var(--bg);
    color: var(--text);
    opacity: 1;
    transform: translateY(-2px);
}

.eepcontainer {
    max-width: 900px;
    margin-top: 32px;
    padding: 16px;
    background-color: var(--surface);
    color: var(--text);
    line-height: 1.6;
    border-radius: 12px;
}

.footercontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    margin-top: 32px;
    background-color: var(--surface);
    color: var(--text);
    border-radius: 12px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.credits h4,
.credits p {
    margin: 0;
}

.copyright {
    margin-top: 16px;
}

#link{
    color: var(--text);
}

.photo {
    width: 200px;
    height: 200px;
}

.rocket {
    width: 60px;
    height: 60px;
    padding: 8px;
}

.signature {
    width: 200px;
    height: 75px;
}

.moon, .sun {
    width: 25px;
    height: 25px;
}


.linkedin {
    width: 28px;
    height: 24px;
}

.pdficon {
    width: 24px;
    height: 24px;
}
