/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #e9e9e9;
    color: #111;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #e9e9e9;
    color: #111;
    text-align: center;
    padding: 2rem 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

h1 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

main {
    padding: 20px;
    flex: 1;
}

/* Sections */
section {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 1s ease-out;
}

.photo {
    text-align: center;
}

#profile-pic {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Projects & Contact Lists */
.projects ul,
.contact ul,
.social ul {
    list-style: none;
    padding: 0;
}

.projects li,
.contact li,
.social li {
    margin-bottom: 10px;
}
.no-select {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}
a {
    color: #111;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* Resume iframe */
.resume iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.download-resume {
    text-align: center;
    margin-top: 1rem;
}

.download-resume a {
    color: #fff;
    background-color: #333;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
}

.download-resume a:hover {
    background-color: #111;
}

/* Navigation Bar */
nav {
    background-color: #333;
    padding: 10px 0;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    font-weight: 600;
    text-transform: uppercase;
}

nav a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .resume iframe {
        height: 400px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    .resume iframe {
        height: 300px;
    }

    nav a {
        display: block;
        margin: 10px 0;
    }
}
