:root {
    --menu-width: 40.5em; /* Width of menu */
    --items: 4; /* Number of items you have */
    --item-width: calc(var(--menu-width) / var(--items));
    --dark: #050608;
    --light: #ffffff;
    --primary: #DDB967;
    --rounded: 100vw;
}

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

body {
    margin: 0;
    padding: 0;
    font-family: 'League Spartan';
    height: auto;
    width: 100vw;
    overflow-y: auto; /* Permite scroll vertical automat când conținutul depășește ecranul */
    overflow-x: hidden; /* Ascunde scroll-ul pe orizontală */
}

body.menu-open {
    background-color: black; 
}

.bottom-container {
    grid-area: 4 / -3 / 4 / 3;
    padding-top: 1.5em;
    color: #3a5260;
    font-weight: 500;
}

.top-container {
    grid-area: 1 / -3 / 1 / 3;
    margin: 0 0 2em 0;
}

.bottom-container a {
    float: right;
    background: linear-gradient(90deg, #8ea4b166, #a3b5bf6b);
    padding: 0.5em 1em;
    border-radius: 100px;
    position: absolute;
    color: #2c4655bf;
    font-weight: bold;
    text-decoration: none;
    right: 1.5em;
    bottom: 1.5em;
}

.bottom-container a:hover {
    background: linear-gradient(90deg, #8ea4b136, #a3b5bf33);
}

.box {
    margin: 0 0 3em 0;
}

.icon.big i {
    font-size: 1.25em;
    top: 0.2em;
}
nav .menu-item.highlight:hover ~ #sub-menu-container #sub-menu-holder #sub-menu-bottom { opacity: 1; }

.hidden {
    display: none;
}

.short {
        height: 0vh;
        display: flex;
        background-color: white;
        
}
    
.button-5:hover,
.button-5:focus {
    background-color: #fb8332;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}
    
.button-5:hover {
    transform: translateY(-1px);
}
    
.button-5:active {
    background-color: #c85000;
    box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
    transform: translateY(0);
}

#info-box {
    width: 100%;
    height: 86vh;
    position: relative; /* Necesită pentru pseudo-element */
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}

#info-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/home.webp'); /* Înlocuiește cu calea reală */
    background-size: cover;
    background-position: center;
    filter: brightness(50%);
    z-index: -5; /* Mută imaginea în spate, astfel încât textul să fie vizibil */
    opacity: 0.9;
    pointer-events: none;
}

#info-box p {
    padding-top: 8%;
    color: white;
    font-size: 54px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 1; /* Asigură-te că textul este deasupra imaginii */
    margin-bottom: 20px;
}

.button-28 {
    z-index: 1;
    appearance: none;
    background-color: transparent;
    border: 3px solid black;
    border-radius: 15px;
    box-sizing: border-box;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-height: 60px;
    min-width: 0;
    outline: none;
    padding: 16px 24px;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: auto;
    will-change: transform;
}
    
.button-28:disabled {
    pointer-events: none;
}
    
.button-28:hover {
    color: #DDB967;
    background-color: black;
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
}
    
.button-28:active {
    box-shadow: none;
    transform: translateY(0);
}

#about{
    padding-top: 5%;
    flex-direction: column;
    display: flex;
    z-index: 1;
    background-color: white;
    height: auto;
    width: 100%;
    justify-content: center;
    align-items: center;
}

#about-info{
  padding-top: 5%;
  flex-direction: column;
  display: flex;
  z-index: 1;
  background-color: #fcf7e6;
  height: auto;
  width: 100%;
  justify-content: center;
  align-items: center;
}

#about .info{
    text-align: center;
    margin-left: 30%;
    margin-right: 30%;
}

#about-info .info2{
  text-align: center;
  margin-left: 20%;
  margin-right: 20%;
  margin-bottom: 5%;
}

#about .info h1{
    font-size: 40px;
    padding-bottom: 7%;
}

#about-info .info2 h1{
  color: #f4680a;
  font-size: 75px;
  padding-bottom: 5%;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-weight: bold;
}

#about .info p{
    font-size: 21px;
    font-weight: 300;
}

#about-info .info2 p{
  font-size: 21px;
  font-weight: 300;
}

.info-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 11px 26px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.info-cta::after {
  content: "→";
  font-size: 1rem;
  line-height: 1;
}

.info-cta:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: translateY(-2px);
}

#about .viziune{
    margin-top: 8%;
    text-align: center;
    margin-left: 30%;
    margin-right: 30%;
}

#about .viziune h1{
    font-size: 40px;
}

#about .icons{
    display: flex;
    width: 100%;
    padding-left: 13%;
    padding-right: 13%;
    font-size: 19px;
    font-weight: 300;
}

#about .icons .icon1{
    margin: 3%;
    height: 50vh;
    width: 33.3%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
    text-align: center;
}

#about .icons .icon1 .fa-solid, .fas {
   font-size: 80px;
}

#about .icons .icon1 p{
    padding: 15%;
    padding-top: 10%;
}

#about .icons span{
    color: #DDB967;
}

#about .icons .icon2{
    margin: 3%;
    height: 50vh;
    width: 33.3%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
    text-align: center;
}

#about .icons .icon2 .fa-solid, .fas {
    font-size: 80px;
 }

#about .icons .icon2 p{
    padding: 15%;
    padding-top: 10%;
}

#about .icons .icon3{
    margin: 3%;
    height: 50vh;
    width: 33.3%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
    text-align: center;
}

#about .icons .icon3 .fa-solid, .fas {
    font-size: 80px;
 }

#about .icons .icon3 p{
    padding: 15%;
    padding-top: 10%;
    padding-left: 8%;
    padding-right: 8%;
}

#video {
    width: 100%;
    height: 80vh;
    position: relative; /* Necesită pentru pseudo-element */
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0;
}

#video .youtube{
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 9;
    z-index: 1;
}

#youtubeVideo {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

#video .text {
    max-width: 600px;
    text-align: left;
    width: 100%;
    margin-left: 5%;
    z-index: 1;
}

#video .text h1{
    font-size: 45px;
    color: #DDB967;
    padding-bottom: 7%;
}

#video .text h2, h3{
    color: white;
    line-height: 30px;
    padding-bottom: 2%;
    font-size: 27px;
}

#video .text h4{
    padding-top: 7%;
}

#video .text a{
    font-size: 18px;
    text-decoration: none;
    color: rgb(223, 218, 218);
}

#video .text a:hover{
    color: #DDB967;
    box-shadow: rgba(0, 0, 0, 0.25);
    font-size: 17px;
    transform: translateY(-3px);
}

#video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/video.webp'); /* Înlocuiește cu calea reală */
    background-size: cover;
    background-position: center;
    filter: brightness(50%);
    z-index: -1; /* Mută imaginea în spate, astfel încât textul să fie vizibil */
    opacity: 0.95;
}

#spatiu-nou #video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/bkg-spatiu.webp'); /* Înlocuiește cu calea reală */
    background-size: cover;
    background-position: center;
    filter: brightness(50%);
    z-index: -1; /* Mută imaginea în spate, astfel încât textul să fie vizibil */
    opacity: 0.95;
}

#formular{
    margin: 0;
}

#formular .container {
    display: flex;
    height: 90vh;
    width: 100%;
}

#formular .left .donation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

#formular .left .currency-selection, .amount-selection {
    display: flex;
    flex-direction: column;
}

#formular .left h3 {
    color: black; /* Culoare galbenă pentru titlu */
    margin-bottom: -10px;
}

#formular .left .moneda{
    display: flex;
    margin-top: 1%;
}

#formular .left .currency-option {
    display: flex;
    align-items: center;
    padding-left: 3%;
    gap: 10px;
    color: #444;
    cursor: pointer;
    font-size: 19px;
    font-weight: 500;
}

#formular .left .currency-option input {
    display: none;
}

#formular .left .custom-radio {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 5px;
    text-align: center;
    line-height: 20px;
    font-size: 18px;
    color: white;
    background-color: white;
    transition: 0.3s;
}

#formular .left .currency-option input:checked + .custom-radio {
    background-color: #fb8332;
    border-color: #fb8332;
    color: white;
}

#formular .left .custom-amount {
    color: #bbb;
    border-color: #ddd;
    cursor: not-allowed;
}

#formular .amount-selection {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

#formular .amount-option {
    margin-left: 3%;
    background: white;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 40px;
    text-align: center;
    position: relative;
    font-size: 16px;
}

#formular .amount-option.selected, .amount-option:hover {
    background-color: #fb8332;
    color: white;
    border-color: #fb8332;
}

/* Stil pentru containerul "Altă sumă" */
#formular .custom-amount {
    position: relative;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px; /* Lățime fixă pentru buton */
}

/* Stil pentru textul suprapus */
#formular .custom-placeholder {
    position: absolute;
    left: 50%;
    font-size: 13px;
    transform: translateX(-50%);
    color: rgba(0, 0, 0, 0.6);
    pointer-events: none; /* Nu afectează interacțiunile */
    transition: opacity 0.2s ease-in-out;
}

/* Input-ul pentru suma personalizată */
#formular .custom-input {
    width: 100%;
    padding: 10px;
    border: none;
    background: transparent;
    text-align: center;
    outline: none;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: bold;
    z-index: 2;
}

#formular .custom-amount span {
    font-size: 13px;
    font-family: Arial, Helvetica, sans-serif;
}

/* Ascunde textul "Altă sumă" când se introduce un număr */
#formular .custom-input:focus + .custom-placeholder,
#formular .custom-input:not(:placeholder-shown) + .custom-placeholder {
    opacity: 0;
    visibility: hidden;
    font-size: 17px;
}


#formular .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    -webkit-animation-name: left;
            animation-name: left;
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
}

#formular .right {
    flex: 1;
    background-image: url('img/video.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: 1.5s;
}

#formular .header-form{
    background-color: white;
    display: flex;
    flex-direction: column;
}

#formular .header-form > h2 {
    margin: 0;
    color: black;
}

#formular .header-form > h4 {
    margin-top: 10px;
    font-weight: 800;
    font-size: 19px;
    color: rgba(0, 0, 0, 0.4);
    padding-bottom: 10%;
}

#formular .form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

#formular .form > p {
    text-align: left;
    font-weight: bold;
}

#formular .form > p > a {
    color: #000;
    font-size: 11px;
}

#formular .form-field {
    width: 70%;
    height: 46px;
    padding: 0 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    outline: 0;
    transition: 0.2s;
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #444;
    font-weight: bold;
}

#formular .form-field:focus {
    border-color: black;
}

.drop {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 270px;
}

/* Stil pentru titlu */
.drop p {
    font-weight: bold;
    margin-bottom: 5px;
}

/* Containerul dropdown-ului */
.drop .custom-dropdown {
    position: relative;
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Adaugă o săgeată la dreapta */
.drop .custom-dropdown::after {
    content: ">";
    font-size: 17px;
    color: #444;
    position: absolute;
    right: 15px;
    transform: rotate(90deg);
}

/* Lista de opțiuni */
.drop .dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: none; /* Ascuns implicit */
    z-index: 10;
}
.drop .dropdown-selected{
    font-size: 17px;
}
/* Opțiunile dropdown-ului */
.drop .dropdown-item {
    padding: 10px;
    font-size: 17px;
    font-weight: bold;
    color: #444;
    transition: 0.3s;
}

.drop .dropdown-item:hover {
    background: #f5f5f5;
}

#formular .email-label {
    font-weight: bold;
    color: black; /* Text normal */
    position: relative;
    display: inline-block;
}

#formular .required-star {
    color: red;
    font-size: 16px;
    font-weight: bold;
    display: none; /* Ascuns implicit */
    position: absolute;
    top: 0;
    left: 50px;
}

#formular .form-field.error {
    border: 2px solid red !important;
}

#formular .email-label.error {
    color: red !important;
}

#formular .required-star.show {
    display: inline-block !important;
}


/* Arată meniul când este activ */
.drop .custom-dropdown.active .dropdown-options {
    display: block;
}

#formular .form > button {
    width: 20%;
    padding: 12px 10px;
    border: 0;
    background-color: #fb8332;
    border-radius: 3px;
    margin-top: 7%;
    color: #fff;
    letter-spacing: 1px;
    cursor: pointer;
}

#formular .animation {
    background-color: white;
    -webkit-animation-name: move;
            animation-name: move;
    -webkit-animation-duration: 0.4s;
            animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;

}

#formular .a1 {
    background-color: white;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
}

#formular .a2 {
    background-color: white;
    -webkit-animation-delay: 2.1s;
            animation-delay: 2.1s;
}

#formular .a3 {
    -webkit-animation-delay: 2.2s;
            animation-delay: 2.2s;
}

#formular .a4 {
    -webkit-animation-delay: 2.3s;
            animation-delay: 2.3s;
}

#formular .a5 {
    -webkit-animation-delay: 2.4s;
            animation-delay: 2.4s;
}

#formular .a6 {
    font-size: 14px;
    font-weight: bold;
    color: #444;
    -webkit-animation-delay: 2.5s;
            animation-delay: 2.5s;
}

@-webkit-keyframes move {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes move {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@-webkit-keyframes left {
  0% {
    opacity: 0;
    width: 0;
  }
  100% {
    opacity: 1;
    padding: 20px 40px;
    width: 440px;
  }
}
@keyframes left {
  0% {
    opacity: 0;
    width: 0;
  }
  100% {
    opacity: 1;
    padding: 20px 40px;
    width: 740px;
  }
}

#footer-mobile{
    display: none;
}

/* Footer base styling */
#footer {
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

#footer .left,
#footer .logo,
#footer .rigth {
    flex: 1;
    min-width: 250px;
}

#footer h1 {
    font-size: 25px;
    color: #f0c057;
    margin-bottom: 15px;
}

#footer .left .social a {
    color: #ddd;
    font-size: 20px;
    margin: 0 10px;
    transition: 0.3s;
    text-decoration: none;
}
#footer .rigth .social a {
    color: #ddd;
    font-size: 30px;
    margin: 0 10px;
    transition: 0.3s;
    text-decoration: none;
}

#footer .social a:hover {
    color: #f0c057;
}

#footer .logo img {
    max-width: 170px;
    height: auto;
}

#bottom{
    width: 100%;
    background-color: black;
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: rgb(118, 117, 117);
    font-size: 12px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding-bottom: 2%;
}

._failed {
  border-bottom: solid 4px red !important;
}
._failed i {
  color: red !important;
}

._success {
  box-shadow: 0 15px 25px #00000019;
  padding: 45px;
  width: 100%;
  text-align: center;
  margin: 40px auto;
  border-bottom: solid 4px #28a745;
}

._success i {
  font-size: 55px;
  color: #28a745;
}

._success h2 {
  margin-bottom: 12px;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 10px;
}

._success p {
  margin-bottom: 0px;
  font-size: 18px;
  color: #495057;
  font-weight: 500;
}

#mobile-menu {
    display: none;
}

.mobile-text{
    display: none;
}

#container2{
    display: none;
}

.contact-continut {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: url('img/map.webp') center center/cover no-repeat; /* imaginea de fundal */
  }
  
  .contact-continut::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Efect fumuriu pe tot div-ul */
    z-index: 1;
  }
  
  .contact-continut .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
  }
  
  .contact-continut .info, .contact-continut .formular {
    flex: 1 1 50%;
    color: white;
    z-index: -1;
  }
  
  .contact-continut-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 50%;
    margin: 0 auto;
    z-index: 1;
    border-radius: 10px;
  }
  
  .contact-continut-info {
    flex: 1 1 40%;
    color: white;
    padding-right: 5%;
    padding-top: 15%;
  }
  
  .contact-continut-info h2 {
    font-size: 27px;
    margin-bottom: 30px;
  }
  
  .contact-continut-info ul {
    list-style: none;
    padding: 0;
  }
  
  .contact-continut-info li {
    margin-bottom: 15px;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .contact-continut-info i {
    color: #fcb900;
    margin-right: 10px;
  }
  
  .contact-continut-form-box {
    flex: 1 1 50%;
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
  }
  
  .contact-continut-form-box h3 {
    color: #fcb900;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .contact-continut-form-box label {
    display: block;
    margin: 15px 0 5px;
    color: #fcb900;
    font-weight: 600;
    font-size: 14px;
  }
  
  .contact-continut-form-box input,
  .contact-continut-form-box textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
  }
  
  .contact-continut-form-box textarea {
    height: 100px;
    resize: vertical;
  }

  .checkbox-row {
    margin-left: -20%;
    display: flex;
    align-items: start;
    justify-content: flex-start;
    margin-top: 10px;
  }
  
  .checkbox-label {
    width: 100%;
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #f6b400;
    line-height: 1.4;
    cursor: pointer;
    margin-top: 20px;
    padding-right: 30%;
  }
  
  .checkbox-label input[type="checkbox"] {
    margin-top: 2%;
    transform: scale(1.2);
    cursor: pointer;
  }

  .checkbox-label .checkbox-text {
    margin-left: -20%;
  }  
  
  .contact-continut-form-box button {
    background-color: #fcb900;
    color: white;
    border: none;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 4px;
    margin-top: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-continut-form-box button:hover {
    background-color: #d89f00;
  }

  #evenimente {
    background-color: rgb(240, 237, 237);
    padding: 80px 20px;
    text-align: center;
  }
  
  .evenimente-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .evenimente-subtitle {
    display: inline-block;
    background-color: #ec6534; /* galben-portocaliu ca în poză */
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: white;
    font-weight: bold;
    font-size: 44px;
    letter-spacing: 0.5px;
    padding: 10px 8px;
    border-radius: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
  }
  
  .evenimente-title {
    text-transform: uppercase;
    font-weight: bold;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 54px;
    font-weight: 700;
    color: black;
    line-height: 1.5;
  }

  .eveniment {
    position: relative;
    width: 100%;
    padding-top: 41.57%; /* 1350 / 3247 = 0.4157 */
    background-image: url("img/tabara1.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }
  
  .eveniment .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.2); fumuriu */
    z-index: 1;
  }
  
  .eveniment-content {
    position: absolute;
    top: 53%; /* era 50%, acum e mai jos */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
  }

  .eveniment .button-29{
    display: inline-block;
    background-color: #04646f; /* galben-portocaliu ca în poză */
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: white;
    font-weight: bold;
    font-size: 34px;
    letter-spacing: 0.5px;
    padding: 10px 8px;
    border: none;
    box-shadow: none;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
  }

  .eveniment .button-29:active {
    border: none;
    box-shadow: none;
    transition: all 0.2s ease-in-out;
}

.eveniment .button-29:hover {
    color: white;
    background-color: black;
    transform: translateY(-2px);
}
  .anunt{
    position: relative;
    width: 100%;
    padding-top: 41.57%; /* 1350 / 3247 = 0.4157 */
    background-image: url("img/mutare.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }

    .anunt2{
    position: relative;
    width: 100%;
    padding-top: 41.57%; /* 1350 / 3247 = 0.4157 */
    background-image: url("img/conferinta.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: none;
  }

  .eveniment2 {
    position: relative;
    width: 100%;
    padding-top: 41.57%; /* 1350 / 3247 = 0.4157 */
    background-image: url("img/mutare.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }
  
  .eveniment2 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .eveniment2 .eveniment-content {
    position: absolute;
    top: 50%; /* era 50%, acum e mai jos */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
  }

  .eveniment2 .button-29{
    display: inline-block;
    background-color: white; /* galben-portocaliu ca în poză */
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: black;
    font-weight: bold;
    font-size: 34px;
    letter-spacing: 0.5px;
    padding: 10px 8px;
    border: none;
    box-shadow: none;
    border-radius: 2px;
    text-transform: uppercase;
    cursor: pointer;
  }

  .eveniment2 .button-29:active {
    border: none;
    box-shadow: none;
    transition: all 0.2s ease-in-out;
}

.eveniment2 .button-29:hover {
    color: white;
    background-color: black;
    transform: translateY(-2px);
}
.eveniment3 {
    position: relative;
    width: 100%;
    padding-top: 41.57%; /* 1350 / 3247 = 0.4157 */
    background-image: url("img/tcv.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }
  .eveniment4 {
    position: relative;
    width: 100%;
    padding-top: 41.57%; /* 1350 / 3247 = 0.4157 */
    background-image: url("img/young.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }

  .eveniment5 {
    position: relative;
    width: 100%;
    padding-top: 41.57%; /* 1350 / 3247 = 0.4157 */
    background-image: url("img/grupuri.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }

  .eveniment6 {
    position: relative;
    width: 100%;
    padding-top: 41.57%; /* 1350 / 3247 = 0.4157 */
    background-image: url("img/dtinerilor.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }

  .line{
    height: 5vh;
    background-color: white;
  }
  
  

@media screen and (max-width: 1025px) {

    .header{
        display: none;
    }

    /* ===== HEADER GENERAL ===== */
/* ====== STRUCTURA HEADER ====== */
.site-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 14vh;
    background-color: black;
    padding: 0 1.5rem;
    z-index: 1000;
  }
  
  /* ====== LOGO CENTRAT ====== */
  .site-header .logo {
    padding-top: 2%;
    position: absolute;
    left: 45%;
    transform: translateX(-50%);
  }
  .site-header .logo img {
        height: 100px;
        max-height: 120px;
  }
  
  /* ====== HAMBURGER ====== */
  /* Stil pentru liniile hamburgerului */
  .hamburger {
    cursor: pointer;
    width: 32px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
    position: relative;
  }
  
  .hamburger span {
    height: 2.5px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  
  /* Animația când se activează meniul */
  .hamburger.open .line1 {
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 0;
    transform-origin: center;
  }
  
  .hamburger.open .line2 {
    opacity: 0;
  }
  
  .hamburger.open .line3 {
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 0;
    transform-origin: center;
  }
  
  
  /* ====== BUTON DONEAZĂ ====== */
  .donate {
    z-index: 999;
  }
  .button-5 {
    background-color: #fa6400;
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
  }
  .button-5:hover {
    background-color: #fb8332;
  }
  
  /* ====== MENIU MOBIL ====== */
  #mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100dvh; /* Dynamic viewport height pentru mobile - mai precis pe telefoane */
    min-height: 100vh; /* Fallback pentru browsere mai vechi */
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    margin: 0;
    padding: 0;
  }
  #mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  #mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  #mobile-menu li {
    margin-bottom: 1.5rem;
  }
  #mobile-menu a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bold;
  }
  #mobile-menu a:hover {
    color: #ddb967;
  }
  
  /* ====== ASCUNDE PE DESCHIDERE ====== */
  .hidden {
    display: none !important;
  }
  
  /* ====== PREVENT SCROLL ====== */
  body.menu-open {
    overflow: hidden;
  }
    
  /* RESPONSIVE */

  
    .site-header .logo {
      position: absolute;
      left: 45%;
      transform: translateX(-50%);
    }
  
    .mobile-menu {
      top: 80px;
    }
  

    #info-box p{
        margin-top: 40%;
        font-size: 40px;
    }  

    #info-box .button-28{
        font-size: 14px;
    }  

    #about .info {
        text-align: center;
        margin-left: 8%;
        margin-right: 8%;
    }  

    #about .info h1{
        margin-top: 10%;
    } 

    #about-info .info2 {
      text-align: center;
      margin-left: 5%;
      margin-right: 5%;
      padding-bottom: 5%;
    }  

    #about-info .info2 h1{
        font-size: 45px;
        margin-top: 8%;
    } 

    #about-info .info2 p{
      font-size: 17px;
    } 

    #about .viziune{
        margin-top: 20%;
        margin-left: 8%;
        margin-right: 8%;
    } 

    #about .viziune h1{
       font-size: 28px;
    } 

    #about .icons{
        display: block;
        width: 100%;
        padding-left: 8%;
        padding-right: 8%;
        margin-top: 5%;
    }

    #about .icons .icon1{
        margin-top: 0%;
        margin-bottom: 0%;
        height: 30vh;
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        display: flex;
        text-align: center;
    }
    
    #about .icons .icon1 .fa-solid, .fas {
       font-size: 80px;
    }
    
    #about .icons .icon1 p{
        padding: 15%;
        padding-top: 6%;
    }
    
    #about .icons span{
        color: #DDB967;
    }
    
    #about .icons .icon2{
        margin-top: 0%;
        margin-bottom: 0%;
        height: 30vh;
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        display: flex;
        text-align: center;
    }
    
    #about .icons .icon2 .fa-solid, .fas {
        font-size: 80px;
     }
    
    #about .icons .icon2 p{
        padding: 15%;
        padding-top: 6%;
    }
    
    #about .icons .icon3{
        margin-top: 0%;
        margin-bottom: 0%;
        height: 30vh;
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        display: flex;
        text-align: center;
    }
    
    #about .icons .icon3 .fa-solid, .fas {
        font-size: 80px;
     }
    
    #about .icons .icon3 p{
        padding: 15%;
        padding-top: 6%;
        padding-left: 8%;
        padding-right: 8%;
    }

    #video {
        flex-direction: column;
        padding: 2rem 1rem;
        height: auto;
        padding-bottom: 20%;
    }
    
    #video .youtube {
        margin-top: 10%;
        margin-bottom: 0%;
        width: 100%;
        aspect-ratio: 16 / 9;
        position: relative;
    }
    
    #video .text {
        width: 100%;
        margin-top: 2rem;
        text-align: center;
    }
    
    #video .text h1 {
        display: none;
    }

    .mobile-text{
        display: block;
    }

    .mobile-text h1{
        color: #DDB967;
        margin-top: 10%;
        font-size: 35px;
    }
    
    #video .text h2 {
        font-size: 18px;
        padding-left: 10%;
        padding-right: 10%;
    }
    
    #video .text h4 a{
        padding-top: 3%;
        font-size: 16px;
        text-decoration: none;
        color: white;
    }

    #footer-mobile{
        display: block;
        width: 100%;
        height: 30vh;
        background-color: black;
        z-index: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    #footer-mobile .left {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: end;
        width: 33.3%;
    }
    
    #footer-mobile .left h1{
        color: #DDB967;
        font-size: 20px;
    }
    
    #footer-mobile .left .social{
        padding-top: 3%;
        display: flex;
        flex-direction: column;
        justify-content: left;
        align-items: left;
        width: 28%;
    }
    
    #footer-mobile .left p, a{
        text-decoration: none;
        color: rgb(200, 194, 194);
        font-size: 15px;
        padding-bottom: 1%;
    }
    
    #footer-mobile .left .social a:hover {
        color: white;
    }
    
    #footer-mobile .logo{  
        display: flex;
        justify-content: center;
        align-items: center;
        width: 33.3%;
    }
    
    #footer-mobile .logo img{
        width: 38%;
    }
    
    #footer-mobile .rigth {
        display: flex;
        flex-direction: column;
        justify-content: left;
        align-items: left;
        width: 33.3%;
    }
    
    #footer-mobile .rigth h1{
        color: #DDB967;
        font-size: 20px;
    }
    
    #footer-mobile .rigth .social{
        padding-top: 3%;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40%;
    }
    
    #footer-mobile .rigth a{
        padding: 5%;
        color: rgb(200, 194, 194);
        font-size: 30px;
    }
    
    #bottom{
        width: 100%;
        background-color: black;
        z-index: 1;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        color: rgb(118, 117, 117);
        font-size: 12px;
        font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        padding-bottom: 2%;
    }

    #footer{
        display: none;
    }

    #footer-mobile .left{
        display: none;
    }

    #footer-mobile .logo{
        width: 50%;
    }

    #footer-mobile .logo img{
        width: 58%;
    }

    #footer-mobile .rigth {
        display: flex;
        flex-direction: column;
        justify-content: left;
        align-items: left;
        width: 40%;
    }
    
    #footer-mobile .rigth h1{
        color: #DDB967;
        font-size: 15px;
    }
    
    #footer-mobile .rigth .social{
        padding-top: 3%;
        margin-left: 18%;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40%;
    }
    
    #footer-mobile .rigth a{
        padding: 15%;
        padding-bottom: 0%;
        color: rgb(200, 194, 194);
        font-size: 30px;
    }
    
    #bottom{
        width: 100%;
        background-color: black;
        z-index: 1;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        color: rgb(118, 117, 117);
        font-size: 10px;
        font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        margin-top: -5%;
        padding-bottom: 15%;
    }    

    #container2{
        display: block;
    }

    #formular {
        display: none;
    }

    #container2 .left{
        padding: 5%;
        padding-top: 15%;
        padding-bottom: 15%;
    }

    #container2 {
        width: 100%;
        padding: 1.5rem;
        box-sizing: border-box;
    }
  
    #container2 h2 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
    
    #container2 h4 {
        font-size: 14px;
        font-weight: 500;
        color: #777;
        margin-bottom: 2rem;
    }
    
    #container2 h3 {
        font-size: 18px;
        font-weight: 700;
        margin: 1.5rem 0 0.5rem;
        margin-bottom: 0%;
    }
    
    /* === Currency Selection === */
    #container2 .moneda {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1rem;
        margin-top: -3%;
    }
    
    #container2 .currency-option {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-weight: bold;
        font-size: 16px;
        cursor: pointer;
    }
    
    #container2 .currency-option input[type="radio"] {
        display: none;
    }
    
    #container2 .custom-radio {
        width: 20px;
        height: 20px;
        border: 2px solid #ccc;
        border-radius: 5px;
        text-align: center;
        line-height: 18px;
        font-size: 14px;
        background-color: white;
        color: white;
    }
    
    #container2 .currency-option input[type="radio"]:checked + .custom-radio {
        background-color: #fb8332;
        border-color: #fb8332;
        color: white;
    }
    
    /* === Amount Selection === */
    #container2 .amount-selection .moneda {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .amount-option {
        flex: 1;
        min-width: 50px;
        height: 36px;
        padding: 6px 1px;
        font-size: 13px;
        font-weight: bold;
        border: 2px solid #ccc;
        border-radius: 8px;
        background: white;
        color: #000;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      
    
    #container2 .amount-option.selected,
    #container2 .amount-option:hover {
        background-color: #fb8332;
        color: white;
        border-color: #fb8332;
    }
    
    /* === Custom Amount === */
    #container2 .custom-amount {
        position: relative;
        width: 100%;
        padding: 0;
        border: 2px solid #ccc;
        border-radius: 5px;
        margin-top: 0px;
    }
    
    #container2 .amount-option.custom-amount.selected {
        border-color: #fb8332;
    }
    
    #container2 .custom-input {
        width: 100%;
        padding: 0.75rem;
        border: none;
        outline: none;
        font-size: 14px;
        font-weight: bold;
        background: transparent;
        color: #333;
    }
    
    #container2 .custom-placeholder {
        position: absolute;
        top: 50%;
        font-size: 10px;
        transform: translateY(-50%);
        color: rgba(0, 0, 0, 0.5);
        pointer-events: none;
        font-family: Arial, Helvetica, sans-serif;
        text-align: center;
    }
    
    /* === Form Fields === */
    #container2 .form p {
        font-weight: bold;
        margin: 1rem 0 0.25rem;
    }
    
    #container2 .form-field {
        width: 100%;
        padding: 0.75rem;
        border: 2px solid #ccc;
        border-radius: 5px;
        font-size: 15px;
        font-weight: 500;
    }
    
    #container2 .form-field:focus {
        border-color: #fb8332;
        outline: none;
    }
    
    /* === Dropdown === */
    #container2 .custom-dropdown {
        position: relative;
        background: white;
        border: 2px solid #ccc;
        border-radius: 5px;
        padding: 0.75rem;
        font-weight: bold;
        font-size: 14px;
        cursor: pointer;
    }
    
    #container2 .custom-dropdown::after {
        content: "⌄";
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        color: #444;
    }
    
    #container2 .dropdown-options {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        border: 1px solid #ddd;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 10;
    }
    
    #container2 .custom-dropdown.active .dropdown-options {
        display: block;
    }
    
    #container2 .dropdown-item {
        padding: 0.75rem;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
    }
    
    #container2 .dropdown-item:hover {
        background: #f5f5f5;
    }
    
    /* === Submit Button === */
    #container2 .pay-button {
        width: 100%;
        margin-top: 2rem;
        padding: 0.85rem;
        font-weight: bold;
        background-color: #fb8332;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    #container2 .pay-button:hover {
        background-color: #e96d1a;
    }

    .form-field.error {
        border: 2px solid red !important;
    }
    
    .email-label.error {
        color: red !important;
    }
    
    .required-star.show {
        display: inline-block !important;
    }

    .contact-continut {
        background: url('img/map2.webp') center center/cover no-repeat; /* imaginea de fundal */
      }

    .contact-continut-inner {
        flex-direction: column;
        padding: 20px;
      }
    
      .contact-continut-info,
      .contact-continut-form-box {
        padding: 0;
        flex: 1 1 10%;
      }
    
      .contact-continut-form-box {
        margin-top: 30px;
        padding: 10%;
      }

      .contact-continut-inner {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
        margin: 0 auto;
        z-index: 1;
        border-radius: 10px;
      }

      .checkbox-row {
        margin-left: 0%;
        display: flex;
        align-items: start;
        justify-content: flex-start;
        margin-top: 10px;
      }

      .checkbox-label {
        width: 100%;
        display: flex !important;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        font-weight: 600;
        color: #f6b400;
        line-height: 1;
        cursor: pointer;
        margin-top: 20px;
        padding-right: 25%;
      }
      
      .checkbox-label input[type="checkbox"] {
        margin-left: 10%;
        margin-top: 5%;
        transform: scale(1.0);
        cursor: pointer;
      }
    
      .checkbox-label .checkbox-text {
        margin-left: -80%;
      }

      #evenimente {
        padding: 30px 20px;
      }

      .evenimente-subtitle {
        font-size: 24px;
      }
      
      .evenimente-title {
        font-size: 30px;
        line-height: 1;
      } 

      .eveniment {
        padding-top: 177.78%;
        background-image: url("img/tabaraMobile.webp");
      }

      .eveniment .eveniment-content {
        top: 14%; /* era 50%, acum e mai jos */
      }
    
      .eveniment .button-29{
        font-size: 16px;
      }

      .anunt {
        padding-top: 108.24%;
        background-image: url("img/mutareMobil.webp");
      }

      .anunt2 {
        display: block;
        padding-top: 103.24%;
        background-image: url("img/conferinta.jpeg");
      }

      .anunt2 .button-29 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 12px 24px;
        background-color: #e96d1a; /* galben-portocaliu ca în poză */
        font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
        color: white;
        font-weight: bold;
        font-size: 14px;
        letter-spacing: 0.5px;
        border: none;
        box-shadow: none;
        border-radius: 5px;
        text-transform: uppercase;
        cursor: pointer;
      }

        .anunt2 .button-29:active {
          border: none;
          box-shadow: none;
          transition: all 0.2s ease-in-out;
      }

      .anunt2 .button-29:hover {
          color: white;
          background-color: black;
      }

      .eveniment2 {
        padding-top: 108.24%;
        background-image: url("img/mutareMobil.webp");
      }

      .eveniment2 .eveniment-content {
        top: 60%; /* era 50%, acum e mai jos */
      }
    
      .eveniment2 .button-29{
        font-size: 16px;
      }

      .eveniment3 {
        padding-top: 108.24%;
        background-image: url("img/tcvMobile.webp");
      }

      .eveniment4 {
        padding-top: 108.24%;
        background-image: url("img/youngMobile.webp");
      }

      .eveniment5 {
        padding-top: 108.24%;
        background-image: url("img/grupuriMobile.webp");
      }
      .eveniment6 {
        padding-top: 108.24%;
        background-image: url("img/dtinerilorMobile.webp");
      }

      #container2 .custom-radio{
        color: white;
        font-size: 15px;
    }

    #container2  .currency-selection h3{
        color:#000;
        font-size: 22px;
        margin-bottom: 5%
    }

    #container2  .amount-selection h3{
        color:#000;
        font-size: 20px;
        margin-bottom: 5%
    }

}

.language-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.language-switch span {
    color: rgba(255, 255, 255, 0.5);
}

.language-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.language-link:hover {
    color: #ffffff;
}

.language-link--active {
    color: #ffffff;
}

.language-switch--desktop {
    margin-left: 20px;
}

.language-switch--mobile {
    position: absolute;
    top: 3.25rem;
    right: 2rem;
    font-size: 0.9rem;
}

@media (max-width: 1025px) {
    .language-switch--desktop {
        display: none;
    }
}


@media (min-width: 1025px) {
    .header {
      background-color: #000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 40px;
      flex-wrap: nowrap;
      height: 14vh;
      padding-left: 10%;
    }
  
    .header .logo img {
      height: 100px;
      display: block;
    }
  
    .header #menu {
      display: flex;
      justify-content: center;
      flex: 1;
      gap: 150px;
    }
  
    .header .menu-item {
      display: flex;
      align-items: center;
    }
  
    .header .menu-text a {
      color: white;
      font-weight: bold;
      text-decoration: none;
      font-size: 22px;
      transition: color 0.3s ease;
    }
  
    .header .menu-text a:hover {
      color: orange;
    }
  
    .header #sub-menu-container {
      display: none;
    }

    .donate{
        padding-left: 10%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .button-5 {
        align-items: center;
        background-clip: padding-box;
        background-color: #fa6400;
        border: 1px solid transparent;
        border-radius: .25rem;
        box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
        box-sizing: border-box;
        color: #fff;
        cursor: pointer;
        display: inline-flex;
        font-size: 16px;
        font-weight: 600;
        justify-content: center;
        line-height: 1.25;
        margin: 0;
        min-height: 3rem;
        padding: calc(.875rem - 1px) calc(1.5rem - 1px);
        position: relative;
        text-decoration: none;
        transition: all 250ms;
        user-select: none;
        -webkit-user-select: none;
        touch-action: manipulation;
        vertical-align: baseline;
        width: auto;
    }
  
    .site-header{
        display: none;
    }
  
  }

  @media (max-height: 750px) {

    #formular .container {
        display: flex;
        height: 170vh;
        width: 100%;
    }
}

/* ================================
   Fundraising Campaign (spatiunou)
   ================================ */

.fundraising-section {
    position: relative;
    background-color: #f5bb00; 
    padding: 80px 0;
    overflow: hidden;
}

.fundraising-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/fundraising-bg.png');
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    clip-path: polygon(0 0, 100% 0, 100% 27%, 0 18%);
    z-index: 0;
}

.fundraising-section .fundraising-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: 17%;
}

.fundraising-header {
    text-align: center;
    margin-bottom: 48px;
}

.fundraising-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: white;
}

.fundraising-header p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: white;
}

.fundraising-progress {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    margin-bottom: 48px;
}

.fundraising-progress-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.fundraising-progress-header h2 {
    font-size: 1.6rem;
    color: #000000;
    margin: 0;
}

.fundraising-progress-subtitle {
    font-size: 0.95rem;
    color: #706a85;
}

.progress-bar {
    position: relative;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 999px;
    height: 24px;
    overflow: visible;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    padding-right: 50px;
}

.progress-fill {
    background: linear-gradient(90deg, #fb8332 0%, #fb8332 100%);
    width: 0;
    height: 100%;
    border-radius: inherit;
    transition: width 0.6s ease;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 11;
}

.progress-percentage {
    font-size: 0.95rem;
    white-space: nowrap;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: #000000;
    font-weight: 600;
}

.progress-phase {
    background: #f4f2ff;
    border-radius: 16px;
    padding: 16px 20px;
    margin-top: 20px;
    border: 1px solid rgba(43, 20, 86, 0.1);
}

.progress-phase h3 {
    margin: 0 0 6px 0;
    font-size: 1.1rem;
    color: #2b1456;
}

.progress-phase p {
    margin: 0;
    color: #4b4463;
    line-height: 1.5;
    font-size: 0.95rem;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: #000000;
    flex-wrap: wrap;
    gap: 12px;
}

.progress-current {
    font-weight: 600;
}

.fundraising-donate {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 20px 50px rgba(43, 20, 86, 0.08);
    margin-bottom: 48px;
}

.fundraising-donate h2 {
    font-size: 1.6rem;
    color: #000000;
    margin-bottom: 24px;
}

#donation-form fieldset {
    border: none;
    padding: 0;
    margin: 0 0 24px;
}

.currency-selection {
    margin-bottom: 32px;
}

.currency-selection h3 {
    font-weight: 600;
    font-size: 1rem;
    color: #000000;
    margin-bottom: 16px;
}

.currency-buttons {
    padding-right: 50%;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.currency-buttons label {
    position: relative;
    cursor: pointer;
}

.currency-buttons label input {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.currency-buttons label span {
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 2px solid #000000;
    border-radius: 999px;
    font-weight: 600;
    color: #000000;
    background: #f6f3ff;
    transition: all 0.2s ease;
    min-width: 80px;
}

.currency-buttons label input:checked + span {
    background: linear-gradient(135deg, #fb8332 0%, #fb8332 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

#donation-form legend {
    font-weight: 600;
    font-size: 1rem;
    color: #000000;
    margin-bottom: 16px;
}

.preset-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.preset-amounts label {
    position: relative;
    cursor: pointer;
}

.preset-amounts label input {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.preset-amounts label span {
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border: 2px solid #000000;
    border-radius: 999px;
    font-weight: 600;
    color: #000000;
    background: #f6f3ff;
    transition: all 0.2s ease;
    width: 100%;
    min-width: 80px;
    box-sizing: border-box;
}

.preset-amounts label input:checked + span {
    background: linear-gradient(135deg, #fb8332 0%, #fb8332 100%);
    color: #ffffff;
    border-radius: 999px;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.custom-amount {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.custom-amount label {
    font-weight: 600;
    color: #000000;
}

.custom-amount-input {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f6f3ff;
    border-radius: 999px;
    padding: 10px 16px;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.custom-amount-input:focus-within {
    border-color: #000000;
}

.custom-amount-input input {
    border: none;
    background: transparent;
    font-size: 1rem;
    outline: none;
    flex: 1;
    color: #000000;
}

.custom-amount-input span {
    font-weight: 700;
    color: #000000;
    min-width: 50px;
}

.custom-amount-hint {
    font-size: 0.85rem;
    color: #000000;
}

#donation-form .button-5 {
    width: fit-content;
    padding: 12px 32px;
    font-size: 1.05rem;
}

.fundraising-note {
    font-size: 0.9rem;
    color: #000000;
    margin-top: 16px;
}

.donor-info {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-field-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field-wrapper label {
    font-weight: 600;
    color: #000000;
    font-size: 0.95rem;
}

.form-field-wrapper .form-field {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #000000;
    border-radius: 8px;
    font-size: 1rem;
    background: #ffffff;
    color: #000000;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.form-field-wrapper .form-field:focus {
    outline: none;
    border-color: #fb8332;
}

.required-star {
    color: #ff0000;
}

.fundraising-gallery {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 20px 50px rgba(43, 20, 86, 0.08);
    margin-bottom: 48px;
}

.fundraising-gallery-header {
    margin-bottom: 24px;
}

.fundraising-gallery-header h2 {
    font-size: 1.6rem;
    color: #000000;
    margin-bottom: 12px;
}

.fundraising-gallery-header p {
    color: #000000;
}

.gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.gallery-wrapper img {
    width: 100%;
    max-width: 680px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.gallery-control {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-control:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    color: #ffffff;
}

.gallery-caption {
    text-align: center;
    margin-top: 18px;
    color: #000000;
    font-size: 0.95rem;
}

.fundraising-donors {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.fundraising-donors h2 {
    font-size: 1.6rem;
    color: #000000;
    margin-bottom: 12px;
}

.donor-subtitle {
    color: #000000;
    margin-bottom: 24px;
}

.donor-list-wrapper {
    max-height: 520px;
    overflow: auto;
    padding-right: 12px;
    scrollbar-width: thin;
    scrollbar-color: #000000 #111112;
}

.donor-list-wrapper::-webkit-scrollbar {
    width: 8px;
}

.donor-list-wrapper::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 999px;
}

.donor-list-wrapper::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 999px;
}

.donor-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.donor-list li {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 12px;
    background: #f6f3ff;
    color: #000000;
    align-items: center;
}

.donor-name {
    font-weight: 600;
}

.donor-amount {
    font-weight: 700;
    color: #000000;
}

.donor-date {
    font-size: 0.85rem;
    color: #706a85;
}

/* ================================
   Why Move Section
   ================================ */

.why-move-section {
    width: 100% !important;
    background-color: #ffffff !important;
    padding: 80px 0 !important;
    padding-top: 5% !important;
    margin: 0 !important;
    display: block !important;
}

.why-move-container {
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    display: block !important;
}

.why-move-title {
    font-size: 3rem !important;
    color: #000000 !important;
    margin-bottom: 32px !important;
    text-align: center !important;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif !important;
    font-weight: bold !important;
    display: block !important;
}

.why-move-content {
    color: #000000 !important;
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    padding-top: 5% !important;
    display: block !important;
}

.why-move-content p {
    margin-bottom: 20px !important;
    text-align: left !important;
    color: #000000 !important;
}

.why-move-content .mission-text {
    font-style: italic !important;
    font-weight: 500 !important;
    padding: 20px !important;
    background-color: #f6f3ff !important;
    border-left: 4px solid #fb8332 !important;
    margin: 24px 0 !important;
    color: #000000 !important;
}

/* ================================
   Project 2.45 Banner (donatii.html)
   ================================ */
.project-banner {
    background-color: #1f202b;
    color: #ffffff;
    padding: 64px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-banner__content {
    max-width: 960px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.project-banner__label {
    color: #fbc531;
    font-weight: 700;
    letter-spacing: 1px;
}

.project-banner__content h1 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin: 0;
}

.project-banner__content p {
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.project-banner__iban {
    font-family: 'Roboto Mono', 'Courier New', monospace;
    line-height: 1.6;
}

.project-banner__cta {
    margin: 0 auto;
    margin-top: 8px;
    padding: 14px 32px;
    border: 2px solid #fbc531;
    color: #fbc531;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.project-banner__cta:hover {
    background: #fbc531;
    color: #1f202b;
}

.project-banner--desktop {
    display: none;
}

.project-banner--mobile {
    display: flex;
}

@media (max-width: 992px) {
    .fundraising-progress,
    .fundraising-donate,
    .fundraising-gallery,
    .fundraising-donors {
        padding: 28px;
    }

    .progress-stats {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-wrapper {
        flex-direction: column;
    }

    .gallery-control {
        position: static;
        order: -1;
    }

    .donor-list li {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

@media (max-width: 600px) {
    .fundraising-section {
        padding: 40px 0 60px;
    }

    .fundraising-section::before {
        background-image: url('img/fundraisng-mobile.png');
        clip-path: polygon(0 0, 100% 0, 100% 50%, 0 85%);
        background-size: 100% auto;
        background-position: center top;
    }

    .fundraising-section .fundraising-container {
        padding: 0 16px;
        padding-top: 30%;
    }

    .fundraising-header {
        margin-bottom: 32px;
    }

    .fundraising-header h1 {
        font-size: 2.2rem;
        margin-bottom: 16px;
        line-height: 1.1;
        margin-left: 5%;
        margin-right: 5%;
    }

    .fundraising-header p {
        font-size: 0.8rem;
        line-height: 1.1;
        margin-left: 5%;
        margin-right: 5%;
    }

    .fundraising-progress,
    .fundraising-donate,
    .fundraising-gallery,
    .fundraising-donors {
        margin-top: 10%;
        padding: 20px;
        border-radius: 16px;
        margin-bottom: 32px;
    }

    .fundraising-progress-header h2,
    .fundraising-donate h2,
    .fundraising-gallery-header h2,
    .fundraising-donors h2 {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }

    .fundraising-progress-subtitle {
        font-size: 0.85rem;
    }

    .progress-bar {
        height: 20px;
        margin-bottom: 12px;
        overflow: visible;
        padding-right: 45px;
    }

    .progress-percentage {
        font-size: 0.75rem;
        right: 8px;
    }

    .progress-stats {
        font-size: 0.9rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .currency-selection {
        margin-bottom: 24px;
    }

    .currency-selection h3 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .currency-buttons {
        justify-content: center;
        gap: 8px;
    }

    .currency-buttons label {
        flex: 1;
        min-width: 0;
    }

    .currency-buttons label span {
        min-width: 0;
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    #donation-form fieldset {
        margin-bottom: 20px;
    }

    #donation-form fieldset legend {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }

    .preset-amounts {
        margin-right: 20%;
        gap: 6px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
    }

    .preset-amounts label {
        flex: none;
        width: 100%;
        justify-content: center;
    }

    .preset-amounts label span {
        padding: 10px 8px;
        font-size: 0.85rem;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .custom-amount {
        margin-top: 16px;
    }

    .custom-amount label {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .custom-amount-input {
        padding: 8px 12px;
    }

    .custom-amount-input input {
        width: 100%;
        font-size: 0.9rem;
        padding: 8px;
    }

    .custom-amount-input span {
        font-size: 0.85rem;
    }

    .custom-amount-hint {
        font-size: 0.8rem;
        margin-top: 8px;
    }

    .button-5 {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
        margin-top: 10px;
    }

    #donation-form .button-5 {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        min-width: 200px;
        margin-top: 10px;
    }

    .fundraising-note {
        font-size: 0.8rem;
        margin-top: 12px;
        text-align: center;
    }

    .fundraising-gallery-header p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .gallery-wrapper {
        flex-direction: row;
        gap: 4px;
        align-items: center;
        justify-content: center;
    }

    .gallery-control {
        width: 26px;
        height: 26px;
        font-size: 0.6rem;
        flex-shrink: 0;
        position: static;
    }

    .gallery-control.prev {
        order: 1;
    }

    .gallery-wrapper img {
        order: 2;
        max-width: calc(100% - 60px);
        width: 100%;
        flex: 1;
    }

    .gallery-control.next {
        order: 3;
    }

    .gallery-caption {
        font-size: 0.85rem;
        margin-top: 12px;
    }

    .donor-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .donor-list-wrapper {
        max-height: 400px;
        padding-right: 8px;
    }

    .donor-list li {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 12px 14px;
        border-radius: 10px;
    }

    .donor-name {
        font-size: 0.95rem;
    }

    .donor-amount {
        font-size: 0.95rem;
    }

    .donor-date {
        font-size: 0.8rem;
    }

    .donor-info {
        margin-top: 20px;
    }

    .form-field-wrapper {
        margin-bottom: 16px;
    }

    .form-field-wrapper label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .form-field-wrapper .form-field {
        font-size: 0.9rem;
        padding: 12px 14px;
    }

    .why-move-section {
        padding: 60px 0 !important;
        padding-top: 5% !important;
    }

    .why-move-container {
        padding: 0 16px !important;
    }

    .why-move-title {
        font-size: 1.6rem !important;
        margin-bottom: 24px !important;
    }

    .why-move-content {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        padding-top: 5% !important;
    }

    .why-move-content p {
        margin-bottom: 16px !important;
        color: #000000 !important;
    }

    .why-move-content .mission-text {
        padding: 16px !important;
        margin: 20px 0 !important;
        font-size: 0.95rem !important;
        background-color: #f6f3ff !important;
        border-left: 4px solid #fb8332 !important;
        color: #000000 !important;
    }

    .project-banner {
        padding: 10%;
    }

    .project-banner__content h1 {
        font-size: 1.8rem;
        margin-bottom: 5%;
    }

    .project-banner__content p,
    .project-banner__iban {
        font-size: 0.95rem;
        line-height: 1;
    }

    .project-banner__cta {
        width: 100%;
    }

    .project-banner--desktop {
        display: none;
    }

    .project-banner--mobile {
        display: flex;
    }
    .project-banner--mobile h1{
        font-size: 1.5rem;
    }

}

@media (min-width: 992px) {
    .project-banner--desktop {
        display: flex;
    }

    .project-banner--mobile {
        display: none;
    }
}

.project-banner--desktop .project-banner__cta {
    text-decoration: none;
}

/* Optimizări pentru încărcarea imaginilor */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.lazy-image.loaded {
    opacity: 1;
}

/* Optimizare pentru background images */
.optimized-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform; /* Optimizare pentru GPU */
    transform: translateZ(0); /* Forțează hardware acceleration */
}

/* Preload pentru imagini critice */
.preload-critical {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

  