@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Inter:wght@100;200;300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
}

.grain-overlay {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/><feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.1 0"/></filter><rect width="100%" height="100%" filter="url(%23noise)"/></svg>');
}

.ambient-shape-1 {
    width: 300px;
    height: 300px;
    filter: blur(60px);
    top: -150px;
    left: -150px;
    animation: float 25s infinite ease-in-out;
}
.ambient-shape-2 {
    width: 400px;
    height: 400px;
    filter: blur(80px);
    bottom: -200px;
    right: -200px;
    animation: float 30s infinite ease-in-out reverse;
}

#particles {
    z-index: 0;
    opacity: 0.3;
}
@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(50px, 50px);
    }
    50% {
        transform: translate(0, 100px);
    }
    75% {
        transform: translate(-50px, 50px);
    }
}

.animate-fade-in {
    animation: fadeIn 1.5s ease-out forwards;
    opacity: 0;
}

.animate-fade-in.delay-100 {
    animation-delay: 0.2s;
}

.animate-fade-in.delay-200 {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
nav a {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

nav a:hover {
    transform: translateY(-2px);
}

nav a svg {
    width: 100%;
    height: 100%;
}
