@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap'); 

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f0f0f0; /* Light gray background */
    color: #333; /* Default text color */
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; 
    padding: 20px 10%; 
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white for header */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 25px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.navbar {
    display: flex;
    list-style: none; 
}

.navbar a {
    margin-right: 20px;
    font-size: 18px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #A10332; /* Crimson hover color */
}

.hero-section {
    background-color: #A10332; /* Crimson background */
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.2rem;
}

.project-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px 10%;
}

.project-card img {
    width: 100%;
    border-radius: 8px;
}

.project-info h3 {
    font-size: 2rem;
    color: #A10332;
    margin-bottom: 10px;
}

.project-info p, .project-info ul {
    font-size: 1rem;
    color: #666;
    margin: 10px 0;
}

.project-info ul li {
    list-style: disc inside;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

.footer-linkedin img {
    width: 24px;
    height: 24px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    /* Hide the 'Aldo Mata' text */
    .name {
        display: none;
    }

    /* Hide the logo */
    .logo {
        display: none;
    }

    /* Adjust project card margins */
    .project-card {
        margin: 20px 5%;
    }
}
