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

html,
body {
    width: 100%;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

.hero {
    width: 100%;
    height: 100vh;

    background-image: url('../images/desktop-banner.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    position: relative;
}

.overlay {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.05);

    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    text-align: center;
}

.coming-soon {
    display: none;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;

    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;

    background: #9c6b3e;
    color: #fff;

    transition: 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

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

    .hero {
        background-image: url('../images/mobile-banner.webp');
        background-position: center top;
        background-size: cover;
    }

    .btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}