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

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    min-height: 44px;
}

.nav-link:hover {
    color: #cccccc;
}

.main-content {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
}

.logo-container {
    text-align: center;
}

.logo {
    font-size: 24rem;
    font-weight: 300;
    color: #ffffff;
    font-style: italic;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    user-select: none;
    overflow: hidden;
    border-right: 3px solid #ffffff;
    white-space: nowrap;
    width: 0;
    animation: typewriter 2s steps(3, end) forwards, blink-caret 0.75s step-end infinite 0s, cursor-fade 0.01s ease-in forwards 2s;
}

.logo.animated {
    width: 3ch;
    border-right: none;
    animation: none;
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 3ch;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #ffffff;
    }
}

@keyframes cursor-fade {
    to {
        border-color: transparent;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.logo.loaded {
    animation: typewriter 2s steps(3, end), blink-caret 0.75s step-end infinite 2s;
    animation-fill-mode: forwards;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem;
        min-height: 60px;
    }
    
    .nav-container {
        padding: 0 1rem;
        justify-content: space-between;
    }
    
    .logo {
        font-size: 16rem;
    }
    
    .quote-container {
        padding: 1.5rem;
    }
    
    .quote-container .quote {
        font-size: 1.1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 12rem;
    }
    
    .nav-logo a {
        font-size: 1.2rem;
    }
    
    .quote-container {
        padding: 1rem;
    }
    
    .quote-container .quote {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .page-content {
        padding-top: 70px;
    }
}

@media (max-width: 375px) {
    .logo {
        font-size: 10rem;
    }
    
    .quote-container {
        padding: 0.75rem;
    }
    
    .quote-container .quote {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem;
        min-height: 56px;
    }
}

.page-content {
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.content-container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.content-container h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    font-style: italic;
}

.content-container p {
    font-size: 1rem;
    font-weight: 300;
    color: #cccccc;
}

.quote-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: left;
}

.quote-container .quote {
    font-size: 1rem;
    font-weight: 300;
    color: #ffffff;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.quote-container .quote.typing::after {
    content: '|';
    color: #ffffff;
    animation: blink 750ms infinite step-end;
}

.quote-container .quote.completed {
    border-right: none;
    animation: none;
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: #ffffff; }
}





