@font-face {
    font-family: 'Laugh';
    src: url('/fonts/LaughingFont-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Duper';
    src: url('/fonts/Duper-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


body {
    background-image: url('/images/bg.png');
    background-repeat: repeat;
    background-size: auto;
    margin: 0;
    padding: 0;
    background-color: #E20613;
}


.navbar {
    font-family: 'MADEMellow', sans-serif;
}


.form-control, label {
    /*font-family: 'Laugh', sans-serif;*/
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Laugh', sans-serif;
}

p {
    font-family: 'Duper', sans-serif;
}

section {
    overflow-x: hidden;
}

.color-yellow {
    color: #ffcb00;
}

.color-red {
    color: #e32213;
}

.cta-yellow {
    background-color: #ffcb00;
    text-align: center;
    padding: 10px 20px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: bold;
    color: #e32213;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Laugh', sans-serif;
}

.cta-blue {
    background-color: #265597;
    text-align: center;
    padding: 10px 20px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-left: 10px;
    cursor: pointer;
    font-family: 'Laugh', sans-serif;
}

.btn-blue {
    background-color: #119ed9;
    text-align: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    font-family: 'Laugh', sans-serif;
}

/*desktop*/
@media (min-width: 769px) {
    .hero {
        margin-top: -150px;
    }

    .cta-desktop {
        display: flex;
    }

    .cta-mobile {
        display: none;
    }

    .mushroom-mobile {
        display: none;
    }
}


/*mobile*/

@media (max-width: 768px) {
    .hero {
        margin-top: 0;
    }

    .cta-mobile {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .cta-desktop {
        display: none;
    }

    .cta-yellow-mobile {
        background-color: #ffcb00;
        text-align: center;
        padding: 80px 20px 10px;
        border-radius: 8px;
        text-transform: uppercase;
        font-size: 24px;
        font-weight: bold;
        color: #e32213;
        align-items: center;
        justify-content: center;
        font-family: 'Laugh', sans-serif;
        margin-top: -80px;
        position: relative;
        z-index: 1;
    }

    .cta-mobile img {
        position: relative;
        z-index: 2;
    }

    .mushroom-desktop {
        display: none;
    }

    .prize-desktop {
        display: none;
    }


}


.box-products {
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 30px;
    color: #fff;
}

.box-steps {
    border-radius: 8px;
    border: 4px solid white;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    color: #fff;
}

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

.step p {
    margin-top: 10px;
    font-size: 16px;
}

.modal-content {
    background-image: url('/images/bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.modal-no {
    background-image: url('/images/bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px;
}

.modal-no .modal-header {
    border: none;
}

.modal-content.no-border .modal-header,
.modal-content.no-border .modal-body,
.modal-content.no-border .modal-footer {
    border: none;
}

.modal-header.text-center,
.modal-body.text-center {
    text-align: center;
}

.modal-footer.justify-content-center {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-si {
    background-color: #265597;
    color: white;
    text-transform: uppercase;
    font-family: 'Laugh', sans-serif;
    border-radius: 0;
    padding: 10px 20px;
}

.btn-si:hover {
    color: lightgray;
}

.btn-nao {
    background-color: white;
    color: #265597;
    text-transform: uppercase;
    font-family: 'Laugh', sans-serif;
    border-radius: 0;
    padding: 10px 15px;
}

.btn-nao:hover {
    color: black;
}

.form-container {
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-family: 'Duper', sans-serif;
}

.form-control {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0px;
    padding: 10px;
    width: 100%;
}

button[type="submit"] {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

.file-input {
    display: none;
}

.custom-file-upload {
    width: 100%;
    height: 50px;
    line-height: 50px;
    background-color: white;
    color: transparent;
    padding: 0 15px;
    cursor: pointer;
    display: block;
}

.file-input:focus + .custom-file-upload,
.file-input:valid + .custom-file-upload {
    color: black; /* Text vizibil */
}

.form-check-input {
    border-radius: 0 !important;
}

.error-message {
    color: #ffcb00;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

.participation-form label {
    color: white;
}

.img-responsive {
    width: 70%;
}

@media (max-width: 768px) {
    .img-responsive {
        width: 20%;
    }
}

@media (max-width: 768px) {
    .custom-me-4 {
        margin-right: 0 !important; 
    }
}
