:root {
    --primary-blue: #00A3C4;
    --sidebar-bg: #F0F4F8;
    --main-bg: #F8FAFC;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --white: #FFFFFF;
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    --border-radius: 20px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', system-ui, sans-serif;
}

.hidden{
    display: none;
}

body {
    background-color: var(--main-bg);
    color: var(--text-dark);
    height: 100vh;
    /* overflow: hidden; */
}

.rounded-box{
    display: flex;
    justify-content: center;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin: 1rem;
    box-shadow: var(--card-shadow);
}

.newlook__container {
    max-width: 380px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: var(--footer-height);
    margin-bottom: 1rem;
}

.newlook__container-desktop {
    max-width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: var(--footer-height);
    margin-bottom: 1rem;
}

/* Responsive padding and gaps for small devices */
@media (max-width: 359px) {
    .newlook__container {
        padding: 0.75rem;
        gap: 1rem;
    }
}

/* Header */
.newlook-header {
    display: flex;
    flex-direction: row;
    background-color: none;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem;
}

@media (max-width: 359px) {
    .newlook-header {
        margin: 0;
    }
}

.newlook-header__logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: #005670;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newlook-header__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.newlook-header__avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #ddd;
}

.newlook-header__notification {
    cursor: pointer;
}

.newlook-header__logotype--mobile{
    display: flex;
    flex-direction: row;
}

.newlook-header__logotype--mobile img {
    width: 10rem;
}

.newlook-header__searchbar-container{
    width: 100%;
}

/* --- Grid Layout --- */
.newlook__app-shell {    
    display: grid;
    grid-template-columns: 15rem 1fr 20rem;
    height: 100vh;
    overflow-y: auto;
}

.newlook__logo { font-size: 1.8rem; font-weight: 800; color: #005670; margin-bottom: 40px; }

.newlook__nav-group { display: flex; flex-direction: column; gap: 8px; }

.newlook__nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-muted);
    border-radius: 12px;
    transition: all 0.2s;
}

.newlook__nav-link.active {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: var(--card-shadow);
}

.newlook__premium-card {
    background: linear-gradient(135deg, #00A3C4, #005670);
    padding: 20px;
    border-radius: var(--border-radius);
    color: white;
    text-align: center;
    margin-top: 40px;
}

/* --- Main Content (Center) --- */
main.content {
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    height: fit-content;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

main.content::-webkit-scrollbar {
    display: none;
}

.newlook__top-bar {
    display: flex;
    align-items: center;
    gap: 20px;
}

/*.landing-hero {
    display: flex;
    width: 100%;
    justify-content: center;
    border-radius: var(--border-radius);
}*/

.newlook-hero__img {
    height: 100%;
    width: 100%;
    object-fit: fill;
}

.newlook__song-card {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    -webkit-user-drag: none;
    user-select: none;
}

.newlook__song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.newlook__song-card__image {
    width: 100%;
    height: 100%;
    background: #eee;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.newlook__song-card__info {
    padding: 0.2rem;
    background: rgba(0, 0, 0, 0.6);
    height: 40%;
    position: relative;
    z-index: 1;
}

.newlook__song-card__title {
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    margin: 0;
}

.newlook__song-card__artist {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.25rem 0 0 0;
}

/* --- Repertoire --- */
.newlook__repertoire-section {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--card-shadow);
    margin-bottom: 5rem;
}

.newlook__playlist-card {
    margin-bottom: 2rem;
}

.newlook__playlist-card h3 {
    margin-bottom: 2rem;
}

.newlook__playlist-card a {
    display: flex;
    justify-content: center;
    width:100%;
    background:var(--primary-blue);
    color:white;
    border:none;
    padding:1rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.newlook__playlist-list{
    margin-bottom: 2rem;
}

.newlook__playlist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

a {
    text-decoration: none;
}

.newlook__contact-nav{
    margin-bottom: 2rem;
}

.newlook__contact-nav ul {
    margin-bottom: 2rem;
}

.newlook__contact-item{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.newlook__contact-icon-span{
    height: 3rem;
    width: 3rem;
}

.newlook__contact-label-span{
    margin-left: 1rem;
    font-size: 0.9rem;
    color: black;
}

.newlook__plans-banner{
    display: block;
    width: 100%;
    margin-top: auto;
}

.newlook__plans-banner img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.newlook__back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    z-index: 100;
}

.newlook__back-to-top:hover {
    background: #005670;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(0, 163, 196, 0.3);
}

.newlook__back-to-top.show {
    display: flex;
}

.newlook__back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Song Categories */
.newlook__song-categories-row {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.newlook__song-categories-row button {
    flex: 1;
    border: 1px solid #E0E0E0;
    background: #F8F9FA;
    color: var(--text-dark);
    padding: 0.35rem 0;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

/* Hover state */
.newlook__song-categories-row button:hover {
    background: #F1F3F5;
}

/* Active state (for when the switch is on) */
.newlook__song-categories-row button[aria-checked="true"],
.newlook__song-categories-row button.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}