/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Playwrite IT Moderna', cursive;
}

:root {
    --bg-color: #1f242d;
    --second-bg-color: #323946;
    --text-color: #fff;
    --main-color: #0ef;
    --transition-speed: 0.3s;
    --glow-color: rgba(14, 255, 255, 0.5);
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
    opacity: 0;
    animation: slideUp 1s forwards;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* About Section Styles */
.about-more {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: var(--second-bg-color);
    padding: 5rem 9%;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    /* transform: perspective(1000px) rotateY(0deg); */
}

/* .about-more:hover {
    transform: perspective(1000px) rotateY(10deg);
    transition: transform var(--transition-speed);
} */

.about-img img {
    width: 30vw;
    border-radius: 50%;
    transition: transform var(--transition-speed);
    margin-bottom: 2rem;
    box-shadow: 0 0 15px var(--main-color);
}

.about-img img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--main-color), 0 0 60px var(--main-color);
}

.about-container {
    text-align: center;
    line-height: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-container h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--main-color);
    text-shadow: 0 0 10px var(--main-color), 0 0 20px var(--main-color), 0 0 30px var(--main-color), 0 0 40px var(--main-color), 0 0 50px var(--main-color);
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px var(--main-color), 0 0 20px var(--main-color), 0 0 30px var(--main-color), 0 0 40px var(--main-color), 0 0 50px var(--main-color);
    }
    to {
        text-shadow: 0 0 20px var(--main-color), 0 0 30px var(--main-color), 0 0 40px var(--main-color), 0 0 50px var(--main-color), 0 0 60px var(--main-color);
    }
}

.about-container p {
    font-size: 2.0rem;
    margin: 2rem 0 3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer {
    background: var(--second-bg-color);
    padding: 2rem 9%;
    text-align: center;
}

.footer-text p {
    color: var(--main-color);
    font-size: 1.4rem;
}

/* Sketching Images Styles */
.sketching-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.sketching-images img {
    width: 15vw;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 0 15px var(--main-color);
    transition: transform var(--transition-speed);
}

.sketching-images img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--main-color), 0 0 60px var(--main-color);
}

@media (max-width: 768px) {
    .about-img img {
        width: 40vw;
    }

    .about-container h2 {
        font-size: 2.6rem;
    }

    .about-container p {
        font-size: 1.4rem;
    }

    .sketching-images img {
        width: 30vw;
    }
}
