/* ManchMix - Style Sheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; overflow-x: hidden; }

/* Navbar */
#navbar {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}
#navbar.scrolled {
    background: rgba(255,255,255,0.98);
    border-bottom-color: #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Hero */
.hero-gradient {
    background: linear-gradient(135deg, #312e81 0%, #4f46e5 30%, #7c3aed 60%, #db2777 100%);
}
.hero-pattern {
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
                      radial-gradient(circle at 60% 80%, rgba(255,255,255,0.06) 0%, transparent 40%);
}

/* About Visual */
.about-visual {
    background: linear-gradient(135deg, #4f46e5, #7c3aed, #db2777);
    position: relative;
}
.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.15) 0%, transparent 50%);
}

/* Category Cards */
.category-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-card:hover {
    transform: translateY(-4px);
}

/* Floating Artist Photos */
.floating-photos {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.floating-photo {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.12;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
.floating-1 {
    top: 15%;
    right: 5%;
    animation: float1 18s infinite;
}
.floating-2 {
    top: 40%;
    left: 3%;
    animation: float2 22s infinite;
    width: 70px;
    height: 70px;
}
.floating-3 {
    bottom: 30%;
    right: 8%;
    animation: float3 20s infinite;
    width: 60px;
    height: 60px;
}
.floating-4 {
    top: 60%;
    left: 6%;
    animation: float4 24s infinite;
    width: 75px;
    height: 75px;
}
.floating-5 {
    top: 10%;
    left: 15%;
    animation: float5 19s infinite;
    width: 65px;
    height: 65px;
}
.floating-6 {
    bottom: 15%;
    right: 15%;
    animation: float6 21s infinite;
    width: 70px;
    height: 70px;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-30px, 40px) rotate(5deg); }
    50% { transform: translate(20px, -20px) rotate(-3deg); }
    75% { transform: translate(-15px, -30px) rotate(4deg); }
}
@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(40px, -30px) rotate(-5deg); }
    66% { transform: translate(-20px, 40px) rotate(3deg); }
}
@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(25px, 35px) rotate(4deg); }
    50% { transform: translate(-35px, -15px) rotate(-4deg); }
    75% { transform: translate(15px, -25px) rotate(2deg); }
}
@keyframes float4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-25px, -35px) rotate(-3deg); }
    66% { transform: translate(30px, 20px) rotate(5deg); }
}
@keyframes float5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(35px, 30px) rotate(6deg); }
}
@keyframes float6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-20px, -20px) rotate(-4deg); }
    50% { transform: translate(25px, 15px) rotate(3deg); }
    75% { transform: translate(-15px, 30px) rotate(-2deg); }
}

/* Policy toggles */
.policy-toggle {
    transition: all 0.3s ease;
}
.policy-toggle.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-color: transparent;
}
.policy-toggle.active .policy-icon {
    transform: rotate(180deg);
}
.policy-content {
    animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
    from { opacity: 0; max-height: 0; }
    to { opacity: 1; max-height: 1000px; }
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Form focus styles */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #c7d2fe; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #818cf8; }

/* Mobile floating photos - hide on small screens */
@media (max-width: 768px) {
    .floating-photos { display: none; }
}

/* Selection color */
::selection {
    background: #c7d2fe;
    color: #312e81;
}
