body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('dunes.jpg'); /* Replace 'background.jpg' with your image */
    background-size: cover;
    background-position: center;
    color: #fff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out;
}

header h1 {
    font-size: 3em;
    margin: 0;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

header p {
    font-size: 1.2em;
    margin: 10px 0;
    color: #ddd;
}

.navbar {
    text-align: center;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out;
}

.nav-links {
    list-style-type: none;
    padding: 0;
}

.nav-links li {
    display: inline-block;
    margin-right: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #ffd700;
    font-size: 1.2em;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #fff;
}

section {
    margin-bottom: 30px;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

section h2 {
    border-bottom: 2px solid #ffd700;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: 2em;
    color: #ffd700;
}

section p {
    font-size: 1.1em;
    color: #ddd;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.project {
    background-color: #333;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
}

.project:hover {
    transform: scale(1.02);
}

.project h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
    color: #ffd700;
}

.project a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.project a:hover {
    color: #fff;
}

.contact-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.contact-icons a img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}

.contact-icons a:hover img {
    transform: scale(1.2);
}

footer {
    text-align: center;
    margin-top: 50px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    border-top: 2px solid #ffd700;
}

footer p {
    font-size: 0.9em;
    color: #ffd700;
    margin: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
