/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #121212;
    color: #ffffff;
    overflow-x: hidden;
}
header {
    background-color: #1f1f1f;
    padding: 40px 20px;
    text-align: center;
}
header h1 {
    color: #e91e63;
    animation: fadeInDown 2s;
}
header p {
    animation: fadeInUp 2s;
}
nav {
    display: flex;
    justify-content: center;
    background-color: #282828;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideIn 1s forwards;
}
nav a {
    color: #ffffff;
    padding: 14px 20px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s;
}
nav a:hover {
    background-color: #b9b1b3;
}
.container {
    padding: 20px;
    animation: fadeIn 2s;
}
section {
    margin-bottom: 40px;
}
footer {
    text-align: center;
    padding: 20px;
    background-color: #1f1f1f;
}
footer a {
    color: #e91e63;
    text-decoration: none;
    transition: color 0.3s;
}
footer a:hover {
    color: #ffffff;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideIn {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Timeline styles */
.timeline {
    border-left: 2px solid #f7c305;
    padding-left: 20px;
    position: relative;
}
.timeline-item {
    margin-bottom: 20px;
}
.timeline-item h3 {
    margin-top: 0;
}
.timeline-item:before {
    content: '';
    position: absolute;
    left: -9px;
    top: 0;
    background-color: #f7c305;
    border-radius: 50%;
    height: 16px;
    width: 16px;
}

/* Portfolio item styles */
.portfolio-item {
    background-color: #333333;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Form styles */
form {
    display: flex;
    flex-direction: column;
}
form label {
    margin: 10px 0 5px;
}
form input, form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
form button {
    background-color: #e91e63;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}
form button:hover {
    background-color: #d81b60;
}
