/* General Styles */
body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #e5e5e5;
    line-height: 1.6;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(94, 223, 255, 0.5);
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    color: #5edfff;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

main {
    max-width: 1100px;
    margin: auto;
    padding: 2rem;
}

#hero {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

#hero h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

#hero p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

#typewriter {
    font-weight: bold;
    color: #5edfff;
    border-right: 2px solid #5edfff;
    display: inline-block;
    animation: blink-cursor 0.7s steps(2) infinite;
}

@keyframes blink-cursor {
    0%,
    100% {
        border-color: transparent;
    }
    50% {
        border-color: #5edfff;
    }
}

section {
    margin: 3rem 0;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.project {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.project h3 {
    font-family: "Space Grotesk", sans-serif;
    color: #5edfff;
    text-shadow: 0 0 8px rgba(94, 223, 255, 0.5);
}

.project p {
    color: #e5e5e5;
    line-height: 1.4;
}

.project-social {
    color: rgb(118, 215, 255);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icons a {
    font-size: 2rem;
    color: #5edfff;
    text-decoration: none;
    border-radius: 25%;
    border: 3px solid rgba(94, 223, 255, 0.5);
    padding: 0.6rem;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(94, 223, 255, 0.7);
    border-color: #5edfff;
}

footer {
    text-align: center;
    padding: 1rem;
    color: #aaa;
    margin-top: 3rem;
}

footer a {
    color: white;
}
