/* Static Title Styles */
.intro-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #FFD700;
    margin: 20px 0;
    text-align: center;
    display: block;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Enhanced Typing Animation Styles */
.typing-animation {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFD700;
    margin: 20px auto;
    text-align: center;
    display: inline-block;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    width: max-content;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.2);
}

.typing-animation::before {
    content: '';
    position: absolute;
    top: 0;
    right: -2px;
    width: 2px;
    height: 100%;
    background-color: #FFD700;
    animation: cursor-blink 0.8s infinite;
}

.typing-text {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #FFD700;
    width: 0;
    animation: 
        typing 5s steps(25) infinite,
        delete 5s steps(25) infinite,
        blink 1s step-end infinite,
        glow 4s ease-in-out infinite;
    animation-delay: 0s, 6s, 0s, 0s;
    display: inline-block;
    padding: 10px 5px;
    background: linear-gradient(90deg, 
        rgba(255, 215, 0, 0.1) 0%,
        rgba(255, 215, 0, 0) 100%);
    border-radius: 4px;
}

.typing-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        #FFD700 0%,
        rgba(255, 215, 0, 0.3) 100%);
    transform: scaleX(0);
    transform-origin: left;
    animation: underline 10s ease-in-out infinite;
}

@keyframes typing {
    0% { 
        width: 0;
        filter: blur(0);
    }
    5% {
        filter: blur(0);
    }
    30%, 70% { 
        width: 100%;
        filter: blur(0);
    }
    100% { 
        width: 100%;
        filter: blur(0);
    }
}

@keyframes delete {
    0%, 30% { 
        width: 100%;
        filter: blur(0);
    }
    70%, 100% { 
        width: 0;
        filter: blur(0.5px);
    }
}

@keyframes blink {
    0%, 100% { 
        border-color: #FFD700;
        box-shadow: 0 0 5px #FFD700;
    }
    50% { 
        border-color: transparent;
        box-shadow: none;
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 215, 0, 0.3),
            0 0 20px rgba(255, 215, 0, 0.2);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(255, 215, 0, 0.4),
            0 0 25px rgba(255, 215, 0, 0.3);
    }
}

@keyframes underline {
    0%, 30% {
        transform: scaleX(0);
    }
    35% {
        transform: scaleX(1);
    }
    65% {
        transform: scaleX(1);
    }
    70%, 100% {
        transform: scaleX(0);
    }
}

@keyframes cursor-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Menu Styles */
.nav-menu {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #FFD700;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.menu-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 2px;
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.8));
    transition: all 0.3s ease;
}

.nav-item:hover {
    transform: translateY(-2px);
}

.nav-item:hover .menu-icon {
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.9))
           drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
}

.nav-item span {
    font-size: 16px;
    margin-top: 2px;
    color: #FFD700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .intro-title {
        font-size: 2rem;
    }

    .typing-animation {
        font-size: 1.6rem;
        letter-spacing: 1.5px;
    }

    .typing-text {
        padding: 8px 4px;
    }

    /* Mobile Menu Styles */
    .nav-menu {
        gap: 10px;
        padding: 10px;
    }

    .nav-item {
        padding: 8px 10px;
    }

    .menu-icon {
        width: 14.4px;
        height: 14.4px;
        margin-bottom: 1px;
        filter: drop-shadow(0 0 1px rgba(255, 215, 0, 0.8));
    }

    .nav-item:hover .menu-icon {
        filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.9))
               drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
    }

    .nav-item span {
        font-size: 12px;
        margin-top: 1px;
    }
}

@media (max-width: 480px) {
    .intro-title {
        font-size: 1.6rem;
    }

    .typing-animation {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .typing-text {
        padding: 6px 3px;
    }

    .nav-menu {
        gap: 5px;
        padding: 8px;
    }

    .nav-item {
        padding: 6px 8px;
    }

    .nav-item span {
        font-size: 11px;
        margin-top: 1px;
    }
} 