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

:root {
    --accent: #a855f7;
    --accent-glow: #bf80ff;
    --bg-dark: #050505;
    --bg-card: #0f0f0f;
}

.carousel-track img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: #ffffff;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.title-font {
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
}

.glass-nav {
    background: rgba(5, 5, 5, 0.80);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-gradient {
    background: linear-gradient(rgba(5, 5, 5, 0.6), rgba(5, 5, 5, 1)),
        url('../assets/img/photo-1470225620780-dba8ba36b745.jpg');
    background-size: cover;
    background-position: center;
}

.neon-text {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.8), 0 0 20px rgba(168, 85, 247, 0.4);
}

.neon-border {
    border: 1px solid rgba(168, 85, 247, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.neon-border:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 40px -10px rgba(168, 85, 247, 0.3);
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background-color: var(--accent-glow);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.7);
}

.purple-glow {
    position: absolute;
    background: var(--accent);
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: grab;
    padding: 0 5%;
    touch-action: pan-y;
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-item img {
    pointer-events: none;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    user-select: none;
    -webkit-user-drag: none;
    touch-action: pan-y;

    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.artist-overlay {
    pointer-events: none;
    background: linear-gradient(to top, rgba(10, 0, 20, 0.9) 0%, rgba(168, 85, 247, 0.1) 60%, transparent 100%);
}

#prevBtn,
#nextBtn {
    pointer-events: auto;
}

.carousel-item {
    flex: 0 0 calc(50% - 1rem);
    min-width: 0;
}

@media (min-width: 640px) {
    .carousel-item {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

@media (min-width: 1024px) {
    .carousel-item {
        flex: 0 0 calc(20% - 1rem);
    }
}

.dot {
    height: 4px;
    width: 12px;
    background-color: #333;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 2px;
}

.dot.active {
    background-color: var(--accent);
    width: 24px;
}

.service-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    backdrop-filter: blur(10px);
}

.text-balanced-justify {
    text-align: justify;
    text-justify: inter-character;
    hyphens: auto;
    word-break: break-word;
    line-height: 1.5;
}

.check-icon {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.cta-text {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.input-glow:focus {
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
    border-color: var(--accent);
}