@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #333; /* Default text color */
    background-color: #f4f4f4; /* Light background */
}

/* Header styling */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; 
    padding: 20px 10%; 
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    position: relative;
    font-size: 25px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

/* Hide the logo on mobile devices */
@media (max-width: 768px) {
    .logo {
        display: none;
    }
}

.navbar {
    font-size: 18px;
    display: flex;
    list-style: none;
}

.navbar a {
    margin-right: 20px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #A10332; /* Hover color */
}

/* Resume Section Styling */
.resume-section {
    margin-top: 100px;
    text-align: center;
    padding: 40px;
}

.resume-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #A10332; /* Crimson color */
}

/* Wider PDF Embed */
iframe {
    width: 90%; /* Adjust width as needed */
    height: 700px; /* Height of the iframe */
    border: none;
    margin: 0 auto;
    display: block;
}

/* Download Button Section */
.download-section {
    text-align: center;
    margin-top: 20px;
}

.download-btn {
    padding: 10px 20px;
    background-color: #A10332; /* Button color */
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #7f1c29; /* Darker shade on hover */
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 20px 5%;
    }

    .navbar {
        font-size: 16px;
    }

    iframe {
        width: 100%;
        height: 600px;
    }

    .download-btn {
        font-size: 1rem;
    }
}
