@layer base {
    body {
        font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    }
}

.hero-font {
    font-family: 'Dancing Script', cursive;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.gradient-bg {
    background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 25%, #e0f2fe 50%, #f0f9ff 75%, #fef3c7 100%);
}

.social-button {
    transition: all 0.3s ease;
}

.social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.photo-frame {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.photo-image {
    border-radius: 20px;
    object-fit: cover;
    object-position: top;
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
    filter: brightness(1.05) contrast(1.05);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.btn-instagram:hover {
    background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(188, 24, 136, 0.4);
}

.btn-linkedin {
    background: #0077b5;
    color: white;
}

.btn-linkedin:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 119, 181, 0.4);
}

.btn-boudoir {
    background: linear-gradient(135deg, #d946ef 0%, #ec4899 100%);
    color: white;
}

.btn-boudoir:hover {
    background: linear-gradient(135deg, #ec4899 0%, #d946ef 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(217, 70, 239, 0.4);
}

.btn-tiktok {
    background: #000000;
    color: white;
}

.btn-tiktok:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.btn-snapchat {
    background: #FFFC00;
    color: #000000;
}

.btn-snapchat:hover {
    background: #FFFB00;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 252, 0, 0.4);
}

.contact-item {
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.blob-circle {
    border-radius: 50% !important;
    aspect-ratio: 1;
    will-change: transform;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(55, 65, 81, 0.7);
    z-index: 100;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-indicator.scroll-down i {
    animation: bounce 2s infinite;
}

.scroll-indicator.scroll-up i {
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.nav-links {
    transition: all 0.3s ease;
}

.nav-links a {
    color: rgba(55, 65, 81, 0.8);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: rgba(55, 65, 81, 1);
}

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#over-mij .prose,
#over-mij .prose p {
    text-align: justify;
}

