/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Background container */
body {
    background-image: url('take_fun_super_party.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Main container for centering */
.container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Content wrapper */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 20px;
}

/* Logo link wrapper */
.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.logo-link:hover {
    transform: translateY(-5px) scale(1.05);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
}

.logo-link:active {
    transform: translateY(-2px) scale(1.02);
}

/* Logo styling */
.logo {
    max-width: 90vw;
    max-height: 50vh;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    cursor: pointer;
}

/* Button link wrapper */
.button-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.button-link:hover {
    transform: translateY(-5px) scale(1.05);
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.4));
}

.button-link:active {
    transform: translateY(-2px) scale(1.02);
}

/* Button image styling */
.button {
    max-width: 90vw;
    width: auto;
    height: auto;
    display: block;
    cursor: pointer;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .content {
        gap: 30px;
        padding: 15px;
    }

    .logo {
        max-width: 85vw;
        max-height: 40vh;
    }

    .button {
        max-width: 80vw;
    }
}

@media (max-width: 480px) {
    .content {
        gap: 25px;
        padding: 10px;
    }

    .logo {
        max-width: 90vw;
        max-height: 35vh;
    }

    .button {
        max-width: 85vw;
    }
}

/* Landscape mode on mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .content {
        gap: 20px;
    }

    .logo {
        max-height: 30vh;
    }
}

