@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@900&display=swap');

:root {
    --primary: #00f2fe;
    --secondary: #4facfe;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

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

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-blob {
    position: absolute;
    width: clamp(200px, 40vw, 500px);
    height: clamp(200px, 40vw, 500px);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    filter: blur(80px);
    opacity: 0.12;
    border-radius: 50%;
    z-index: 0;
    animation: float 15s infinite alternate ease-in-out;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-blob {
        filter: blur(60px);
        opacity: 0.08;
    }
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 50px) scale(1.1); }
    100% { transform: translate(-20px, 80px) scale(1); }
}

.photo-frame {
    position: relative;
    width: min(100%, 350px);
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(-2deg);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
    .photo-frame {
        transform: rotate(0deg);
        width: min(80%, 280px);
    }
}

.photo-frame:hover {
    transform: rotate(0deg) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%);
    transition: filter 0.6s ease;
}

.photo-frame:hover img {
    filter: grayscale(0%);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}