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

:root {
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

body {
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.magnetic-btn {
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(156, 163, 175, 0.5);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(156, 163, 175, 0.8);
}

/* Asymmetrical Grid Layout Utilities */
.grid-asym {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.col-span-5-7 {
    grid-column: span 5;
}
@media (min-width: 1024px) {
    .lg\:col-span-7 {
        grid-column: span 7;
    }
}

/* Soft shadow for elegance */
.shadow-soft {
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
}

/* Negative space utilities */
.section-spacing {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

/* Mock Player Animation */
.mock-player {
    background: linear-gradient(to bottom right, #1e293b, #0f172a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.skip-btn-anim {
    position: absolute;
    bottom: 15%;
    right: 5%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-sans);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: skipAppear 4s infinite;
    opacity: 0;
    transform: translateY(20px);
}

.skip-btn-anim::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    animation: skipClick 4s infinite;
}

@keyframes skipAppear {
    0% { opacity: 0; transform: translateY(20px); }
    10% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    90% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes skipClick {
    0%, 45% { opacity: 0; }
    50% { opacity: 1; }
    55%, 100% { opacity: 0; }
}

.cursor-anim {
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    top: 110%;
    left: 110%;
    animation: cursorMove 4s infinite;
    pointer-events: none;
    z-index: 20;
}

@keyframes cursorMove {
    0%, 20% { top: 110%; left: 110%; opacity: 0; }
    30% { opacity: 1; }
    40% { top: 80%; left: 85%; } /* Move near button */
    50% { transform: rotate(-45deg) scale(0.9); } /* Click */
    60% { transform: rotate(-45deg) scale(1); }
    100% { top: 80%; left: 85%; opacity: 0; }
}
