/*
    Copyright PRO TV S.A. All rights reserved.
    Contact: @protv.ro
*/
@import url("reset.css");
@import url("bootstrap.min.css");
@import url("onetrust.css");
/*
    GLOBAL STYLES
*/
:root {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    --background-color: #000;
    --main-font: "Roboto", sans-serif;
    --main-font-size: 1rem;
    --font-style-normal: normal;
    --font-weight-normal: 400;
    --selection-color: ;
    --block-margin: 20px;
    --block-padding: 40px;
    --h1-size: 2rem;
    --h2-size: 1.75rem;
    --h4-size: 1.5rem;
    --paragraph-size: 1.3rem;
    --heading-line-height: 1.45;
    --heading-letter-spacing: normal;
    --text-transform: uppercase;
    --white: #ffffff;
    --black: #000000;
    --color-60rule: #f9b48a;
    --color-30rule: rgb(14, 34, 126);
    --color-10rule: #c10304;
    --color-10rule-focus: rgb(63, 42, 187);
}

body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-track {
    background: var(--color-30rule);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--color-60rule);
    border-radius: 6px;
    border: 3px solid var(--color-60rule);
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: all 0.2s ease-in;
}

*:focus {
    outline: none !important;
    transition: all 0.2s ease-in;
}
html,
body {
    height: 100%;
    width: 100%;
}
body {
    scrollbar-width: thin;
    scrollbar-color: var(--color-10rule) var(--color-60rule) !important;
    overflow-x: hidden !important;
    overflow-y: auto;
    margin: 0;
    background-color: var(--color-10rule);
    font-family: var(--main-font);
    font-size: var(--main-font-size);
    font-style: var(--font-style-normal);
    font-weight: var(--font-weight-normal);
    color: var(--selection-color);
    width: 100%;
    min-height: 100%;
}

a {
    color: var(--white);
}
a:hover,
a:focus {
    color: var(--color-10rule);
}
nav {
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.navbar-brand svg {
    max-width: 150px;
    height: auto;
    width: 100%;
}

.navbar-brand img {
    max-width: 150px;
    height: auto;
    width: 100%;
}
.navbar-nav p {
    display: inline-block;
    padding: 0;
    margin: 0;
}

/* Header before navbar */
.container-box-partners {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .partner-box {
    flex: 1 1 300px; /* responsive sizing */
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

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

/* 
    GENERAL
*/
header,
footer {
    width: 100%;
    color: var(--white);
    margin: 0;
    padding: 1rem 0;
}
/* header {
    background-color: var(--color-10rule);
} */

header a:hover,
header a:focus {
    color: var(--color-30rule);
}

.kaufland-card {
    padding-right: 0;
    padding-left: 0;
}
.header-img {
    width: 750px;
    display: block;
    margin: 2rem auto 3rem;
}
.header-img-2023 {
    max-width: 700px;
}
.footer-img {
    margin: 1rem auto;
}
.container {
    max-width: 1200px;
}

.row-checkbox {
    padding-top: 20px;
    padding-bottom: 15px;
}

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

.text-center {
    text-align: center;
}

h1,
h2,
p {
    text-align: center;
    font-weight: var(--font-weight-normal);
    color: var(--white);
}

h1 {
    font-size: var(--h1-size);
    padding: var(--block-padding);
		text-shadow: #000 0px 0px 10px;
}
h2 {
    font-size: var(--h2-size);
    padding: var(--block-padding);
}
p {
    font-size: var(--main-font-size);
}

.premii {
    padding: 2rem 0;
}

/* 
    MODAL 
*/
.modal.show {
    display: block;
}
.modal-backdrop.show {
    display: block;
    opacity: 0.5;
}
.modal-backdrop.fade {
    opacity: 0;
    display: none;
}
body.modal-open .modal-backdrop {
    display: block;
    opacity: 0.5;
}
.modal-dialog {
    max-width: 500px;
    top: 50%;
    left: 0;
    position: relative;
    width: auto;
    pointer-events: none;
    transform: translate(0%, -50%) !important;
}
.modal-header {
    border-bottom: 0px;
}

/* Header Section */
.hero-section {
    background: url("../img/bg-vr-2025.png") no-repeat center center/cover;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Glassmorphism navbar */
.glass-navbar {
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255,255,255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); 
    padding: 0.7rem 2rem; 
    overflow: hidden;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  }

  .glass-navbar .nav-link {
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
    padding: .5em 1em;
  }

  .glass-navbar .nav-link.active {
    color: #ffcc99;
  }

  /* Hover underline effect */
  .glass-navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0%;
    height: 2px;
    background: #ffcc99;
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
  }

  .glass-navbar .nav-link:hover::after {
    width: 100%;
  }

  .glass-navbar .navbar-nav {
    flex-direction: row;
    text-align: center;
    margin: 0 auto;
  }

  .action-cta {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
    padding: 8px 16px;
    font-family: var(--main-font);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid #fc3c44;
    background: linear-gradient(to bottom, #C10304 0%, #970001 100%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.1),  
      inset 0 -1px 0 rgba(0,0,0,0.4),       
      inset 0 0 4px rgba(255,255,255,0.35), 
      0 1px 3px rgba(0,0,0,0.7);   
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    margin-bottom: 40px;
  }

  .action-cta:hover {
    background: linear-gradient(to bottom, #970001 0%, #C10304 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(230, 0, 0, 0.7);
    color: var(--white);
    text-decoration: none;
  }

.action-cta:active {
    box-shadow:
      inset 0 2px 4px rgba(0,0,0,0.5),
      inset 0 0 3px rgba(255,255,255,0.25),
      0 1px 2px rgba(0,0,0,0.6);
}

.hero-main-title {
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 35px;
}

.hero-main-title strong {
    color: #F9B48A;
}

/* 
    FORM
*/

.campaign-form {
    width: 100%;
    margin: 0 auto;
    display: block;
    background-color: #000;
    /* padding: 40px 0; */
    padding-bottom: 40px;
}

input.form-control,
textarea.form-control {
    border-radius: 0;
    box-sizing: border-box;
    padding: 0;
}
.custom-control {
    position: relative;
    display: inline-block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    /* margin-bottom: var(--block-margin); */
}
.custom-control-label {
    display: block;
    cursor: pointer;
}
.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-radius: 50%;
    border-color: var(--color-10rule);
    background-color: var(--color-10rule);
}
.custom-radio .custom-control-label::before {
    border-radius: 50%;
}
.custom-control-label::before,
.custom-file-label,
.custom-select {
    transition: background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-color: var(--color-10rule);
}
.custom-control-label::after {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}
.custom-control-label::before {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: var(--color-10rule) solid 1px;
}

.custom-control-description {
    font-size: 1.15rem;
    font-family: var(--main-font);
    line-height: 1.75;
    color: var(--white);
    margin-left: 60px;
    height: 60px;
    display: inline-block;
}

.custom-control-description a {
    color: var(--darker-blue);
}

#results {
    color: var(--color-60rule);
}

#text-errors {
    color: var(--color-10rule);
    padding: var(--block-margin) 0 0;
    font-size: 30px;
    padding: 20px 0;
}

.visuallyhidden {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.form-group label {
    position: relative;
    display: inline-flex;
    color: var(--white);
    font-family: var(--main-font);
    font-size: 1.15rem;
}

.form-control,
input.form-control {
    height: 60px;
    color: var(--white);
    border: 4px solid var(--color-60rule);
    background-color: var(--color-10rule);
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    letter-spacing: 0;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
}

textarea.form-control {
    height: 200px;
    color: var(--white);
    border: 4px solid var(--color-60rule);
    background-color: var(--color-10rule);
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    letter-spacing: 0;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
}
input.form-control:not(:placeholder-shown),
textarea.form-control:not(:placeholder-shown),
input.form-control:focus,
textarea.form-control:focus {
    border-color: var(--color-60rule);
    background-color: var(--color-60rule);
    outline: 0;
    color: var(--white);
    box-shadow: 0px 0px 10px 1px rgb(193 3 4 / 20%),
        0px 0px 15px 2px rgb(252 60 68 / 30%),
        0px 0px 10px 15px rgb(151 0 1 / 10%),
        0px 10px 5px 0px rgb(193 3 4 / 20%),
        inset -2px -2px 3px 0px rgb(151 0 1 / 0%);
}

.form-control::placeholder {
    color: white;
}

.submitButton {
    width: 100%;
    max-width: 300px;
    padding: 8px 16px;
    font-family: var(--main-font);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid #fc3c44;
    background: linear-gradient(to bottom, #C10304 0%, #970001 100%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.1),  
      inset 0 -1px 0 rgba(0,0,0,0.4),       
      inset 0 0 4px rgba(255,255,255,0.35), 
      0 1px 3px rgba(0,0,0,0.7);   
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.submitButton:hover {
    background: linear-gradient(to bottom, #970001 0%, #C10304 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(230, 0, 0, 0.7);
    color: var(--white);
}

.submitButton:active {
    box-shadow:
      inset 0 2px 4px rgba(0,0,0,0.5),
      inset 0 0 3px rgba(255,255,255,0.25),
      0 1px 2px rgba(0,0,0,0.6);
}

.info {
    font-family: var(--main-font);
    padding: 0;
    text-align: center;
    color: var(--white);
    font-size: calc(var(--h2-size) / 3);
}

.custom-control {
    position: relative;
    display: block;
    min-height: 60px;
    padding-left: 15px;
    margin-right: 1rem;
    cursor: pointer;
}

.custom-control-input {
    width: 60px;
    height: 60px;
    position: absolute;
    left: 0;
    z-index: -1;
    opacity: 0;
}

.custom-control-indicator {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border: 4px solid var(--color-60rule);
    background-color: var(--color-10rule);
    border-radius: 0;
    width: 60px;
    height: 60px;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: 70% 75%;
    background-size: 70% 75%;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-indicator {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1OCA1OCI+CiAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBmaWxsPSIjRkZGIiBkPSJtMzQgMjguOCAyMy41IDIzLjZjLjMuNC41IDEgLjUgMS41IDAgLjYtLjIgMS0uNSAxLjRsLTEuNiAxLjVjLS4zLjQtLjguNi0xLjMuNi0uNiAwLTEuMS0uMi0xLjUtLjZMMjkuNCAzMy4xIDYgNTYuOGMtLjUuNC0xIC42LTEuNi42LS41IDAtMS0uMi0xLjMtLjZsLTEuNi0xLjVjLjMtLjQtLjUtLjgtLjUtMS40IDAtLjYuOC0xIC41LTEuNWwyMy43LTIzLjZMMS40IDUuMmMuMy0uNC0uNS0xLS41LTEuNSAwLS42LjgtMSAuNS0xLjRMMyAuOGMuMy0uNC44LS41IDEuMy0uNS42IDAgMS4xLjEgMS42LjVsMjMuNSAyMy41TDUzLjEuOGMuNC0uNC45LS41IDEuNS0uNS41IDAgMSAuMSAxLjMuNWwxLjYgMS41Yy4zLjQuNS44LjUgMS40IDAgLjYtLjIgMS0uNSAxLjVMMzMuOSAyOC44WiIvPgo8L3N2Zz4K");

    border-color: var(--color-60rule);
    background-color: var(--color-60rule);
    box-shadow: 0px 0px 10px 1px rgb(193 3 4 / 20%),
        0px 0px 15px 2px rgb(252 60 68 / 30%),
        0px 0px 10px 15px rgb(151 0 1 / 10%),
        0px 10px 5px 0px rgb(193 3 4 / 20%),
        inset -2px -2px 3px 0px rgb(151 0 1 / 0%);
}

.content-formular {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px) saturate(180%);
        -webkit-backdrop-filter: blur(15px) saturate(180%);
        border: 1px solid rgba(255,255,255, 0.15);
}

.form-main-title,
.form-title {
    font-family: var(--main-font);
    font-size: var(--h2-size);
    color: var(--white);
    padding-bottom: 1em;
    padding-top: 1em;
}
#tapad_url {
		display: none;
		height: 0;
}

.navbar-brand-footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .item-footer {
    color: var(--color-10rule);
    font-weight: 700;
    font-family: var(--main-font);
}

footer .nav-link:hover,
footer .nav-link:focus,
footer .nav-link:active {
    color: #222222;
}

.navbar-brand-footer img {
    width: 100%;
    max-width: 100px;
    display: block;
}

.header-menu {
    display: flex;
    flex-direction: row;
    grid-gap: 20px;
}

.header-menu .castigatori-vr {
    text-transform: uppercase;
    color: white;
    font-weight: bold;
}

.header-menu .castigatori-vr:hover {
    color: var(--color-60rule);
    text-decoration: none;
}

.participa-acum {
    position: relative;
    margin: 0 auto;
    display: block;
    padding-bottom: 30px;
}

.weekly-prizes {
    background-color: #C10304;
    padding: 40px;
    border-radius: 40px;
    /* backdrop-filter: blur(8px); */
}

.weekly-prizes h3, .winners-vr h3 {
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.winners-vr h3 {
    padding-bottom: 20px;
}

.weekly-prizes p {
    font-size: 1.4rem;
    color: white;
    font-weight: bold;
    margin-bottom: 0;;
}

.winners-vr .winner-concurs {
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
    padding:10px 0;
    border-radius: 4px;
    border: 1px solid var(--color-60rule);
    margin-bottom: 10px;
}

.weekly-prizes ul {
    list-style-type: none;
    padding-bottom: 20px;
}

.weekly-prizes li {
    font-size: 1rem;
    color: white;
}

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

.img-prizes {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    grid-gap:20px;
}

.img-prizes p {
    font-size: 1rem;
    color: white;
    font-weight: normal;
}

.weekly-prizes p span {
    font-weight: lighter;
    font-size: .9rem;
}

.img-prizes img {
    display: block;
}

.kaufland-anv {
    padding-top: 40px;
}

.hero-paragraph {
    position: relative;
}

.second:hover,
.second:visited {
    color: var(--color-60rule);
}

.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.arrow span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 5px solid var(--color-10rule);
    border-right: 5px solid var(--color-10rule);
    transform: rotate(45deg);
    margin: -10px;
    animation: scroll 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -.2s;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

.mobile-view {
    display: none;
}

.premii-vr {
    background-color: var(--color-60rule);
    padding: 40px;
}

.winners-vr {
    background-color: #fc3c44;
    padding: 40px 0;
}

@media (min-width: 640px) {
    .premii {
        min-height: 40vh;
    }
    .main-headline {
        padding-top: var(--block-padding);
        min-height: 40vh;
    }
		.footer-img {
			max-width: 450px;
		}
}
@media (max-width: 500px) {
    .header-img-2023 {
        max-width: 200px;
    }

    .hero-paragraph {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .hero-main-title {
        font-size: 25px;
        line-height: 1.3;
        padding:40px 0;
    }

    .mobile-view {
        display: block;
    }

    .img-prizes {
        flex-direction: column;
    }

    .img-prizes img {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .weekly-prizes {
        padding-left: 0;
        padding-right: 0;
    }

    .premii-vr .container {
        padding-left: 0;
        padding-right: 0;
    }

    .img-prizes {
        flex-direction: column;
    }

    .img-prizes img {
        height: 100%;
    }

    .glass-navbar {
        padding: 15px 0;;
    }

    .glass-navbar .nav-link {
        font-size: .7em;
    }

    .campaign-form {
        padding-bottom: 0;
    }

    .content-formular {
        border-radius: 0;
    }

    .submitButton {
        margin: 40px auto;
    }

    .container-box-partners {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }
}
