/* ===== Main/Contact/Music page styles ===== */

.hero {
    text-align: center;
    padding: 3rem 1rem 2rem;
}

.hero h1 {
    font-size: clamp(1.8rem, 6vw, 3rem);
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0.5rem auto;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem auto;
    max-width: 900px;
}

.link-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.2s ease;
    color: var(--text);
}

.link-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 8px 30px var(--accent-glow);
    color: var(--text);
}

.link-card .label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.link-card .title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
}

.link-card .desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.contact-note {
    color: var(--text-muted);
    text-align: center;
    font-size: 0.9rem;
    margin: 2rem 0;
}

/* Contact form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

.contact-form .form-row {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-form button {
    width: 100%;
    margin-top: 1rem;
}

.form-message {
    text-align: center;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    display: block;
}

.form-message.error {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid var(--danger);
    color: var(--danger);
    display: block;
}

.contact-quick {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem auto;
    max-width: 600px;
}

.contact-quick a {
    display: block;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-align: center;
    color: var(--text);
    transition: all 0.2s ease;
}

.contact-quick a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Music page now-playing card */
.now-playing-card {
    max-width: 500px;
    margin: 2rem auto;
    padding: clamp(1rem, 3vw, 2rem);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.now-playing-card.playing {
    border-color: var(--accent);
    box-shadow: 0 8px 40px var(--accent-glow);
}

.now-playing-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.album-art {
    width: min(250px, 80vw);
    height: min(250px, 80vw);
    border-radius: 12px;
    margin: 1rem auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.track-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0 0.25rem;
    color: var(--text);
}

.track-name a {
    color: var(--text);
}

.track-name a:hover {
    color: var(--accent);
}

.artist-name {
    font-size: 1rem;
    color: var(--text-muted);
}

.album-name {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    opacity: 0.7;
}

.progress-bar {
    background: var(--bg-elevated);
    border-radius: 4px;
    height: 4px;
    margin: 1.5rem 0 0.5rem;
    overflow: hidden;
}

.progress-fill {
    background: var(--accent);
    height: 100%;
    transition: width 1s linear;
}

.progress-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.not-playing-text {
    padding: 3rem 1rem;
    color: var(--text-muted);
}

/* Announcement banner — defined in base.css */
