@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #151414;
    color: #f2e9d8;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-around;
}

header {
    padding: 40px 20px 20px;
}

.title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* the lines */
.line {
    flex: 1;
    height: 2px;
    background: #b87333; /* copper accent */
    max-width: 80px; /* optional — keeps them tidy */
}

/* the name */
.bar-name {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    letter-spacing: 2px;
    color: #f9d29d;
    margin: 0;
}

    header p {
        margin-top: 10px;
        font-size: 18px;
        opacity: 0.8;
    }

.divider {
    width: 80%;
    margin: 25px auto;
    border-bottom: 1px solid #cbb68a;
    opacity: 0.4;
}

.status-card {
    background: linear-gradient(25deg, #202b24, #515d3d);
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    border-radius: 20px;
    font-size: 32px;
    font-weight: bold;
}
    .status-card.open-False {
        background: linear-gradient(25deg, #202b24, #ff0000);
    }

    .status-card small {
        display: block;
        margin-top: 10px;
        font-size: 18px;
        opacity: 0.9;
    }

.beer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    width: 80%;
    max-width: 900px;
    margin: 30px auto;
    justify-items: center;

    .beer-card {
        background: #222;
        padding: 24px;
        border-radius: 20px;
        color: #f2e9d8;
        display: flex;
        text-align: left;
        gap: 24px;
        max-width: 600px;
        width: calc(100% - 48px);
    }

    .beer-icon {
        align-content: center;
    }

    .beer-name {
        font-size: 26px;
        font-weight: bold;
        margin-bottom: 6px;
    }

    .beer-style {
        font-size: 16px;
        opacity: 0.75;
    }

    .abv {
        font-size: 14px;
        padding: 4px 10px;
        border-radius: 12px;
        background: #b87333;
        color: #fff;
        font-weight: bold;
    }
}

.stats-card {
    width: fit-content;
    margin: 25px auto;
    font-size: 24px;

    h6 {
        padding: 0;
        margin: 0;
        padding-left: 25px;
        padding-bottom: 5px;
        opacity: 0.6;
        font-weight: normal;
        text-align: left;
    }

    .stats-info {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;

        .stat-box {
            background: #1d1c1c;
            width: 150px;
            padding: 20px;
            border-radius: 15px;
            text-transform: uppercase;

            .num {
                font-size: 28px;
                font-weight: bold;
                font-family: 'Cinzel', serif;
            }

            .label {
                margin-top: 8px;
                font-size: 12px;
                opacity: 0.7;
            }
        }
    }
}



footer {
    margin-top: 40px;
    padding: 20px;
    font-size: 14px;
    opacity: 0.8;

    p.powered {
        font-family: 'Cinzel', serif;
        font-size: 0.8em;
    }
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    opacity: 0.2;

    mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 50%, /* fully visible center */
    rgba(0, 0, 0, 0) 100% /* fades to transparent at edges */
    );
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
}




@media (max-width: 480px) {
    .bar-name {
        font-size: 34px;
    }

    .line {
        max-width: 50px;
    }
}