/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', Arial, sans-serif;
}

/* Fullscreen background styling */
body,
html {
    height: 100%;
    overflow: hidden;
}

body {
    background-image: url('../images/zeeaudio_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/* Centered content */
.content {
    text-align: center;
    padding: 30px;
    padding-bottom: 100px;
    border-radius: 8px;
}

h1 {
    font-size: 3rem;
    color: #E12D30;
}

p {
    font-size: 1.2rem;
    margin: 20px 0;
}

button {
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #E12D30;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #b51f26;
}

footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.2);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    z-index: 1000;
    backdrop-filter: blur(50px);
    animation: slideUp 0.5s ease-out;
}

footer a {
    color: #ffffff;
    text-decoration: underline;
}

footer a:hover {
    text-decoration: none;
}

.logo-container {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideDown 0.5s ease-out;
}

.responsive-logo {
    max-width: 80%;
    height: auto;
    width: 100%;
}

/* Adjusted padding for smaller screens */
@media (max-width: 768px) {
    .content {
        padding-bottom: 150px; /* Extra padding for footer clearance */
    }
    
    .logo-container {
        top: 40%; /* Moves logo up slightly on smaller screens */
    }
    
    .responsive-logo {
        max-width: 60%; /* Reduce logo size */
    }
    
    footer {
        padding: 5px 10px;
    }
}

/* Large screens */
@media (min-width: 768px) {
    .logo-container {
        top: 50%;
    }
}

/* Slide-up animation */
@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
    }

    to {
        transform: translate(-50%, 0);
    }
}

/* Slide-down animation for the logo */
@keyframes slideDown {
    from {
        transform: translate(-50%, -100%);
    }
    to {
        transform: translate(-50%, -50%);
    }
}