:root {
    --black: #000000;
    --gold: #D4AF37;
}

body {
    background-color: var(--black);
    margin: 0;
    padding: 0;
    cursor: none;
    overflow: hidden;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #000000, #1a1a1a);
    opacity: 0.8;
    z-index: -1;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

#hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 5vw;
    white-space: nowrap;
    letter-spacing: 2px;
}

.animate-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-text.visible {
    opacity: 1;
    transform: translateY(0);
}