/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: url('https://images-development-codi.s3.us-east-1.amazonaws.com/hit-land/BG-NoFond.jpg') no-repeat center center;
    background-size: cover;
}

/* Contenedor principal */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

/* Logo HiT - Manzana */
.logo {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.logo > img{
    width: 65%;
    margin: auto;
    margin-bottom: 5%;
    display: block;
}

.hit-text {
    font-size: 72px;
    font-weight: bold;
    color: #ffd93d;
    text-shadow: 
        -3px -3px 0 #1e5ba8,
        3px -3px 0 #1e5ba8,
        -3px 3px 0 #1e5ba8,
        3px 3px 0 #1e5ba8,
        0 0 10px rgba(0, 0, 0, 0.3);
    font-family: 'Comic Sans MS', 'Arial Rounded MT Bold', sans-serif;
    letter-spacing: -2px;
}

/* Botones */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.btn {
    padding: 18px 50px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 320px;
}

.btn-info {
    background: white;
    color: #1e5ba8;
}

.btn-info:hover {
    background: #1e5ba8;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 91, 168, 0.4);
}

.btn-shop {
    background: transparent;
    color: #254977;
    border: 3px solid #254977;
}

.btn-shop:hover {
    background: rgba(30, 91, 168, 0.1);
    transform: translateY(-3px);
}

/* Redes Sociales */
.social-media {
    display: flex;
    gap: 25px;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #1e5ba8;
}

.social-icon svg {
    width: 28px;
    height: 28px;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: #1e5ba8;
    color: white;
}

/* Animaciones */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */

/* Tablets */
@media (max-width: 768px) {

    .hit-text {
        font-size: 60px;
    }

    .btn {
        padding: 15px 40px;
        font-size: 16px;
        min-width: 280px;
    }

    .buttons {
        gap: 15px;
        margin-bottom: 30px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .logo {
        margin-bottom: 30px;
    }

    .hit-text {
        font-size: 50px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 15px;
        min-width: 260px;
    }

    .buttons {
        gap: 12px;
        margin-bottom: 25px;
    }

    .social-media {
        gap: 20px;
    }

    .social-icon {
        width: 42px;
        height: 42px;
    }

    .social-icon svg {
        width: 22px;
        height: 22px;
    }
}

/* Mobile pequeño */
@media (max-width: 360px) {

    .hit-text {
        font-size: 42px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
        min-width: 240px;
    }

    .social-media {
        gap: 15px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Landscape en móviles */
@media (max-height: 600px) and (orientation: landscape) {
    .container {
        padding: 10px;
    }

    .logo {
        margin-bottom: 15px;
    }

    .hit-text {
        font-size: 40px;
    }

    .buttons {
        flex-direction: row;
        gap: 15px;
        margin-bottom: 15px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 13px;
        min-width: auto;
    }

    .social-media {
        gap: 15px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}