/* Essential Variables */
:root {
    --primary-color: #FFFFFF;
    --accent-color: #e30918;
    --text-color: #FFFFFF;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header - Logo Container */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    height: auto;
    display: flex;
    align-items: flex-start;
    padding: 1rem;
}

.hero-bar {
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.brand-link {
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.brand-link img {
    width: 200px;
    height: 90px;
    object-fit: contain;
    transition: var(--transition);
}

.brand-link:hover img {
    transform: scale(1.05);
}

.onelisten-link {
    display: flex;
    align-items: center;
    transition: var(--transition);
    cursor: pointer;
    margin-left: 1rem;
    margin-top: -1rem;
}

.onelisten-link img {
    width: 200px;
    height: 100px;
    object-fit: contain;
    transition: var(--transition);
}

.onelisten-link:hover img {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Footer */
footer {
    background: transparent;
    padding: 1rem 0;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
}

.footer-links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

footer p {
    text-align: center;
    color: var(--text-color);
    font-size: 0.9rem;
}