* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier', monospace;
    background: #0a0a0a;
    color: #e0e0e0;
    overflow-x: hidden;
    cursor: none;
    position: relative;
}

.background-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: -2;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
    z-index: -1;
    transition: opacity 0.8s ease;
}

.background-overlay.active {
    opacity: 0.8;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    text-align: center;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.hero h1 {
    font-family: 'Times New Roman', serif;
    /* font-family: 'Arial', sans-serif;  */
    /* font-family: 'Helvetica Neue', Arial, sans-serif; */
    /* font-family: "Trebuchet MS", sans-serif; */
    /* font-family: 'Courier', monospace; */
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 100;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255,255,255,0.3); }
    to { text-shadow: 0 0 30px rgba(255,255,255,0.5), 0 0 40px rgba(255,255,255,0.2); }
}

.hero p {
    font-family: 'Courier', monospace;
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.8;
    letter-spacing: 0.05em;
}

.hero-instruction {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    opacity: 0.6;
    text-align: center;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.custom-cursor.hover {
    transform: scale(2);
    background: rgba(255,255,255,0.3);
}

.menu-button {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.menu-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-line {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.menu-button:hover .menu-line {
    background: rgba(255, 255, 255, 1);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    text-align: center;
    max-width: 600px;
}

.menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-nav li {
    margin: 2rem 0;
}

.menu-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 100;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    display: block;
    padding: 1rem;
}

.menu-nav a:hover {
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
    transform: translateY(-5px);
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-menu:hover {
    color: #fff;
    transform: scale(1.1);
}

.project-tooltip {
    position: fixed;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    max-width: 300px;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.project-tooltip.visible {
    opacity: 1;
}

.project-tooltip h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    color: #fff;
}

.project-tooltip p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem 1.5rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 3;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 1.4rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.contact-info {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.email-text {
    margin: 0;
    font-size: 1rem;
}

.email-simple {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.email-simple:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.social-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.contact-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.contact-link:hover::before {
    width: 100%;
}

.contact-link:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 20px rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.link-text {
    font-weight: 300;
    letter-spacing: 0.05em;
}

.link-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.contact-link:hover .link-arrow {
    transform: translateX(3px);
}

.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 1.5rem 1rem;
    }
    
    .contact-content h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .email-text {
        font-size: 0.9rem;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }
    
    .contact-link {
        width: 100%;
        max-width: 160px;
        justify-content: center;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .menu-button {
        top: 1rem;
        left: 1rem;
        width: 50px;
        height: 50px;
    }
        .simple-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .simple-gallery img {
        height: 200px;
    }
}