/* Landing Page CSS */
@font-face {
    font-family: 'Value Sans Pro';
    src: url('value-sans-regular-pro.woff2') format('woff2'),
         url('value-sans-regular-pro.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Value Sans Pro';
    src: url('value-sans-bold-pro.woff2') format('woff2'),
         url('value-sans-bold-pro.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

*, *:before, *:after {
    box-sizing: border-box;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

html {
    height: 100%;
    background: #F2F0EC;
    color: #385645;
    padding: 0;
    margin: 0;
}
body {
    font-family: 'Value Sans Pro', sans-serif;
    font-size: 14px;
    min-height: 100%;
    color: #334639;
    padding: 0;
    margin: 0;
}
h1, h2, h3 {
    margin: 0;
}

p {
    line-height: 1.5;
    margin: 0;
}

a:not(.button) {
    color: #334639;
    text-decoration: none;
}

a:not(.button):hover {
    color: #48A345;
    text-decoration: underline;
}

img {
    max-width: 100%;
}
.page {
    text-align: center;


    display: flex;
    flex-flow: column;
    min-height: 100vh;
    min-height: 100dvh;
    align-items: stretch;
    justify-content: center;
    flex: 1;
}
.page .content {
    flex: 1 1 60%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    transition: all 0.25s;
    align-items: center;
    padding: 24px;
}
.page .content-inner {
    width: 276px;
    max-width: 100%;
}

.page .content h1,
.page .content h2,
.page .content h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-transform: lowercase;
    margin: 0;
}
.page .content .endota-logo {
    max-width: 100%;
    width: 256px;
    height: auto;
}
.page .content .sub-title {
    display: flex;
    justify-content: center;
    font-size: 10px;
    gap: 4px;
    text-transform: uppercase;
    align-items: center;
    margin: 4px auto 24px;
}


.page .content .buttons {
    display: flex;
    flex-flow: row;
    justify-content: center;
    gap: 12px;
    margin: 12px 0 0;
}

.button {
    display: inline-flex;
    background-color: #334639;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: lowercase;
    line-height: 1;
    border-style: none;
    display: block;
    color: #fff;
    border-radius: 48px;
    padding: 14px 24px;
    min-width: 132px;
}
.button:hover {
    background-color: #48A345;
}

.international {
    margin: 12px 0 0;
    display: flex;
    flex-flow: column;
    align-items: center;
}
.international details {
    position: relative;
    z-index: 10;
    margin-bottom: 16px;
}
.international details summary {
    cursor: pointer;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: transparent;
    gap: 8px;
    border: 2px solid #334639;
    color: #334639;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: lowercase;
    line-height: 1;
    border-radius: 48px;
    padding: 12px 40px 12px 24px; 
    width: auto;
    user-select: none;
    outline: none;
}

.international details summary::-webkit-details-marker {
    display: none;
}

.international details summary svg {
    height: 1em;
    width: 1em;
    transition: all 0.25s;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    outline: none;
}

.international details[open] summary svg {
    transform: translateY(-50%) rotate(180deg);
}
.international details > div {
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #F2F0EC;
    border-radius: 20px;
    box-shadow: 0 2px 2px rgba(0,0,0,0.1);
}
.international details > div ul {
    list-style: none;
    display: flex;
    flex-flow: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}
.international details > div ul li a {
   display: block;
   color: #334639;
   font-weight: 700;
   font-size: 14px;
   text-decoration: none;
   text-transform: lowercase;
}

.page .banner {
    flex: 1 1 40%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    background: url('endota-spa-banner.jpg') center no-repeat #ccc;
    background-size: cover;
    color: #fff;
    min-height: 40vh;
    min-height: 40dvh;
    position: relative;
    padding: 24px;
}



.page .banner .banner-title {
    text-transform: lowercase;
    font-size: 9vw;
    font-size: 9dvw;
    font-weight: bold;
    line-height: 1;

}

.page .banner .gift-cards {
    position: absolute;
    bottom: 24px;
    left: 24px; 
    right: 24px;
    text-align: center;
    margin: 0;
}

/* Desktop Break-point */
@media (min-width: 960px) {
    .page {
        flex-flow: row;
    }  
    .page .content {
        flex: 1 1 45%;
        padding: 40px 24px;
    }
    .page .content-inner {
        width: 420px;
    }
    .page .content h1,
    .page .content h2 {
        font-size: 24px;
    }
    .page .content .endota-logo {
        margin-bottom: 6px;
        width: 420px;
    }
    .page .content .sub-title {
        font-size: 16px;
        gap: 8px;
        margin-bottom: 48px;
    }
    .page .content h3 {
        font-size: 21px;
    }
    .page .content .buttons {
        margin-top: 16px;
    }
    .button {
        font-size: 20px;
        padding: 16px 24px;
        min-width: 192px;
    }
    .international details {
        margin-bottom: 40px;
    }
    .international details summary {
        font-size: 20px;
        padding: 14px 48px 14px 24px;
        
    }
    .international details summary svg {
        height: 20px;
        width: 20px;
    }
    .international details > div {
        border-radius: 26px;
    }
    .international details > div ul li a {
        font-size: 20px;
    }
    .international p {
        font-size: 16px
    }
    .page .banner {
        flex: 1 1 55%;
        padding: 40px 24px;
    }
    .page .banner .banner-title {
        font-size: 4.5vw;
        font-size: 4.5dvw;
    }

    .page .banner .gift-cards {
        font-size: 16px;
        bottom: 40px;
    }
}
