/* General Styles */
body {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #222;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: white;
    border-bottom: 1px solid #ddd;
}

.breadcrumb a {
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    color: black;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 1em;
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Sections */
section {
    padding: 60px 20px;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

h2 {
    font-size: 2em;
    font-weight: 400;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
}

/* Resume Form */
#resume-form {
    margin-top: 20px;
}

input {
    padding: 10px;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: black;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #333;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}


/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: white;
    border-top: 1px solid #ddd;
}
