body, html {
    background-color: #000;
    padding: 0;
    margin: 0;
    font-family: var(--font1);
    line-height: 1.6;
    font-size: 18px;
    text-shadow: 2px 2px 5px #000;
    scroll-behavior: smooth;
}

.banner_container {
    z-index: 100;
    /*display: flex;*/
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    position: absolute;
    min-height: 3rem;
    top: 90px;
    width: 100%;

    /*background-color: #9ef8aa;*/
    /*background: linear-gradient(90deg, #9ef8aa, #387339, #9ef8aa);*/
}

.outside-banner-bottom {
    transform: rotate(180deg);
}

.outside-banner-top {
    transform: rotate(180deg);
}

.banner {
    padding: 0.75rem;
    position: relative;
    color: white;
    text-shadow: none;
    box-shadow: none;
    text-align: center;
    font-weight: bold;

    background: rgb(155, 201, 55);
    background: -moz-linear-gradient(90deg, rgba(155, 201, 55, 1) 0%, rgba(51, 128, 60, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(155, 201, 55, 1) 0%, rgba(51, 128, 60, 1) 100%);
    background: linear-gradient(90deg, rgba(155, 201, 55, 1) 0%, rgba(51, 128, 60, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9bc937", endColorstr="#33803c", GradientType=1);

    /*background: rgb(52, 128, 60);*/
    /*background: linear-gradient(90deg, rgb(158, 248, 170) 6%, rgb(56, 115, 57) 47%, rgb(158, 248, 170) 89%);*/
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

a {
    color: var(--color1);
}

a, a:hover {
    text-decoration: underline;
}

.fade_in {
    animation: fadeIn 3s ease;
    -webkit-animation: fadeIn 3s ease;
    -moz-animation: fadeIn 3s ease;
    -o-animation: fadeIn 3s ease;
    -ms-animation: fadeIn 3s ease
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

:root {
    --color1: #fff;
    --color2: #000;
    --color3: #0f0;
    --fs1: 3rem;
    --fs2: 1.6rem;
    --fs3: 1.15rem;
    --fs4: 1rem;
    --fs5: 0.875rem;
    --fs6: 0.7rem;
    --font1: "Arial Black", arial, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    /*--font2: "Courier Prime", monospace;*/
    --font2: American Typewriter, courier, consolas, mono;
    /*--page-border: 2px solid #e56e23*/
}

.annotation {
    color: red;
    background-color: #fff;
}

.video {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 56.25% 0 0 0;
}

.video__frame {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    /*border-right: var(--page-border);*/
    /*border-left: var(--page-border);*/

}

.section__container {
    position: relative;
    min-width: 100%;
    max-width: 100%;
    min-height: min(110vh, 1300px);
    display: flex;
    flex-flow: column wrap;
    justify-content: space-around;
    align-items: center;
    color: var(--color1);
    overflow: hidden;
}


.section__content {
    /*font-size: 1.25rem;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid white;
    border-radius: 8px;
    backdrop-filter: blur(6px) brightness(80%);
    -webkit-backdrop-filter: blur(6px) brightness(80%);

    max-width: 45ch;
    margin: 4rem 1rem;


    padding: 1rem;
    /*max-width: clamp(32rem, 65vw, 52rem);*/
    padding-top: clamp(2rem, 10vh, 3rem);
    padding-bottom: clamp(2rem, 10vh, 3rem);
    font-size: clamp(var(--fs4), 2.2vw, var(--fs3));


    z-index: 99;
    /*padding: 1rem;*/
    color: var(--color1);
    font-family: var(--font2);
    /*font-size: var(--fs4);*/

}

.section__content .title {
    font-weight: bold;
    font-size: var(--fs2);
    text-align: center;
    border-bottom: solid white 4px;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: none;
}

.section__background {
    display: block;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    box-sizing: border-box;
    margin: 0;
    width: 100%;
    height: 100%;
    /*border-left: var(--page-border);*/
    /*border-right: var(--page-border);*/
}

::selection {
    background-color: rgba(155, 201, 55, 0.79);
}

/*p::before {*/
/*    content: '"';*/
/*    font-size: 20px;*/
/*}*/

.section--first {
    /*border-top: var(--page-border);*/
}

/*body > .section__container:nth-of-type(1) {*/
/*    border-top: 2px solid white;*/
/*}*/


.section--last {
    /*border-bottom: var(--page-border);*/
}

.section__background-image {
    z-index: -1;
    filter: brightness(110%);
    /*-webkit-filter: brightness(200%);*/
    object-fit: cover;
    width: 100%;
    height: 100%;
    /*min-width: 50rem;*/
    /*object-position: right center;*/
}

.socials__icon {
    opacity: 0.4;
    width: 8rem;
    transition: opacity 0.15s ease-in;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem;
}

.socials__icon_container {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.socials__icon:hover {
    opacity: 0.65;
    transition: opacity 0.15s ease-in;
}

.site-title {
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: column nowrap;
}

.site-title__logo {
    max-width: 100%;
}

.site-title__logo::selection {
    background-color: transparent;
}

.vine_motif {
    max-height: 50px;
    object-fit: contain;
}

.newsletter__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 3rem;
}

.newsletter__form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.newsletter__form__email-field {
    max-width: 100%;
    min-width: 100%;
    font-size: var(--fs5);
    color: var(--color1);
    border-style: solid;
    border-color: var(--color1);
    border-width: 2px;
    font-weight: 700;
    padding: 1rem;
    margin: .5rem;
    background-color: transparent;
    border-radius: 1rem;
    transition-duration: 0.15s;
    transition-timing-function: ease-in;
    transition-delay: 0s;
    transition-property: opacity;
    opacity: 0.6;
}

.newsletter__form__email-field:focus {
    opacity: 1;
}

.newsletter__form__submit {
    border-style: solid;
    border-color: var(--color1);
    border-radius: 1rem;
    border-width: 0.25rem;
    color: var(--color1);
    height: fit-content;
    font-size: var(--fs3);
    font-family: var(--font1);
    font-weight: 700;
    padding: 1rem;
    margin-top: 1rem;
    /*background-color: transparent;*/
    cursor: pointer;
    text-shadow: rgb(0, 0, 0) 0px 1px 0px;
    width: 100%;
}

.newsletter__form__submit:hover {
    opacity: 0.8;
    /*transition-duration: 0.15s;*/
    /*transition-timing-function: ease-in;*/
    transition-delay: 0s;
    transition-property: opacity;
}

.footer__vine_motif {
    display: flex;
    transform: rotate(180deg);
    justify-content: center;
    margin-top: 4rem;
    width: 100%;
}

.csa_checkout__form {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.csa_checkout__age_verification {
    font-size: var(--fs5);
    font-family: var(--font1);
    font-weight: normal;
    line-height: 1;
    text-align: center;
}

.youtube-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.youtube-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.button {
    margin: auto;
    text-decoration: none;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    height: fit-content;
    font-size: var(--fs3);
    font-family: var(--font1);
    font-weight: bold;
    padding: 1rem;
    /*margin: 1rem;*/
    max-width: 20rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border-style: solid;
    transition: all 0.5s ease;
    cursor: pointer;
    text-shadow: 0 1px 0 black;
    border-width: 2px;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);

    /* Standard property for other supporting browsers */
    backdrop-filter: blur(10px);
}


.button-not-live {
    position: relative;
    opacity: 0.6;
    cursor: not-allowed;
    margin: auto;
    text-decoration: none;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    height: fit-content;
    font-size: var(--fs3);
    font-family: var(--font1);
    font-weight: bold;
    padding: 0.5rem;
    /*margin: 1rem;*/
    max-width: 20rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border-style: solid;
    transition: all 0.5s ease;
    text-shadow: 0 1px 0 black;
    border-width: 2px;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);

    /* Standard property for other supporting browsers */
    backdrop-filter: blur(10px);
}

.button-not-live::before {
    content: "Opens Oct. 1st"; /* Text to display on the banner */
    position: absolute;
    border-radius: 2px;
    top: 4.5rem;
    right: 2.75rem;
    background-color: red; /* Banner background color */
    color: white; /* Banner text color */
    padding: 5px 30px; /* Adjust based on your needs */
    transform: translate(50%, -60%) rotate(35deg); /* Adjust for banner's position and angle */
    transform-origin: top right;
    /* Additional styling for the banner text */
    font-size: var(--fs5); /* Adjust based on your needs */
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: Adds shadow for better visibility */
}

.button:hover {
    opacity: 0.8;
    transition: all 0.5s ease;
    scale: 1.15;
    text-decoration: none;
}

.button:disabled {
    cursor: initial;
    opacity: 50%;
}

.button::before {
    content: "Early-bird price!"; /* Text to display on the banner */
    position: absolute;
    border-radius: 2px;
    top: 4.5rem;
    right: 2.75rem;
    background-color: rgb(238, 63, 47); /* Banner background color */
    color: white; /* Banner text color */
    padding: 5px 20px; /* Adjust based on your needs */
    transform: translate(50%, -60%) rotate(35deg); /* Adjust for banner's position and angle */
    transform-origin: top right;
    /* Additional styling for the banner text */
    font-size: var(--fs5); /* Adjust based on your needs */
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: Adds shadow for better visibility */
}

.button.not-live {
    opacity: 0.6;
    cursor: not-allowed;
}

.button.not-live:hover {
    transition: none;
    opacity: 0.6;

}


.squiggly-border-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='10' viewBox='0 0 20 10'><path d='M0 10 Q 10 0 20 10' fill='none' stroke='white' stroke-width='1'/></svg>") repeat-x;
    background-size: 20px 10px;
    background-position: bottom; /* position it at the bottom */
    padding-bottom: 6px; /* provide some spacing for the squiggly line */
    z-index: 100;
    pointer-events: none;
}

.squiggly-border-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /*background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M0 0 Q 5 10 10 0' fill='white' stroke='white' stroke-width='1'/></svg> ") repeat-x;*/
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='10' viewBox='0 0 20 10'><path d='M0 0 Q 10 10 20 0' fill='none' stroke='white' stroke-width='1'/></svg> ") repeat-x;
    background-size: 20px 10px;
    background-position: top; /* position it at the bottom */
    padding-top: 6px; /* provide some spacing for the squiggly line */
    z-index: 100;
    pointer-events: none;
}

.nav-bar {
    z-index: 101;
    display: flex;
    border: solid white 1px;
    border-radius: 1px;
    position: fixed;
    left: 5px;
    top: 5px;
    gap: 1.25rem;
    justify-content: space-evenly;
    background: rgba(255, 255, 255, 0.15);
    text-shadow: none;

    /* Vendor prefix for WebKit-based browsers */
    -webkit-backdrop-filter: blur(10px);

    /* Standard property for other supporting browsers */
    backdrop-filter: blur(10px);
}

.nav-item {
    /*flex: 1;*/
    padding: 0.5rem
}


.nav-item a {
    /*font-size: 1.15rem;*/
    font-size: 1rem;
    font-weight: bold;
    font-family: var(--font2);
    color: white;
    text-decoration: none;

}

.nav-item a:hover {
    text-decoration: none;
    opacity: 0.8;
}

ul {
    list-style-type: square;

}


#Saison {
    position: relative;
}

/*.corner-ribbon {*/
#Saison::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px; /* Adjust as needed */
    width: 50px; /* Diameter of the circle */
    height: 50px; /* Diameter of the circle */
    z-index: 10;
    background-image: url("data:image/svg+xml,%0A%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 122.88 122.88' style='enable-background:new 0 0 122.88 122.88' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st0%7Bfill-rule:evenodd;clip-rule:evenodd;fill:%23ffffff;%7D%3C/style%3E%3Cg%3E%3Cpath class='st0' d='M61.44,0l13.52,10.99l17.2-2.76l6.21,16.28l16.28,6.21l-2.76,17.2l10.99,13.52l-10.99,13.52l2.76,17.2 l-16.28,6.21l-6.21,16.28l-17.2-2.76l-13.52,10.99l-13.52-10.99l-17.2,2.76l-6.21-16.28L8.23,92.16l2.76-17.2L0,61.44l10.99-13.52 l-2.76-17.2l16.28-6.21l6.21-16.28l17.2,2.76L61.44,0L61.44,0z M61.44,39.54l6.34,15.49l16.69,1.24L71.7,67.09l3.98,16.26 l-14.23-8.81l-14.23,8.81l3.98-16.26L38.41,56.27l16.69-1.24L61.44,39.54L61.44,39.54z M61.44,26.71 c19.18,0,34.73,15.55,34.73,34.73c0,19.18-15.55,34.73-34.73,34.73S26.71,80.62,26.71,61.44C26.71,42.26,42.26,26.71,61.44,26.71 L61.44,26.71z'/%3E%3C/g%3E%3C/svg%3E");

}


/* medium sized screen */

@media screen and (max-width: 1650px) {
    #video {
        scroll-margin-top: 55px;
    }


    .nav-bar {
        left: 0;
        top: 0;
        margin: 0;
        gap: 0.25rem;
        /*flex-direction: column;*/
        width: 100%
    }

    .nav-item {
        padding: 0.5rem
    }

    .nav-item a {
        font-size: 1.15rem;
    }
}

/* Positioning the images and adjusting their brightness - some are really dark otherwise*/

#schedule_img.section__background-image {
    object-position: 25% center;
    filter: brightness(120%) !important;
}

#newsletter_img.section__background-image {
    object-position: 75% bottom;
    filter: brightness(170%) !important;
}

#saison_img.section__background-image {
    object-position: 90% center;
}

#csa_img.section__background-image {
    object-position: 25% center;
}

#pre-order_img.section__background-image {
    object-position: 25% center;
}

#_img.section__background-image {
    object-position: 25% 50%;
}


/* very small screens/mobile */

@media screen and (max-width: 500px) {
    .nav-bar {
        top: 0;
        left: 0;
        margin: 0;
        gap: 0.1rem;
        /*flex-direction: column;*/
        width: 100%
    }

    #Saison::before {
        height: 40px;
        width: 40px;
    }

    /*.section__content {*/
    /*border: none;*/
    /*backdrop-filter: none;*/
    /*}*/
    /*.section__background {*/
    /*    filter: brightness(70%);*/
    /*}*/
    .nav-item {
        padding: 0.45rem
    }

    .nav-item a {
        font-size: 16px;
    }

    .banner {
        font-size: var(--fs5);
    }
}

/* stop using magic numbers here! */
@media screen and (max-width: 392px) {


    /*.section__background-image {*/
    /*    background-position: top right; !* Focuses on the top-left part on smaller screens *!*/
    /*}*/
    .nav-bar {
        top: 0;
        left: 0;
        margin: 0;
        gap: 0.1rem;
        /*flex-direction: column;*/
        width: 100%
    }

    /*#Saison::before {*/
    /*    top: -40px;*/
    /*}*/
    .newsletter__form__email-field {
        max-width: 85%;
        min-width: 85%;
    }

    .newsletter__form__submit {
        width: 85%;
    }

    /*.section__background {*/
    /*    filter: brightness(70%);*/
    /*}*/
    /* leave the blurred frame on all sizes */
    /*.section__content {*/
    /*    border: none;*/
    /*    backdrop-filter: none;*/
    /*    -webkit-backdrop-filter: none;*/
    /*    margin-left: 0;*/
    /*    margin-right: 0;*/
    /*    padding: 0.5rem;*/
    /*}*/
    .nav-item {
        padding: 0.45rem
    }

    .nav-item a {
        font-size: 16px;
    }

    .banner {
        font-size: var(--fs6);
    }
}

/* stop using magic numbers here too! */
@media screen and (max-width: 352px) {
    .nav-item a {
        font-size: 14px;
    }
}

/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
