




/* SECTION NAV ////////////////////////////////////// */

/* Style the wrapper to reserve space */
.navbar-wrapper {
    position: relative;
    z-index: 20;
    padding-block: 1rem; /* Gives breathing room */
}


.navbar-mobile {
    display: none;
}

.navbar-brand {
    width: 250px;
    height: 0;
    opacity: 0;
}

.navbar-brand img{
    max-width: 250px;
    text-align: center;
}

.navbar-nav {
    margin: 0 auto;
}

.menu-item  {
    font-weight: 900;
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
    margin-inline: 10px;
    text-align: center;
}
.menu-item:hover {
    color: var(--orange);
}

.navbar-toggler {
    position: absolute;
    right: 30px;
    top: 0;
    z-index: 100;
}

/*  SECTION HERO
////////////////////////////////////// */

#hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%; /* Ensure full width */
    margin-top: -80px;
    overflow: hidden;
}
.hero-bg {
    background-image: url('../images/hero_bg.jpg');
}


.parallax-wrapper {
    position: relative;
    overflow: hidden;
    height: 90dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: translateZ(0);
    will-change: transform;
}

.parallax-wrapper, .parallax-bg {
    height: 90dvh;
    min-height: 900px;
    max-height: 1200px;
    
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-top: 10%;
}

.hero-content a {
    text-align: center;
}

.hero-logo {
    width: 450px;
    max-width: 95%;

}

.hero-headline {
    width: 600px;
    max-width: 95%;
    /* margin-bottom: 10%; */
}

/* PRIZES */
.prizes-wrapper {
    /* position: absolute; */
    /* left: 10%; */
    /* transform: translateX(-50%); */
    margin-top: -40%;
    z-index: 40;
    width: 85%;
    max-width: 1200px;
}

.prize-item img {
    height: auto;
}

#prizes-mobile {
    display: none;
}
/* 
#main-prize {
    transform:translateX(5%);
} */



/*  SECTION RULES
////////////////////////////////////// */

#rules {
    margin-top: 0;
    padding-top: 5%;
    z-index: 10;
}

.prize-roundel {
    max-height: 420px;
}

.rule-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.rule-number {
    background: url('../images/prize_roundel_small.png') no-repeat center center;
    background-size: contain;
    font-size: 3rem;
    font-weight: 900;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.rule-text {
    font-size: 1.2rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    padding-inline: min(5%, 40px);
}


/*  SECTION CREATURES
////////////////////////////////////// */

#creatures {
    background: linear-gradient(191deg, #1B4287 8.18%, #10B4E7 93.91%);
    padding-bottom: 3%;
}

.main-title {
    margin-top: 25%;
}

.creatures-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.creature-wrapper {
    transition: 0.5s ease-in-out;
}

.creature-img {
    max-width: 350px;
    object-fit: contain;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.creature-img:hover {
    transform: scale(1.03);
}

.creature-name {
    background: none;
    border: none;
    border-bottom: 1px solid #fff;
    text-align: center;
    transition: 0.3s ease-in-out;
    padding: 10px;
    color: #fff;    
    font-weight: 800;
    font-size: 1.2rem;
}

.creature-name:focus-visible {
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}
.creature-name::placeholder {
    font-weight: 800;
    color: #ffffff6d;
}

.creature-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inactive {
    opacity: 0.3;
    filter: grayscale(70%);
    
}

/*  PLAN SELECTION  */

.plan-select {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}


.plan-wrapper {
    text-align: center;
    transition: 0.3s ease-in-out;
}
.plan-img {
    width:250px;
    max-width: 90%;
    height: auto;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.plan-img:hover {
    transform: scale(1.03);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.plan-wrapper p {
    text-align: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: #fff;
    margin-top: 10px;
}

.plan-selected {
    transform: scale(1.03);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.plan-inactive {
    opacity: 0.3;
    filter: grayscale(70%);
}



/*  SECTION FORM
////////////////////////////////////// */
/* Overall form wrapper */
#form {
    position: relative;
    padding-bottom: 12%;
    background: url('../images/bech_bg.webp') no-repeat top center;
    background-size: cover;
}

.orange-wave-svg {
    position: absolute;
    top: -20px;
    height: 200px;
    overflow: hidden;
    width: 100%;
    z-index: 50;
}

.winners-wrapper {
    padding-top: 80px;
    position: relative;
    height: 100%;
    min-height: 500px;
}


.form-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 5%;
    width: min(100%, 800px);
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: auto;
    padding-inline: min(8%, 20px);
}


.form-row {
    width: 100%;
}

/*  PLAN SELECTION  */
.form-plan {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.wpcf7-list-item  label {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
}


.form-row label {
    font-weight: 900;
    color: #fff;
    text-align: center;
}

.wpcf7-form-control-wrap {
    width: 100%;
    display: block;
}

.form-row p {
    margin-bottom: 0;
    max-width: 460px;
    margin: auto;
    text-align: center;
}

.form-row input {
    height: 45px;
    border: none;
    border-radius: 10px;
    padding: 0 10px;
    background: #fff;
    color: var(--blue);
    font-weight: 700;
    transition: 0.3s ease-in-out;
    max-width: 100%;
    box-shadow: 0px 5px 0 #10B4E7;
}

.form-row select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    height: 45px;
    border: none;
    border-radius: 10px;
    padding: 0 15px;
    background: #fff;
    color: var(--blue);
    transition: 0.3s ease-in-out;
    max-width: 100%;
    box-shadow: 0px 5px 0 #10B4E7;
    width: 100%;
}

.form-row input[type="date"] {
    width: 100%;
}

.form-row input:focus-visible {
    outline: none;
    background: #ade6f7;
    background-size: 400%;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0px 8px 0 #10B4E7;
}

.form-row textarea {
    border: none;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
    color: var(--blue);
    font-weight: 700;
    transition: 0.3s ease-in-out;
    max-width: 100%;
    box-shadow: 0px 5px 0 #10B4E7;
    transition: 0.3s ease-in-out;
}

.form-row textarea:focus-visible {
    outline: none;
    background: #ade6f7;
    background-size: 400%;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0px 8px 0 #10B4E7;
}

.row-file {
    margin-top: 20px;
}


.wpcf7 input[type="file"]::file-selector-button {
    appearance: none;
    border: none !important;
      background: url("../images/add-icon.png") no-repeat 45px 0 transparent;
        background-size: auto;
      background-size: 45px 45px;
      cursor: pointer;
      height: 60px;
      padding-left: 100px;
      padding-right: 20px;
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
      margin: 0;
      padding-bottom: 10px;
      color: #fff;
}

.wpcf7 input[type="file"] {
  border: none;
  background: none;
  box-shadow: none;
  color: #fff;
}
  

/* ACCEPTANCES */

.form-acceptances {
    margin-top: 20px;
    max-width: 470px;
    color: #fff;
    font-weight: 700;
}

.form-acceptances p {
    font-size: 0.8rem;
    line-height: 0.9rem;
    text-align: justify;
    position: relative;
    padding-left: 25px;
}

.form-acceptances input[type="checkbox"] {
    position: absolute;
    left: -30px;
    top: 0px;
    width: 15px;
    height: 15px;
    border-radius: 3px;  
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    background-color: #fff;
    color: var(--blue);
    box-shadow: 0px 2px 0 #10B4E7;
}


.form-acceptances input[type="checkbox"]:checked {
    background-color: var(--blue);
    color: #fff;
    
}
.form-acceptances input[type="checkbox"]:checked::before {
    content: "✔︎";
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    position: absolute;
}

.form-acceptances .wpcf7-list-item {
    position: relative;
    top: 0;
}

button.cta {
    border: none;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
}

.submit-wrapper p {
    text-align: center;
}

.submit-wrapper button:disabled {
    filter: grayscale(50%);
    cursor: not-allowed;
  }

/* CF7 RESPONSES */
/* Yellow error */
.wpcf7-not-valid-tip {
    background: rgb(177, 11, 11);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    margin-top: 7px;
    border-radius: 5px;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    background-color: #ffb900;
    border-radius: 10px;
}
/* Red error */
.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
    background-color: #dc3232;
    border-radius: 10px;
    color: #fff;
}

.wpcf7 form.sent .wpcf7-response-output {
    background-color: #46b450;
    border-radius: 10px;
    color: #fff;
}

.asterisk {
    max-width: 350px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
    color: #fff;
}

/* INAVIBE MESSAGES */

.before-start h4,
.end-date h4 {
    font-weight: 900;
    color: #fff;
    text-align: center;
    font-size: 1.5em;
}


/*  SECTION FOOTER
////////////////////////////////////// */
/* =============================== */
/* =============================== */


footer {
    position: relative;
    padding: 5% 8% 5px 8%;
    background: var(--dark-green);
    color: #fff;
    margin-top: -5%;
  }

.footer-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
}

.footer-wave svg {
    min-height: 450px;
    max-height: 450px;
}

.footer-content {
    position: relative;
    z-index: 100;
}

.footer-logo {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}


.contact-details {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 0;
    text-align: left;
    max-width: 750px;
}


.footer-menu {
    margin-bottom: 20px;
}

.footer-menu .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.copyright {
    text-align: center;
    font-size: 0.9rem;
}

.footer-image {
    position: absolute;
    bottom: 30px;
    left: 90%;
    width: 100%;
    max-width: 250px;
    margin: 0 0 0 0;
}



/* PAGE THANK YOU
////////////////////////////////////// */

#thank-you-section {
    background: url('../images/bech_bg.webp') no-repeat center top;
    background-size: cover;
    height: 100dvh;
    min-height: 1300px;
    max-height: 1500px;
    margin-top: -80px;
}

.thank-you-box {
    position: relative;
    background: #95e6ff;
    border-radius: 20px;
    padding: min(10%, 50px);
    box-shadow: 0px 5px 0 #042449;
    color: var(--blue);
}

.thank-you-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 0;
    text-transform: uppercase;
    margin-bottom: 20px;
}


.thank-you-box h4 {

    text-align: center;
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--blue);
}

.thank-you-img {
    position: absolute;
    max-width: 250px;
    height: auto;
}

.thanks-options {
    margin-top: 30px;
}

.thanks-options h5 {
    font-weight: 900;
    text-align: center;
    margin-top: 15px;
}

#thank-you-img-1 {
    left: -100px;
    top: -90px;
}

#thank-you-img-2 {
    right: -100px;
    bottom: -110px;
}


/* PAGE CONTACT
////////////////////////////////////// */

#contact {
    margin-top: -80px;
    min-height: 100dvh;
    padding-bottom: max(4%, 50px);
}

#contact-section {
    padding-top: 12%;
    padding-bottom: 12%;
    min-height: 100dvh;
}

.page-title h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 50px;
}

.contact-logo {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
}

/*  SECTION COOKIE BANNER /////////////////////////////// */

/* Overlay behind cookie banner */
#cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 9998;
    display: none;
    transition: all 0.3s ease;
}

.cmplz-cookiebanner.cmplz-show {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 9999 !important;
    max-width: 90%;
    width: auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    display: flex !important;
    flex-direction: column;
    justify-content: space-evenly;
    /* align-items: center; */
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    border-radius: 16px;
}

.cmplz-title {
    font-size: 1.5rem !important;
}

.cmplz-message {
    width: 95% !important;
}

.cmplz-categories {
    width: 100% !important;
}



/* SECTION MEDIA QUERIES   /////////////////////////////// */
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */


@media (max-width: 1950px) {
}

@media (max-width: 1300px) {
}

@media (max-width: 992px) {
    .navbar-desktop {
        display: none;
    }
    .navbar-mobile {
        display: block;
    }

    .offcanvas {
        background: linear-gradient(168deg, #22376C 16.45%, #1059A4 91.09%) !important;
        max-height: 400px;
        box-shadow: 0px 10px 30px #04244979;
    }

    .offcanvas .menu-item {
        text-align: center;
        /* padding-right: 10%; */
    }

    .btn-close {
        margin-top: 20px;
        color: #fff !important;
        position: relative;
    }

    .navbar-toggler {
        border: none;
        outline: none;
        margin-top: 20px;
        padding-bottom: 10px;
        background: var(--orange);
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 15px #8E5101 !important

    }
    .navbar-toggler-icon {
        background-image:none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .line {
        display: inline;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 65%;
        height: 4px;
        background: #fff; 
        transition: all 0.3s ease;
      }

        .line1 { top: 20%; }
        .line2 { top: 46%; }
        .line3 { top: 72%; }



    .btn-close:before{
        content: "X";
        position: absolute;
        right: 10%;
        top: 0;
        font-weight: 900;
        font-size: 1.5rem;
        color: #fff !important;
        top: 0;
        left: -1px
    }

    .offcanvas-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }

    .offcanvas-logo .navbar-brand {
        height: auto;
        opacity: 1;
    }
    
    /* HERO SECTION */


    #hero {
        margin-top: 0;
        height: 80dvh;
    }

    .hero-content {
        margin-top: 80px;
        display: flex;
    }



    .hero-sok {
        max-width: 300px;
    }

    #hero-sok-1 {
        right: 70%;
        bottom: 26%;
    }
    
    #hero-sok-2 {
        right: 66%;
        max-width: 300px;
        bottom: 55%;

    }
    
    #hero-sok-3 {
        left: 70%;
        bottom: 46%;
    }


    .orange-wave-top {
        bottom: 0
    }

    #rules {
        margin-top: 0;
    }



    /* FOOTER SECTION */
    .footer-image {
        display: none;
    }
}
@media (max-width: 768px) {

    .hero-text h1 {
        font-size: 5rem;
        line-height: 5rem;
        margin-bottom: 0;
    }

    .winners-tab {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        height: 90px;
    }

    #thank-you .hero-logo {
        width: 60%;
    }

    #thank-you-section {
        height: 90vh;
        min-height: 900px;
        margin-top: -80px;
    }

    #thank-you .parallax-bg {
        height: 90vh;
        min-height: 900px;
    }
    .thank-you-img {
        max-width: 150px;
    }

    #thank-you-img-1 {
        left: -20px;
    }

    #thank-you-img-2 {
        right: -20px;
    }

    .thank-you-title {
        font-size: 2rem;
    }

 
        .cmplz-cookiebanner.cmplz-show {
            top: 60% !important;
            transform: translate(-50%, -60%) !important;
            max-height: unset;
        }


}

@media (max-width: 576px) {
    .navbar-brand {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }

    .navbar-brand-img {
        max-width: 200px;
    }

    .cta {
        font-size: 1.2rem;
    }

    .wpcf7-form {
        max-width: 90%;
    }


    .parallax-wrapper, .parallax-bg {
        height: 80dvh;
        min-height: 750px;
        max-height: 800px;
        
    }


    #rules {
        margin-top: -40px;
    }

    .creature-img {
        max-width: 220px;
        margin: auto;
    }

    .prizes-mobile-wrapper {
        margin-top: -35%;
    }

    .prize-item {
        padding-inline: 15%;
        text-align: center;
    }

    #second-prize-mobile {
        width: 90%;
        margin-top: -20px;
    }

    #third-prize-mobile {
        width: 80%;
        margin-top: -20px;
    }

    .creature-wrapper {
        max-height: 300px;
    }

    .footer-wave svg {
        min-height: 550px !important;
    }

    #thank-you-section{
        margin-top: -80px;
    }

    #thank-you-section
    .parallax-wrapper,
    .parallax-bg  {
        height: 90dvh;
        min-height: 1100px;
        max-height: 1300px;
    }


}

@media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
  }