﻿
h1 {
    background: linear-gradient(90deg, #ff1493 0%, #ffffff 45%, #00e5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.brand-kicker {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: none;
    font-size: 1.75rem;
    color: #f0d060;
    text-shadow: 0 0 8px rgba(240, 208, 96, .45), 0 0 20px rgba(240, 208, 96, .2);
    opacity: 1;
    margin-bottom: 10px;
}
/* Option 1 - Standalone video section */
.video-preview {
    padding: 30px 20px;
    background: #1a1a2e;
    text-align: center;
}

.video-container {
    max-width: 400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

    .video-container video {
        width: 100%;
        height: auto;
        display: block;
    }

.video-caption {
    color: #fff;
    margin-top: 0px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Option 2 - Hero background video */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.3; /* Dim it so text is readable */
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* --- Leave a message section --- */
.contact-section {
    background: #050816;
    padding: 40px 20px 50px;
    color: #ffffff;
}

    .contact-section .section-head {
        text-align: center;
        margin-bottom: 20px;
    }

        .contact-section .section-head h2 {
            font-size: 26px;
            margin-bottom: 8px;
        }

        .contact-section .section-head p {
            opacity: 0.85;
            max-width: 520px;
            margin: 0 auto;
        }

.contact-form {
    max-width: 640px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.96);
    border-radius: 18px;
    padding: 20px 20px 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.contact-row {
    margin-bottom: 14px;
}

.contact-label {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-hint {
    font-size: .8rem;
    opacity: .7;
    margin-bottom: 6px;
}

.contact-status {
    margin-top: 10px;
    font-size: .85rem;
}

.contact-success {
    color: #4ade80;
}

.contact-error {
    color: #f97373;
}

.contact-validation {
    margin-bottom: 6px;
    font-size: .8rem;
    color: #fca5a5;
}
/* Fix Radzen dropdown colors on dark theme */
.rz-dropdown-panel {
    background-color: #020617 !important; /* very dark background */
    color: #e5e7eb !important; /* light text */
    border: 1px solid #374151 !important;
}

    /* Individual items */
    .rz-dropdown-panel .rz-dropdown-item {
        color: #e5e7eb !important;
    }

        /* Hover / selected state */
        .rz-dropdown-panel .rz-dropdown-item.rz-state-hover,
        .rz-dropdown-panel .rz-dropdown-item:hover,
        .rz-dropdown-panel .rz-dropdown-item.rz-state-highlight {
            background-color: #1f2937 !important;
            color: #f9fafb !important;
        }

/* Placeholder text in the closed dropdown */
.rz-dropdown .rz-placeholder {
    color: #9ca3af !important;
}
/* Founding Artists - Mobile responsive grid */
/* Founding Artists - Mobile responsive grid */
.artist-strip {
    display: grid;
    gap: 16px;
    max-width: 100%;
}

/* Desktop: flexible layout */
@media (min-width: 769px) {
    .artist-strip {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

/* Mobile: exactly 3 columns */
@media (max-width: 768px) {
    .artist-strip {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

