/* Burger Bunny - Alap stílusok */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: url('../images/background.png?123') no-repeat center center fixed;
    background-size: contain;
    height: 100vh;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    z-index: 1;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.cta-button {
    margin: 20px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 163, 102, 0.9);
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.arrow {
    margin-left: 10px;
    font-weight: bold;
    font-size: 1.5rem;
    background-color: white;
    color: rgba(255, 163, 102, 1);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.coming-soon {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.coming-soon p {
    margin-bottom: 10px;
}

/* Overlay a háttérre, hogy a szöveg jobban látszódjon */
body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Reszponzív beállítások */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .coming-soon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.7rem;
    }
    
    .content {
        gap: 30px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .arrow {
        width: 25px;
        height: 25px;
        font-size: 1.2rem;
    }
}
