* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    background-color: #fdf5d6;
    font-size: 65.5%;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.bg_hero img {
    width: 100%;
    height: auto;
    /*object-fit: cover;*/
}

.bg_hero {
    position: relative;
}

/*.bg_hero::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 200px;*/
/*    pointer-events: none;*/
/*    background: #fdf5d6;*/
/*    filter: blur(20px);*/
/*    opacity: 0.9;*/
/*    z-index: 2;*/
/*}*/

.mb-100 {
    padding-bottom: 100px;
}

.hero-sec1 {
    background: #fdf5d6;
}

.hero-sec {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact_sec h1 {
    font-size: 4rem;
    color: #d2b67c;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-form {
    width: 100%;
    height: 100%;
    padding: 30px;
    background-color: #fff8e7;
    border-radius: 12px;
    border: 1px solid #d3b882;
    margin-top: 50px;
}

.form-group {
    margin-bottom: 30px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="file"] {
    width: 100%;
    padding: 17px 16px;
    font-size: 16px;
    border: 1px solid #d4b77d;
    border-radius: 6px;
    background-color: #fffdf6;
    color: #4d3c2d;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="file"]:focus,
input[type="text"]:focus-visible,
input[type="tel"]:focus-visible,
input[type="email"]:focus-visible,
input[type="file"]:focus-visible {
    border-color: #b38a4c;
    box-shadow: 0 0 0 3px rgba(212, 183, 125, 0.3);
    outline: none;
    background-color: #fffaf0;
}

input::placeholder {
    color: #a78c5f;
}

button {
    width: 100%;
    padding: 20px;
    margin-top: 30px;
    background-color: #d4b77d;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #c0a060;
}

.form-group label {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.form-group input[type="checkbox"] {
    margin-top: 5px;
}

@media (max-width: 767px) {
    .hero-sec {
        padding: 15px;
    }

    .contact-form {
        padding: 20px;
    }

    .hero-sec h1 {
        font-size: 28px;
        top: 20px;
    }
}

/*thank you title*/

.thank-you {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FDEBC5;
    height: 100vh;
    text-align: center;
}

.thank-you-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #c58c09;
}

.heart-icon {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
}

.thank-you h1 {
    font-size: 6.4rem;
    margin-bottom: 20px;
}

.thank-you p {
    font-size: 2.4rem;
}


/* Sorin */

.confirmare_box {
    margin-top: 20px;
    margin-bottom: 40px;
}

.confirmare_box label {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
}

.file-upload-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.file-upload-label {
    display: inline-block;
    border: 1px solid #d2b67c;
    width: 100%;
    color: white;
    text-align: center;
    text-transform: uppercase;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.6rem !important;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.file-upload-label:hover {
    background: #d2b67c;
}

.file-upload-wrapper input[type="file"] {
    display: none;
}

.file-name-preview {
    margin-top: 10px;
    font-size: 14px;
    color: #444;
}

.image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.image-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.confirmare_box {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.confirmare_box input[type="checkbox"] {
    accent-color: #a9905e;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.confirmare_box a {
    color: #a9905e;
    text-decoration: underline;
    transition: color 0.3s;
}

.confirmare_box a:hover {
    color: #a9905e;
}

.span__bon span{
    font-size: 1.4rem;
    font-weight: 600;
    color: red;
}

@media (max-width: 640px) {
    .contact_sec h1 {
        font-size: 3rem;
    }

    .confirmare_box label {
        font-size: 1.4rem;
        display: block;
    }
    input[type="text"], input[type="tel"], input[type="email"], input[type="file"]{
        padding: 10px 20px;
    }
    .contact-form{
        margin-top: 30px;
    }
}

@media (min-width: 641px) and (max-width: 1023px) {
    .confirmare_box label{
        display: block;
    }
}


@media (min-width: 1024px) and (max-width: 1365px) {
    .confirmare_box label{
        display: block;
    }
}


.alert {
    margin-top: 50px;
    font-size: 1.4rem;
}

.text-danger{
    margin-top: 10px;
    font-size: 1.4rem;
}

.tombola-header h1 span {
    color: #ec4899;
}

.tombola-header .intro {
    font-size: 1.8rem;
    text-align: center;
    color: #444;
    margin-bottom: 25px;
}

.tombola-header .instructions {
    text-align: left;
    background-color: #fff8e7;
    padding: 20px;
    font-size: 1.6rem;
    border-radius: 12px;
    border: 1px solid #fcd34d;
    margin: 0 auto;
}

.tombola-header .instructions ol {
    padding-left: 20px;
    margin-top: 10px;
}

.tombola-header .instructions li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.tombola-header .confirm {
    margin-top: 15px;
    color: #16a34a;
    font-weight: bold;
}

input[type='file']{
    margin-bottom: 15px;
}

.form-group span {
    font-size: 1.4rem;
    color: #666;
}
