:root{
    --primary-font: "neue-kabel", sans-serif;
    --secondary-font: 'Hurricane', cursive;

    --default-border-radius: 0.8rem;

    --color-black: #21221E;
    --color-green: #CBE1C2;
    --color-orange: #FF7628;
    
    --color-green-10: #CBE1C21A;
    --color-green-25: #CBE1C240;
    --color-green-50: #CBE1C280;
}


/* STYLES */
html{
    font-size: 62.5%;
}

body{
    font-family: var(--primary-font);
    font-size: 1.6rem;
    background-color: var(--color-black);
    color: var(--color-green);
    padding: 1.6rem 1.6rem 4.8rem;
    line-height: 1.1;
    font-weight: 500;
}

.🫥{
    display: none;
}

.🧑‍🦯{
	position: absolute;
    color: var(--color-green);
    background-color: var(--background-color);
    padding: 0;
}

.🧑‍🦯:not(:focus){
	width: 0;
	height: 0;
	overflow: hidden;
	opacity: 0;
}

.📃{
    max-width: 134.4rem;
    margin: 0 auto;
}

img{
    max-width: 100%;
    height: auto;
}

svg{
    display: block;
    max-width: 100%;
    height: auto;
}

a,
a:is(:hover, :focus, :active){
    color: var(--color-green);
}

a{
    transition: all 0.3s ease;
}

@media (min-width: 768px){
    body{
        padding: 1.6rem 4.8rem 4.8rem;
    }
}


/* QUICK BUTTON */
.🐇{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 3.2rem;
    column-gap: 1.6rem;
}

.🐇 a{
    text-decoration: none;
    border-radius: 4rem;
    font-weight: 700;
    color: var(--color-black);
    background: var(--color-orange);
    text-transform: uppercase;
    padding: 0.8rem 1.6rem 0.6rem;
    cursor: pointer;
    display: block;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

/*.🐇 a + a{
    color: var(--color-black);
    background-color: var(--color-green);
}*/

.🐇 a:is(:hover, :focus, :active){
    background: var(--color-green);
}

/*.🐇 a + a:is(:hover, :focus, :active){
    background: var(--color-orange);
    color: var(--color-black);
}*/

@media (min-width: 768px){
    .🐇 a{
        width: auto;
    }
}


/* HERO */
.🦸{
    margin-bottom: 14.286%;
}

.🦸 h1{
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 3.2rem;
    text-align: center;
}

.🦸 h1 img{
    width: 7.5rem;
    display: block;
    margin: 0 auto 0.8rem;
}

.🦸📦{
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

.🦸🖼️{
    grid-row: 1;
    grid-column: 1;
    border-radius: var(--default-border-radius);
}

.🦸🎥{
    grid-row: 1;
    grid-column: 1;
    border-radius: var(--default-border-radius);
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    filter: brightness(1.4) contrast(0.65);
    opacity: 0.9;
}

.🦸🪪{
    grid-row: 1;
    grid-column: 1;
    justify-self: center;
    width: 47.62%;
    margin-top: 60%;
    position: relative;
}

.🦸 p{
    margin: 7.143% auto 0;
    max-width: 83.036%;
    text-align: center;
    font-size: clamp(1.6rem, 3.55vw, 4.8rem);
}

@media (min-width: 768px){
    .🦸🎥 {
        aspect-ratio: 1.9191;
    }

    .🦸🪪{
        margin-top: 20.53%;
    }
}


/* DRINKS */
.🍸{
    background-color: var(--color-green-10);
    border-radius: var(--default-border-radius);
    padding: 1.6rem;
    margin: 0 auto;
}

.🍸 h2{
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 1.6rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: clamp(2.4rem, 5.3vw, 8rem);
}

.🍸 ul{
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    column-gap: 1.6rem;
    row-gap: 1.6rem;
}

.🍸 ul li{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    column-gap: 1.6rem;
    row-gap: 1.6rem;
    list-style: none;
    background-color: var(--color-green-10);
    border-radius: var(--default-border-radius);
    padding: 1.6rem;
}

.🍸 ul li img{
    border-radius: var(--default-border-radius);
    display: block;
    width: 100%;
}

.🍸🖼️{
    position: relative;
}

.🍸🖼️ img + img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: all 0.5s ease;
}

.🍸 ul li:hover .🍸🖼️ img + img{
    opacity: 1;
}

.🍸 ul li span{
    text-align: center;
    text-transform: uppercase;
    display: block;
    font-weight: 900;
    font-size: 2rem;
}

@media (min-width: 768px){
    .🍸{
        padding: 3.2rem;
        max-width: 83.036%;
    }

    .🍸 h2{
        margin-bottom: 3.2rem;
    }

    .🍸 ul{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .🍸 ul li{
        grid-template-columns: minmax(0, 1fr);
    }
}


/* PRIZES */
.🏆{
    margin: max(1.6rem, 3.57%) auto 14.286%;
    background-color: var(--color-green-10);
    border-radius: var(--default-border-radius);
    padding: 1.6rem;
}

.🏆 h2{
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 1.6rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: clamp(2.4rem, 5.3vw, 8rem);
}

.🏆 h3{
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    white-space: nowrap;
    column-gap: 2.4rem;
    font-size: 1.6rem;
    line-height: 1;
    text-transform: uppercase;
}

.🏆 h3::before,
.🏆 h3::after{
    content: '';
    display: block;
    width: 100%;
    border-bottom: 0.1rem solid var(--color-green-50);
}

.🏆 ul{
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    column-gap: 3.2rem;
    row-gap: 1.6rem;
    margin: 3.2rem 0;
    padding: 0;
}

.🏆 ul li{
    font-size: 2rem;
    line-height: 1.5;
    margin-left: 3rem;
}

.🏆💡{
    background-color: var(--color-green-10);
    display: flex;
    column-gap: 1.2rem;
    margin: 0 auto;
    border-radius: 4rem;
    padding: 1.6rem 2.8rem;
    width: max-content;
    max-width: 100%;
    align-items: center;
}

.🏆💡 img{
    width: 2.4rem;
    height: auto;
}

@media (min-width: 768px){
    .🏆{
        max-width: 83.036%;
        padding: 3.2rem;
    }

    .🏆 h2{
        margin-bottom: 0 0 3.2rem;
    }
    
    .🏆 h3{
        font-size: 2rem;
    }

    .🏆 ul{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin: 6.4rem 0;
    }
}


/* TESTIMONIALS */
.🗣️{
    margin-bottom: 14.286%;
}

.🗣️ h2{
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 3.2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: clamp(2.4rem, 5.3vw, 8rem);
}

.🗣️🎠💬{
    padding: 1.6rem;
    margin: 0 auto;
    text-align: center;
    max-width: 96rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
    row-gap: 1.6rem;
}

.🗣️🎠💬::before{
    content: '';
    display: block;
    background-image: url('../img/icon-quote.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 12.4%;
    padding-bottom: 10%;
    flex-shrink: 0;
    margin: 0 auto;
}

.🗣️🎠💬 p{
    font-size: clamp(2.4rem, 2.65vw, 3.6rem);
    margin: 0;
}

.🗣️🎠💬 cite{
    font-weight: 900;
    font-style: normal;
    font-size: clamp(2.4rem, 2.65vw, 3.6rem);
}

.🗣️🎠🧭{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 3.2rem;
    padding-top: 1.6rem;
}

.🗣️🎠🧭👈,
.🗣️🎠🧭👉{
    all: unset;
    cursor: pointer;
    transition: all 0.3s ease;
}

:is(.🗣️🎠🧭👈, .🗣️🎠🧭👉):is(:hover, :focus, :active){
    opacity: 0.7;
    outline: none;
}

:is(.🗣️🎠🧭👈, .🗣️🎠🧭👉) img{
    width: 6rem;
}

@media (min-width: 768px){
    .🗣️ h2{
        margin-bottom: 6.4rem;
    }

    .🗣️🎠{
        padding: 0 10rem;
    }

    .🗣️🎠💬{
        padding: 3.2rem;
        row-gap: 3.2rem;
    }

    .🗣️🎠🧭{
        padding: 0;
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        pointer-events: none;
        transform: translateY(-50%);
        justify-content: space-between;
        z-index: 2;
    }

    :is(.🗣️🎠🧭👈, .🗣️🎠🧭👉){
        pointer-events: all;
    }

    :is(.🗣️🎠🧭👈, .🗣️🎠🧭👉) img{
        width: 8rem;
    }
}


/* PHOTOS */
.📷{
    margin-bottom: 14.286%;
}

.📷 h2{
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 3.2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: clamp(2.4rem, 5.3vw, 8rem);
}

.📷🎠 .swiper-wrapper{
    align-items: center;
}

.📷🎠📦{
    position: relative;
}

.📷🎠📦::before,
.📷🎠📦::after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 4rem;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.📷🎠📦::before{
    left: 0;
    background: linear-gradient(to right, rgba(33,34,30,1) 0%,rgba(33,34,30,0) 100%);
}

.📷🎠📦::after{
    right: 0;
    background: linear-gradient(to left, rgba(33,34,30,1) 0%,rgba(33,34,30,0) 100%);
}

.📷🎠🖼️{
    padding: 0 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 75vw;
}

.📷🎠🖼️ img{
    max-width: min(100%, 50rem);
    max-height: 20rem;
    object-fit: contain;
    border-radius: 0.8rem;
}

.📷🎠🧭{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 3.2rem;
    padding-top: 1.6rem;
}

.📷🎠🧭👈,
.📷🎠🧭👉{
    all: unset;
    cursor: pointer;
    transition: all 0.3s ease;
}

:is(.📷🎠🧭👈, .📷🎠🧭👉):is(:hover, :focus, :active){
    opacity: 0.7;
    outline: none;
}

:is(.📷🎠🧭👈, .📷🎠🧭👉) img{
    width: 6rem;
}

@media (max-width: 767px){
    .📷🎠📦{
        width: calc(100% + 3.2rem);
        margin-left: -1.6rem;
    }
}

@media (min-width: 768px){
    .📷 h2{
        margin-bottom: 6.4rem;
    }
    
    .📷🎠📦{
        padding: 0 10rem;
    }

    .📷🎠📦::before{
        left: 10rem;
    }

    .📷🎠📦::after{
        right: 10rem;
    }

    .📷🎠🖼️{
        max-width: 50vw;
    }

    .📷🎠🖼️ img{
        max-width: min(100%, 50rem);
        max-height: 35rem;
    }

    .📷🎠🧭{
        padding: 0;
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        pointer-events: none;
        transform: translateY(-50%);
        justify-content: space-between;
        z-index: 2;
    }

    :is(.📷🎠🧭👈, .📷🎠🧭👉){
        pointer-events: all;
    }

    :is(.📷🎠🧭👈, .📷🎠🧭👉) img{
        width: 8rem;
    }
}


/* DETAILS */
.📅{
    margin-bottom: 14.286%;
}

.📅 h2{
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: clamp(2.4rem, 5.3vw, 8rem);
}

.📅 dl>div{
    margin-top: 1.6rem;
    padding-top: 1.6rem;
    border-top: 0.1rem solid var(--color-green-25);
    text-align: center;
}

.📅 dl dt{
    font-family: var(--secondary-font);
    color: var(--color-orange);
    font-weight: 400;
    font-size: clamp(2.4rem, 6.858vw, 9rem);
    margin-bottom: 0.8rem;
}

.📅 dl dd{
    text-transform: uppercase;
    font-size: clamp(2.4rem, 5vw, 7.2rem);
    margin-bottom: 0;
    letter-spacing: -0.03em;
}

.📅💡{
    background-color: var(--color-green-10);
    display: flex;
    column-gap: 1.2rem;
    margin: 1.6rem 0 0;
    border-radius: 4rem;
    padding: 1.6rem 2.8rem;
    width: max-content;
    max-width: 100%;
    align-items: center;
    font-size: 1.6rem;
    text-transform: none;
    letter-spacing: 0;
    text-align: left;
}

.📅💡 img{
    width: 2.4rem;
    height: auto;
}

.📅✉️{
    margin-top: 1.6rem;
    padding-top: 1.6rem;
    border-top: 0.1rem solid var(--color-green-25);
    font-weight: 900;
    text-align: center;
    font-size: clamp(2.4rem, 4.4vw, 6rem);
    text-transform: uppercase;
}

.📅✉️ span{
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: clamp(2.4rem, 6.858vw, 9rem);
    color: var(--color-orange);
    text-transform: none;
    margin: 0 1.6rem 0 0.8rem;
}

.📅🎃{
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    white-space: nowrap;
    column-gap: 2.4rem;
    font-size: 1.6rem;
    line-height: 1;
    text-transform: uppercase;
    margin-top: 1.6rem;
}

.📅🎃::before,
.📅🎃::after{
    content: '';
    display: block;
    width: 100%;
    border-bottom: 0.1rem solid var(--color-green-50);
}

@media (min-width: 768px){
    .📅 dl>div{
        display: grid;
        grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
        margin-top: 3.2rem;
        padding-top: 3.2rem;
        text-align: left;
    }

    .📅 dl dt{
        padding-right: 3.2rem;
        margin-bottom: 0;
    }

    .📅 dl dd{
        padding-top: 1rem;
    }

    .📅💡{
        margin-top: 3.2rem;
    }

    .📅✉️{
        margin-top: 3.2rem;
        padding-top: 3.2rem;
    }

    .📅🎃{
        font-size: 2rem;
        margin-top: 3.2rem;
    }
}


/* RSVP */
.✉️{
    margin: 7.143% 0;
}

.✉️ button{
    all: unset;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: min(96rem, 90vh);
    position: relative;
    overflow: hidden;
}

.✉️🎼{
    display: block;
    width: 100%;
    animation: spin-counterclockwise 20s linear infinite;
}

.✉️🖼️{
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.✉️📤{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.✉️ button:is(:hover, :focus, :active) :is(.✉️📤, .✉️🖼️){
    opacity: 0.8;
}

.✉️🍭{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: none;
}

.✉️🍭.👁️{
    display: block;
}

.✉️🍭🖼️{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    opacity: 0.5;
}

.✉️🐒{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(calc(100vw - 5rem), 70rem);
    max-height: calc(100vh - 10rem);
    overflow: auto;
    background: var(--color-black);
    border: 0.1rem solid var(--color-green-50);
    padding: 1.6rem;
}

.✉️🐒 h2{
    text-transform: uppercase;
    font-size: clamp(2.4rem, 2.65vw, 3.6rem);
    margin-bottom: 1.6rem;
    text-align: center;
}

.✉️🐒 .mc-field-group{
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 1.6rem;
    column-gap: 1.6rem;
    margin-bottom: 1.6rem;
}

.✉️🐒 label{
    font-family: var(--secondary-font);
    color: var(--color-orange);
    font-size: clamp(2.4rem, 3.3vw, 4.8rem);
}

.✉️🐒 input:not([type="submit"]){
    appearance: none;
    border: 0.1rem solid var(--color-green-25);
    border-radius: 0;
    background-color: transparent;
    color: var(--color-green);
    transition: all 0.3s ease;
    height: 5.4rem;
}

.✉️🐒 input:not([type="submit"]):is(:focus){
    border-color: var(--color-green-50);
    outline: none;
}

.✉️🐒 input[type="submit"]{
    appearance: none;
    border: none;
    border-radius: 4rem;
    font-weight: 700;
    color: var(--color-black);
    background: var(--color-orange);
    text-transform: uppercase;
    padding: 1.6rem 3.2rem;
    cursor: pointer;
    margin: 3.2rem auto 0;
    display: block;
    transition: all 0.3s ease;
}

.✉️🐒 input[type="submit"]:is(:hover, :focus, :active){
    background: var(--color-green);
}

#mce-responses{
    margin-top: 1.6rem;
    text-align: center;
    font-size: 2rem;
}

@media (min-width: 768px){
    .✉️🐒{
        padding: 3.2rem;
    }

    .✉️🐒 h2{
        margin-bottom: 3.2rem;
    }

    .✉️🐒 .mc-field-group{
        grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
    }

    .✉️🐒 .mce_inline_error{
        grid-column: 2;
    }

    #mce-responses{
        margin-top: 3.2rem;
    }
}

@keyframes spin-counterclockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}


/* COPYRIGHT */
.🖊️👉{
    padding-top: 1.6rem;
    border-top: 0.1rem solid var(--color-green-50);
    margin-top: 7.143%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    column-gap: 3.2rem;
}

.🖊️👉::before,
.🖊️👉::after{
    content: '🎃💀🎄';
    display: block;
}

@media (min-width: 768px) {
    .🖊️👉{
        padding-top: 3.2rem;
    }
}