@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
}
::-webkit-scrollbar {
    display: none;
}
html {
    scroll-behavior: smooth;
}
.main-font {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}
.title-font {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.05em;
}
.main-font2 {
    font-family: 'Monsieur La Doulaise', cursive;
}
.title-font2 {
    font-family: 'Prata', sans-serif;
}   
.glass-nav {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.gradient-text {
    background: linear-gradient(135deg, #c026d3, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(90deg, #c026d3, #ec4899);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-link:hover::after {
    width: 100%;
}
.hero-bg {
    background: radial-gradient(ellipse at top, rgba(196, 181, 253, 0.1) 0%, transparent 70%),
                radial-gradient(ellipse at bottom right, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
}
.pulse-ring {
    animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
    0% {
        transform: scale(0.33);
        opacity: 1;
    }
    80%, 100% {
        transform: scale(2.33);
        opacity: 0;
    }
}
.sparkle {
    animation: sparkle 3s infinite;
}
@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.animate-float-slow {
    animation: float 4s ease-in-out infinite;
}
.animate-float-slower {
    animation: float 6s ease-in-out infinite;
}
.animate-float-slowest {
    animation: float 8s ease-in-out infinite;
}