/* Full screen, no scrolling */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: black; /* removes white bar */
    overflow: hidden;
}

/* Desktop/tablet: flyer centered */
.flyer-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
}

/* Flyer wrapper locked to exact flyer aspect ratio (874 × 1240) */
.flyer-wrapper {
    width: 100%;
    height: 100%;
    max-width: calc(100vh * 0.7048);
    background: url('Flyerfinal.jpg') no-repeat center top;
    background-size: contain;
    position: relative;
}

/* DESKTOP/TABLET BUTTON STACK */
.button-stack.desktop-buttons {
    position: absolute;
    right: 7%;
    top: 67%;
    width: 25%;
    height: 18%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
}

/* Buttons */
.btn {
    background: #ff7a00;
    color: white;
    padding: 10px 0;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
    transition: 0.2s;
}

.btn:hover {
    background: #e56d00;
    transform: translateY(-2px);
}

/* ------------------------------------------------ */
/* MOBILE: bottom bar BELOW the flyer               */
/* ------------------------------------------------ */
@media (max-width: 600px) {

    /* Use dynamic viewport height to remove white bar */
    .flyer-container {
        height: 100dvh;
        align-items: flex-start;
    }

    /* Flyer fills width and height properly */
    .flyer-wrapper {
        width: 100vw;
        height: auto;
        aspect-ratio: 874 / 1240;
        background-size: 100% auto;
    }

    /* Hide desktop buttons */
    .desktop-buttons {
        display: none;
    }

    /* MOBILE BOTTOM BUTTON BAR — now BELOW the flyer */
    .mobile-button-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 10px 0;
        background: rgba(0,0,0,0.85);
        display: flex;
        justify-content: space-around;
        z-index: 20;
    }

    .mobile-btn {
        flex: 1;
        margin: 0 6px;
        padding: 14px 0;
        font-size: 16px;
        border-radius: 6px;
    }
}
