@import url('https://fonts.cdnfonts.com/css/h-hackout');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'h Hackout', sans-serif;
}

body {
    background: #1b1b1b; /* Dark background */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

header {
    width: 100%;
    background-color: rgba(20, 20, 20, 0.8);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.5);
}

.logo {
    font-size: 2em;
    color: #00ffff;
    margin-left: 20px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-right: 30px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s, transform 0.3s;
}

nav ul li a:hover {
    color: #00ffff;
    transform: scale(1.1);
}

#hero {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding-top: 80px;
}

.intro h2 {
    font-size: 2.5em;
    color: #00cccc;
    margin: 10px 0;
    opacity: 0; /* Start hidden */
    animation: fadeIn 1.5s forwards; /* Fade-in effect */
    animation-delay: 0.5s; /* Delay before fade-in */
}

.intro p {
    font-size: 1.2em;
    margin: 20px 0;
    opacity: 0; /* Start hidden */
    animation: fadeIn 1.5s forwards; /* Fade-in effect */
    animation-delay: 1s; /* Delay before fade-in */
}

.intro img {
    border-radius: 50%;
    width: 180px;
    height: 180px;
    border: 4px solid #00ffff;
    margin-top: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
    opacity: 0; /* Start hidden */
    animation: fadeIn 1.5s forwards; /* Fade-in effect */
    animation-delay: 1.5s; /* Delay before fade-in */
}

/* Neon blinking text effect */
.neon-text {
    font-size: 4em;
    color: #3a0000; /* Bright purple color */
    text-shadow: 
        0 0 5px #ff0000,
        0 0 10px #ff0000,
        0 0 15px #f10000,
        0 0 20px #800000,
        0 0 25px #800000,
        0 0 30px #ff0000,
        0 0 35px #ff0000;
    animation: blinking 1.5s infinite alternate, glow 1s infinite alternate; /* Added glow effect */
}

/* Blinking animation */
@keyframes blinking {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

/* Glow animation */
@keyframes glow {
    0% {
        text-shadow: 
            0 0 5px #ff0000,
            0 0 10px #ff0000,
            0 0 15px #f10000,
            0 0 20px #800000,
            0 0 25px #800000,
            0 0 30px #ff0000,
            0 0 35px #ff0000;
    }
}

#about {
    padding: 100px 0;
    width: 80%;
    text-align: center;
    margin-top: 50px;
    opacity: 0; /* Start hidden */
    animation: fadeIn 1.5s forwards; /* Fade-in effect */
    animation-delay: 2s; /* Delay before fade-in */
}

#about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #00ffff;
}

#about p {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    color: #cccccc;
}

#contact {
    padding: 80px 0;
    width: 80%;
    text-align: center;
    background-color: rgba(20, 20, 20, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 255, 255, 0.5);
    margin: 50px 0;
    opacity: 0; /* Start hidden */
    animation: fadeIn 1.5s forwards; /* Fade-in effect */
    animation-delay: 2.5s; /* Delay before fade-in */
}

#contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #00ffff;
}

#contact p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #cccccc;
}

#contact ul {
    list-style-type: none;
    padding: 0;
}

#contact ul li {
    font-size: 1.2em;
    margin: 10px 0;
}

#contact ul li a {
    color: #00ffff;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

#contact ul li a:hover {
    color: #00cccc;
    transform: scale(1.05);
}

footer {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    background-color: #0d0d0d;
    color: #00cccc;
    font-size: 0.9em;
}

footer p {
    margin: 0;
}

/* Fade-in animation */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}
