* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #ffffff;
    color: #000000;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000;
    padding: 1rem 2rem;
    z-index: 1000;
    border-bottom: 2px solid #ffffff;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 2px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

/* Hamburger Menu Icon */
.menu-icon {
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-icon span {
    width: 100%;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.menu-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.menu-item {
    font-family: 'Permanent Marker', cursive;
    font-size: 2.5rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.menu-overlay.active .menu-item {
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay.active .menu-item:nth-child(1) {
    transition-delay: 0.1s;
}

.menu-overlay.active .menu-item:nth-child(2) {
    transition-delay: 0.2s;
}

.menu-overlay.active .menu-item:nth-child(3) {
    transition-delay: 0.3s;
}

.menu-overlay.active .menu-item:nth-child(4) {
    transition-delay: 0.4s;
}

.menu-item:hover {
    color: #cccccc;
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    padding: 2rem;
    margin-top: 60px;
}

.canvas-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logoCanvas {
    max-width: 100%;
    cursor: crosshair;
    touch-action: none;
}

.hero-subtitle {
    font-family: 'Caveat', cursive;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: #cccccc;
    text-align: center;
    margin-top: 2rem;
    opacity: 0;
    animation: delayedFadeIn 1s ease-in 10s forwards;
}

@keyframes delayedFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Content Section */
.content {
    padding: 4rem 2rem;
    background: #000000;
    color: #ffffff;
    min-height: 30vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #000000;
    padding: 2rem;
    text-align: center;
    border-top: 2px solid #ffffff;
}

.footer-text {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: #ffffff;
    margin: 0;
}

.year {
    font-family: 'Permanent Marker', cursive;
    color: #ffffff;
    display: inline-block;
    transition: transform 0.3s ease;
}

.year:hover {
    transform: rotate(-5deg) scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .menu-item {
        font-size: 2rem;
    }
    
    .hero {
        margin-top: 50px;
    }
}
