/* ==========================================================================
   Hero menu blocks
   Reusable overlay for the .hero component: three panels sitting on top
   of the hero image. top__left = logo, top__right = accent (empty by
   design), bottom__left = eyebrow + heading + CTA.

   Positioning/size of .menu__blocks itself lives in home.css — this file
   only styles the three child panels so there's no cascade conflict.
   ========================================================================== */

/* TOP LEFT — logo */
.top__left {
    position: absolute;
    left: 0;
    top: 0;

    width: 62%;
    height: 10%;

    background: #e5e5e5;
    border: 1px solid #222;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    padding: 0 32px;
}

.menu__logo {
    display: block;
    height: 50px;
    width: auto;
}

/* TOP RIGHT — accent block*/
.top__right {
    position: absolute;
    right: 0;
    top: 0;

    width: 38%;
    height: 10%;

    background: #e5e5e5;
    border: 1px solid #222;
    border-left: none;
    box-sizing: border-box;
}

/* BOTTOM LEFT — eyebrow / heading / CTA */
.bottom__left {
    position: absolute;
    left: 0;
    top: 10%;

    width: 62%;
    height: 30%; 

    background: #e5e5e5;
    border: 1px solid #222;
    border-top: none;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 32px;
    font-family: "Barlow Condensed", sans-serif;
    color: #151515;
}

.menu__eyebrow {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.menu__heading {
    max-width: 20ch;
    margin: 0 0 16px;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
}

.menu__cta {
    align-self: flex-start;
    padding: 8px 16px;
    background: #a5262b;
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none;
}