/* Import PT Sans font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* Base Styles */
body {
    font-family: 'PT Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
    transition: background 0.3s, color 0.3s;
    margin-top: 120px;
}

/* Header */
header {
    background-image: url('../images/banner.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 30%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #111111;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 1px 5px 5px #838383;
}

hr {
    width: 75%;
    border-color: #ffffff;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.profile-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
}

strong {
    color: #1976D2;
}

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

/* Material Button Styles */
.mdc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    gap: 8px;
}

.mdc-button--raised {
    background-color: #1976D2;
    color: white;
    border: none;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}

.mdc-button--raised:hover {
    background-color: #1565C0;
}

.mdc-button .material-symbols-outlined {
    font-size: 1.2rem;
}

/* Footer */
footer {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 5px;
    background-color: #111111;
    color: white;
    margin-top: 20px;
    height: 50px;
}

footer .copyright {
    margin-left: 15px;
}

footer .x {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    background: white;
    border-radius: 50px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
}

footer .linkedin {
    order: 2;
    margin-left: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: white;
    border-radius: 50px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
}