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

body {
    font-family: 'Cormorant Garamond', serif;
    overflow-x: hidden;
    overflow-y: auto;
    background: #000;
    color: #fff;
}

canvas {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 1;
}

#hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

#logo {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

h1 {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5),
                 0 0 1px rgba(255, 255, 255, 0.3),
                 0 0 2px rgba(255, 255, 255, 0.2);
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.1);
}

.container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: #000;
    z-index: 10;
}

.section {
    margin-bottom: 4rem;
}

.section h2 {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    opacity: 0.6;
    text-transform: uppercase;
}

.project-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    filter: grayscale(100%);
}

.project-name {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.project-description {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.link:hover {
    opacity: 1;
}
