/* =========================
   SHARED BUTTON STYLE
   Used across the site.
   ========================= */

   .button {

    display: inline-block;

    background: var(--color-accent);
    color: #111;

    padding: 15px 28px;

    text-decoration: none;

    border-radius: var(--radius-small);

    font-weight: bold;

    transition: opacity .25s ease, transform .25s ease;

}

.button:hover {

    opacity: .9;

}

/* =========================
   CONTACT BUTTON
   Used inside the contact card.
   ========================= */

.contact-button {

    display: inline-block;

    margin-top: 25px;

    background: var(--color-accent);
    color: #111;

    text-decoration: none;

    padding: 14px 28px;

    border-radius: var(--radius-small);

    font-weight: bold;

    transition: opacity .25s ease;

}

.contact-button:hover {

    opacity: .9;

}

/* =========================
   MENU DOWNLOAD BUTTON
   Used on the mobile menu page.
   ========================= */

.menu-download {

    text-align: center;

    margin-bottom: 35px;

}

.menu-download .button {

    display: inline-block;

    padding: 16px 32px;

    font-size: 18px;

}

/* =========================
   RETURN BUTTON SECTION
   Used on secondary pages.
   ========================= */

.music-back {

    text-align: center;

    padding: 40px;

}

/* =========================
   BOOKING COMING SOON POPUP
   ========================= */

.booking-popup {

    display: none;

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,.65);

    z-index: 2000;

    justify-content: center;
    align-items: center;

    padding: 20px;

}

.booking-popup.active {

    display: flex;

}

.booking-card {

    position: relative;

    max-width: 500px;

    background: var(--color-white);
    color: #111;

    padding: 40px;

    border-radius: var(--radius-large);

    text-align: center;

    box-shadow: 0 15px 40px rgba(0,0,0,.35);

}

.booking-card h2 {

    color: var(--color-ocean);

    margin-bottom: 20px;

}

.booking-card p {

    font-size: 18px;
    line-height: 1.5;

    margin-bottom: 25px;

}

.booking-close {

    position: absolute;

    top: 15px;
    right: 20px;

    border: none;
    background: none;

    font-size: 34px;

    cursor: pointer;

}