        :root {
            --black: #000000;
            --yellow: #FFD700;
            --creme: #FFFDD0;
            --font-main: 'Unbounded', sans-serif; /* Modern, bred font */
            --font-sub: 'Inter', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { 
            background-color: var(--creme); 
            color: var(--black);
            font-family: var(--font-sub);
        }

        /* --- HERO SECTION --- */
        .hero {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            min-height: 100vh;
        }

        .hero-branding {
            background-color: var(--yellow);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 10%;
            border-bottom: 5px solid var(--black);
        }

        @media (min-width: 768px) {
            .hero-branding { border-bottom: none; border-right: 5px solid var(--black); }
        }

        h1 { 
            font-family: var(--font-main);
            font-size: clamp(3rem, 8vw, 6rem);
            line-height: 0.8;
            text-transform: uppercase;
            letter-spacing: -2px;
        }

        .now-playing {
            background-color: var(--black);
            color: var(--yellow);
            padding: 10%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .track-meta { font-family: var(--font-main); margin-bottom: 2rem; }
        .track-meta span { color: var(--creme); font-size: 0.8rem; display: block; margin-bottom: 0.5rem; }
        .track-meta h2 { font-size: clamp(1.5rem, 4vw, 3rem); text-transform: uppercase; }

        /* --- BUTTONS --- */
        .play-trigger {
            background: var(--yellow);
            color: var(--black);
            border: none;
            padding: 25px 50px;
            font-family: var(--font-main);
            font-weight: 900;
            font-size: 1.2rem;
            cursor: pointer;
            width: fit-content;
            transition: 0.2s;
        }
        .play-trigger:hover { transform: scale(1.05); }

        /* --- HISTORY SECTION --- */
        .section-padding { padding: 80px 10%; }
        
        h3 { 
            font-family: var(--font-main); 
            font-size: 2rem; 
            margin-bottom: 40px;
            border-bottom: 5px solid var(--yellow);
            display: inline-block;
        }

        .history-list {
            display: grid;
            gap: 15px;
        }

        .history-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: var(--white);
            border: 2px solid var(--black);
            transition: 0.3s;
        }
        .history-item:hover { background: var(--yellow); }
        .history-item .time { font-family: var(--font-main); font-weight: 900; font-size: 0.9rem; }

        /* --- CONTACT FORM --- */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            background: var(--black);
            color: var(--creme);
        }

        input, textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            background: transparent;
            border: 2px solid var(--creme);
            color: var(--creme);
            font-family: var(--font-sub);
        }

        input:focus, textarea:focus { outline: none; border-color: var(--yellow); }

        .submit-btn {
            background: var(--yellow);
            border: none;
            padding: 20px;
            width: 100%;
            font-family: var(--font-main);
            font-weight: 900;
            cursor: pointer;
        }
		
		.contact { color: var(--yellow); border-color: var(--creme); } 
		

/* --- FOOTER UPPDATERING --- */
.footer {
    background-color: var(--yellow);
    border-top: 5px solid var(--black);
    padding: 80px 10% 40px 10%;
    color: var(--black);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-main);
    font-size: 1.5rem;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.footer-logo span {
    display: block;
    line-height: 0.8;
}

.footer-col h4 {
    font-family: var(--font-main);
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--black);
    display: inline-block;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    transition: 0.2s;
}

.footer-links a:hover {
    padding-left: 5px;
}

/* Sociala ikoner - Stiliserade som knappar */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--black);
    color: var(--yellow);
    text-decoration: none;
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 0.8rem;
    transition: 0.3s;
    border: 2px solid var(--black);
}

.social-icons a:hover {
    background: var(--creme);
    color: var(--black);
    transform: translateY(-5px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 2px solid rgba(0,0,0,0.1);
    text-align: center;
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 0.7rem;
    letter-spacing: 1px;
} 


.footer-bottom a {
    color: var(--black);
    text-decoration: none;
    background-color: rgba(255, 215, 0, 0.3); /* Ljusgul genomskinlig */
    padding: 2px 5px;
    transition: 0.3s;
}

.footer-bottom a:hover {
    background-color: var(--black);
    color: var(--yellow);
}


@media (max-width: 600px) {
    .footer { text-align: center; }
    .social-icons { justify-content: center; }
    .footer-col h4 { display: block; width: fit-content; margin: 0 auto 20px auto; }
}

