/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
	background-color: #F5F5DC
}

/* Navigation Bar */
header {
    background: #111;
    padding: 20px 40px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

nav ul li a:hover {
    color: #00b3ff;
}

/* Hero Section */
.personal {
    height: 70vh;
    background: linear-gradient(to bottom right, #1c1f26, #15171C);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.personal h1 {
    font-size: 44px;
}

.personal span {
    color: #00b3ff;
}

.personal p {
    margin: 20px 0;
    font-size: 18px;
}

.per-button {
    display: inline-block;
    padding: 12px 24px;
    background: #00b3ff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 10px;
}

.per-button:hover {
    background: #008ac1;
}

/* Section Styles */
section {
    padding: 60px 80px;
}

section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* Projects */
.projects .project {
    display: flex;
    margin-bottom: 40px;
}

.projects img {
    width: 250px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
}

.project-info pre {
    background: #222;
    color: #00ffea;
    padding: 10px;
    margin-top: 10px;
    overflow-x: auto;
    border-radius: 6px;
}

/* Resume Button */
.download-button {
    padding: 14px 28px;
    background: #00b3ff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}

.download-button:hover {
    background: #008ac1;
}

/* Contact */
.contact p {
    margin-bottom: 10px;
    font-size: 18px;
}

/* Footer */
footer {
    background: #111;
    color: white;
    padding: 20px;
    text-align: center;
}
