:root {
    --primary-bg: #e5d9dc;
    --white: #ffffff;
    --text-main: #3d3d3d;
    --secondary-text: #6d6567;
    --light-text: #9a8f92;
    --accent-color: #a66d6d;
    --border-color: rgba(166, 109, 109, 0.15);
    --transition: all 0.2s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, .row-category, .btn, strong {
    text-transform: none;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.4;
}

/* music + calendar side-by-side */
.paired-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .paired-sections { grid-template-columns: 1fr; }
}

/* shared section layout — used by music, calendar, reels */
.music-section {
    padding: 4rem 1.5rem;
}

.music-container {
    max-width: 900px;
    margin: 0 auto;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* shared list row — used by music and calendar */
.row-category {
    flex: 0 0 140px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
}

.style-desc {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-bottom: 0.1rem;
}

.artists {
    font-size: 0.75rem;
    color: var(--light-text);
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .music-section { padding: 1.5rem 0; }
    .section-title { padding: 0 0.75rem; }
    .section-title h2 { font-size: 1.2rem; margin-bottom: 0.5rem; }
    .style-desc { font-size: 0.8rem; }
    .artists { font-size: 0.68rem; }
}

@media (max-width: 768px) {
    .music-section { padding: 1.25rem 0; }
    .section-title h2 { font-size: 1.1rem; margin-bottom: 0.4rem; }
}

@media (max-width: 480px) {
    .music-section { padding: 0.75rem 0; }
    .section-title h2 { font-size: 0.95rem; margin-bottom: 0.3rem; }
    .style-desc { font-size: 0.75rem; }
    .artists { font-size: 0.63rem; }
}
