﻿/* =========================================================
   TWISTED MAC HOMEPAE PAGE
========================================================= */

/* =====================================================================
	LEVEL 01 | HERO
===================================================================== */
.hero-wrap {
    min-height: 800px;
    background-color: var(--blue);
    z-index: 3;
}

.hero-wrap .gallerycontainer,
.hero-wrap #slides,
.hero-wrap .slides-container,
.hero-wrap .slides-container li,
.hero-wrap .slides-container li img {
    width: 100%;
    max-width: none;
}

.gallerycontainer {
    grid-column: full;
    width: 100%;
    height: 800px;
    overflow-y: visible;
}

.herotextcontainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.herotextgrid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.herotitle {
    font-family: var(--font-slab);
    font-size: 66px;
    line-height: 60px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
    text-shadow: 6px 6px 6px rgba(var(--black-hue), .5);
}

.heromessage {
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.herobutton { margin-top: 20px; }

.herobutton a {
    display: inline-flex;
    align-items: center;
    line-height: 70px;
    padding: 0 34px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: .05em;
    text-decoration: none;
    color: var(--white);
    background-color: var(--orange);
    border-radius: 50px;
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
    box-shadow: 6px 6px 6px rgba(var(--black-hue), .5);
    transition: background-color .4s ease, color .4s ease;
}

.herobutton a:hover,
.herobutton a:focus-visible {
    background-color: var(--red);
}

.herobutton a i {
    display: inline-flex;
    align-self: center;
    font-size: .6em;
    margin-left: 8px;
    margin-top: 5px;
    opacity: .6;
}

.herooverlay {
    position: absolute;
    inset: 0;
    background-color: rgba(var(--blue-hue), .4);
    z-index: 0;
}

.slides-navigation {
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    z-index: 101;
}

.slides-navigation a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    background-color: var(--orange);
    border-radius: 50%;
    outline: 2px solid var(--yellow);
    outline-offset: 4px;
    transition: background-color .4s ease;
}

.slides-navigation a:hover { background-color: var(--red); }

.slides-pagination {
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 200;
}

.slides-pagination a {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    margin: 2px;
    border: 2px solid var(--orange);
    border-radius: 15px;
    text-indent: -200%;
}

/* =====================================================================
	LEVEL 02 | MENU
===================================================================== */
.band-wrap.level02 {
    background-color: var(--cream);
    z-index: 2;
    padding-block: 60px 30px !important;
}

.contentmenu-titleblock {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 14px;
}

.contentmenu-titleblock .eyebrow {
    font-size: 24px;
    font-family: var(--font-slab);
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--orange);
    margin: 0;
    letter-spacing: .05em;
}

.contentmenu-titleblock .title h3 {
    font-family: var(--font-happy);
    font-size: 106px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--yellow);
    margin: 0;
    text-shadow: 2px 2px 0 var(--orange);
}

.contentmenugrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
    margin-top: 12px;
    width: 95%;
    margin: 0 auto;
}

.menugriditem { text-align: center; }

.menuitemimage img {
    display: block;
    width: 100%;
    height: auto;
    border: 2px solid var(--orange);
    outline: 1px solid var(--yellow);
    outline-offset: 2px;
}

.menuitemtext { margin-top: 22px; }

.menuitemtext h4 {
    font-size: 32px;
    line-height: 1;
    letter-spacing: .05em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--orange);
    font-family: var(--font-slab);
    margin: 0;
    text-shadow: 2px 2px 0 var(--yellow);
}

.menucraftedby {
    width: 200px;
    margin: 40px auto 0;
    text-align: center;
}

.menucraftedby img { width: 100%; }


/* =====================================================================
	LEVEL 03 | MEET THE NEW TWISTED MAC
===================================================================== */
.level03 {
    background-image: url('/Themes/Default/Content/Images/bg-pasta-blue.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    border-bottom: 2px solid var(--orange);
    color: var(--white);
}

.level03 .inner-wrap {
    width: 80%;
    margin: 0 auto;
}

.level03 .inner-wrap .is-split { 
    gap: 0; 
    grid-template-columns: .5fr 1fr;
}

.level03 .image-part {
    width: 100%;
    max-width: 320px;
    overflow: visible;
}

.level03 .image-part img {
    width: 50%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

.new-brand-title h3 {
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--yellow);
    margin: 0;
    padding-block: 30px 0;
    font-family: var(--font-inc-base);
    letter-spacing: .05em;

}

.new-brand-content {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: .01em;
    padding-block: 10px 0;
    width: 90%;
}
