/* General Reset and Body Styling */
* {
    box-sizing: border-box;
    font-family: "Playwrite NZ Basic", sans-serif;
}

/* Global Styles */
body {
    background-color: #0d1117;
    /* Dark background */
    color: #c9d1d9;
    line-height: 1.6;
    text-align: center;
    font-family: "Playwrite NZ Basic", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

/* Resume Section */
.resume-link,
.google-docs-embed {
    margin: 30px auto;
    padding: 30px;
    background-color: #1c1f26 !important;
    /* Dark background */
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    text-align: center;
    overflow: hidden;
}

.resume-link h2,
.google-docs-embed h2 {
    color: #ffffff !important;
    margin-bottom: 20px;
}

.resume-link a {
    font-size: 1.2rem;
    color: #fff;
    background-color: #3498db;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.resume-link a:hover {
    background-color: #3498db;
}

/* Embedded Google Doc (Resume) */
iframe {
    width: 100%;
    height: 700px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    z-index: 1000;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    background-color: #161b22 !important;
    padding: 20px;
    color: white;
    text-align: center;
    line-height: 2.5 !important;
}

/* Styling for the Resume Page */
.title {
    color: #ffffff !important;
    /* Makes the text white */
    font-size: 2rem;
    /* Adjust size if needed */
    margin-bottom: 10px;
}

.subtitle {
    color: #ffffff !important;
    /* Makes the text white */
    font-size: 1.2rem;
    /* Adjust size if needed */
    margin-bottom: 20px;
    line-height: 1.6;
    /* Improve readability */
}

/* Mobile Devices (Max Width: 768px) */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .navbar a {
        font-size: 0.9rem;
        color: black !important;
    }

    .title {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    iframe {
        height: 400px;
    }

    .resume-link {
        padding: 10px;
    }

    .back-to-top {
        bottom: 10px;
        right: 10px;
        font-size: 1rem;
    }
}