@import url('https://fonts.googleapis.com/css2?family=UnifrakturCook:wght@700&family=Playfair+Display:ital@1&display=swap');

body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.gothic {
    font-family: 'UnifrakturCook', cursive;
    font-size: 6rem;
    text-align: center;
    color: #fff;
}

/* HERO */
#hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.circle-graphic {
    width: 550px;
    height: 550px;
    border-radius: 80%;
    background: conic-gradient(red, blue, red);
    filter: blur(30px);
    opacity: 0.4;
    position: absolute;
    z-index: -1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.icons span {
    margin: 0 10px;
    font-size: 2.5rem;
    color: #c33;
}

/* PROJECTS */
#projects {
    padding: 80px 5%;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.project-card {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.project-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px red;
}

.project-card img {
    width: 100%;
    border-radius: 8px;
}

/* BIO */
#bio {
    padding: 80px 5%;
}

.bio-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.bio-img {
    width: 300px;
    border-radius: 10px;
}

.bio-text {
    font-size: 1.3rem;
    max-width: 600px;
    line-height: 1.6;
}

/* CONTACT */
#contact {
    padding: 80px 5%;
    text-align: center;
}

.contact-icons a {
    margin: 0 20px;
    color: #c33;
    font-size: 1.5rem;
    text-decoration: none;
    transition: 0.3s;
}

.contact-icons a:hover {
    color: #f55;
    text-shadow: 0 0 10px red;
}

section {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}
