@font-face {
    font-family: 'BlackSheep';
    src: url('fonts/BlackSheep.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BlackSheepGrunge';
    src: url('fonts/BlackSheepGrunge.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'BlackSheep', 'Arial', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.sheep-image {
    max-width: 300px;
    width: 60%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-20px);
    }
}

.buttons {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.button {
    font-family: 'BlackSheepGrunge', 'Anton', sans-serif;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    text-transform: uppercase;
    padding: 20px 50px;
    border: 3px solid #f23c3c;
    color: #ffffff;
    background: rgba(242, 60, 60, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
    text-align: center;
    display: inline-block;
    border-radius: 8px;
}

.button:hover {
    background: #f23c3c;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(242, 60, 60, 0.6);
}

.button-reservas {
    border-color: #9ff1fd;
    background: rgba(159, 241, 253, 0.1);
}

.button-reservas:hover {
    background: #9ff1fd;
    color: #0a0a0a;
    box-shadow: 0 0 30px rgba(159, 241, 253, 0.6);
}

/* Background noise effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(242, 60, 60, 0.03) 2px,
            rgba(242, 60, 60, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(159, 241, 253, 0.03) 2px,
            rgba(159, 241, 253, 0.03) 4px
        );
    background-size: 50px 50px;
    animation: noiseMove 0.5s steps(8) infinite;
    z-index: 0;
}

@keyframes noiseMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 50px 50px, -50px -50px; }
}

/* Floating particles */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(242, 60, 60, 0.2) 0px, transparent 50px),
        radial-gradient(circle at 60% 70%, rgba(159, 241, 253, 0.2) 0px, transparent 50px),
        radial-gradient(circle at 80% 40%, rgba(249, 176, 249, 0.2) 0px, transparent 50px),
        radial-gradient(circle at 40% 80%, rgba(242, 60, 60, 0.2) 0px, transparent 50px);
    animation: particlesFloat 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes particlesFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
    50% { transform: translateY(-30px) translateX(20px); opacity: 0.7; }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .container {
        gap: 30px;
        padding: 20px;
    }
    
    .sheep-image {
        max-width: 200px;
        width: 50%;
    }
    
    .buttons {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .button {
        width: 100%;
        max-width: 300px;
        padding: 18px 40px;
    }
}

