
body {
    list-style: none;
    margin: 0;
    font-family: "Amaranth", sans-serif;
  font-weight: 400;
  font-style: normal;
}
:root {
    --verde-color: #094e2a;  
    --galben-color: #DDCEB6; 
    --negru-color: #03160C;  
    --verde-deschis:#185C37; 
  }
/* Stilizare pentru secțiunea .content */
.content {
    position: relative;
    width: 100%;
    height: 100vh; /* Întinde secțiunea pe toată înălțimea ecranului */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.5); /* Adaugă o suprapunere semitransparentă pentru a îmbunătăți lizibilitatea textului */
}

.text-container {
    color: var(--galben-color);
    position: absolute;
    z-index: 10;
    max-width: 90%;
    text-align: center;
}

h1 {
    color: var(--galben-color);
    font-size: 3em;
    margin-bottom: 5px;
}

p {
    color: var(--galben-color);
    font-size: 3.5em;
    margin-bottom: 20px;
}

.info-button a {
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1.2em;
    background-color: var(--negru-color);
    color: var(--galben-color);
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.info-button a:hover {
    color: var(--negru-color);
    background-color: var(--galben-color)
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.pexels.com/photos/2606532/pexels-photo-2606532.jpeg?auto=compress&cs=tinysrgb&w=600https://images.pexels.com/photos/2739666/pexels-photo-2739666.jpeg?auto=compress&cs=tinysrgb&w=600') ;/* Înlocuiește cu calea către imaginea dorită */
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Media Queries pentru a face secțiunea responsive */
@media (max-width: 768px) {
    .content {
        padding: 15px;
    }

    h1 {
        font-size: 4em;
    }

    p {
        font-size: 3.2em;
    }

    .info-button {
        background-color: transparent;
        border: none;
        font-size: 1em;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        color: var(--galben-color);
        font-size: 2.1em;
    }

    p {
        font-size: 1.5em;
    }

    .info-button {
        background-color: transparent;
        border: none;
        font-size: 0.9em;
        padding: 8px 18px;
    }
}
/* Stilizare generală */
.main-section {
    text-align: center;
    padding: 30px 20px;
    background-color:var(--verde-deschis);
}

.main-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: bold;
}

/* Stilizare generală */
.classes-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 20px;
}

/* Stiluri pentru fiecare item */
.class-item {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.class-background {
    position: relative;
    width: 100%;
    height: 450px; /* Înălțimea imaginii de fundal */
    background-image: url('img/padurebackground.jpeg'); /* Setează aici imaginea de fundal dorită */
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

/* Containere pentru imagini și text */
.image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.flag {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 60px; /* Poți ajusta dimensiunea steagului */
    height: auto;
}

.country-map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;  /* Poți ajusta dimensiunea hărții */
    height: auto;
}

/* Numele țării */
.country-name {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    z-index: 2;
}
.country-name p{
    font-size: 35px;
}
/* Media Queries pentru responsivitate */

/* Pe ecrane mari (laptop/desktop) */
@media (min-width: 768px) {
    .classes-container {
        justify-content: center;
        margin: 20px;
        display: flex;
    }

    .class-item {
        margin-left: 20px;
        width: 27%; /* 3 elemente pe linie */
    }

    .flag {
        width: 50px;
    }

    .country-map {
        width: 75%;
    }

    .country-name {
        font-size: 1.5em;
    }
}

/* Pe ecrane mici (telefon) */
@media (max-width: 768px) {
    .classes-container {
        flex-direction: column; /* Pe mobil, elementele vor fi pe coloană */
        align-items: center;
    }

    .class-item {
        max-width: 90%;
        margin-bottom: 20px;
    }

    .flag {
        width: 50px;
    }

    .country-map {
        width: 100%;
    }

    .country-name {
        font-size: 1.2em;
    }
}
/* Stiluri generale pentru secțiune */
.split-section {
    background-color: #29754d;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
}

/* Secțiunea de imagine */
.image-section {
    flex: 1;
    max-width: 500px;
}

.image-section img {
    width: 65%;
    height: auto;
    border-radius: 10px;
}

/* Secțiunea de text */
.text-section {
    flex: 1;
    max-width: 600px;
}

/* Stiluri pentru text */
.aboutm3 h1 {

    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--galben-color);
}

.aboutm3 p {
    word-spacing: 5px; /* Crește spațiul între cuvinte */
    font-size: 1.3rem;
    color: var(--galben-color);
    margin-bottom: 20px; /* Spațiu sub fiecare paragraf */
    line-height: 1.8; /* Crește spațiul între rânduri */
}


.buttons {
    margin-top: 40px;
    margin-bottom: 5px;
}

.button-6 a {
    text-decoration: none;
    background-color: var(--negru-color);
    color: var(--galben-color);
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-right: 10px;
}
.button-7 a{
    text-decoration: none;
    background-color: var(--galben-color);
    color: var(--negru-color);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-right: 10px;
}
.button-6:hover {
    color: var(--negru-color);
    background-color: #d2c295;
}

/* Secțiunea de experiență */
.experience-section {
    display: flex;
}

.experience-item {
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    flex: 1;
}
.hexagon {
    cursor: pointer;
}

.experience-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--galben-color);
}

.experience-label {
    font-size: 1.5rem;
    color:var(--galben-color);
}

/* Media Queries pentru responsivitate */

/* Pe ecrane mari (laptop/desktop) */
@media (min-width: 768px) {
    .split-section {
        background-color: #29754d;
        flex-direction: row;
    }

    .image-section {
        display: flex;
        justify-content: center;
        max-width: 50%;
    }

    .text-section {
        max-width: 50%;
    }
}

/* Pe ecrane mici (telefon) */
@media (max-width: 768px) {
    .split-section {
        background-color: #29754d;
        flex-direction: column;
        align-items: center;
    }

    .image-section {
        max-width: 90%;
        margin-bottom: 20px;
    }
    .image-section img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    /* Stiluri pentru text */
.aboutm3 h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--galben-color);
}

.aboutm3 p {
    font-size: 1.5rem;
    color: var(--galben-color);
    margin-bottom: 20px;
}


    .text-section {
        max-width: 90%;
    }

    .experience-section {
        flex-direction: row;
        align-items: center;
    }

    .experience-item {
        margin-bottom: 10px;
        width: 100%;
    }
    .experience-label {
        font-size:  1rem; 
    }
    .experience-number{
        font-size:  2.5rem; 
    }
    .buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .button-6 {
        width: 100%;
        margin-bottom: 10px;
    }
}
/* Stiluri generale pentru secțiune */
.community-gallery {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.community-gallery h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
}

/* Galerie pentru desktop */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 coloane pe desktop */
    gap: 20px;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    width: 100%;
    height: 650px; /* Înălțime fixă pentru toate imaginile */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* Efect la hover */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Stilizare carusel Swiper.js */
.gallery-carousel {
    display:none; /* Ascundem caruselul pe desktop */
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.swiper-slide img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 8px;
}
/* Ascundem caruselul implicit */
.gallery-carousel {
    display: none;
}

/* Afișăm galeria grid pe ecrane mari */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 20px;
}
.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: none;
}
/* Ascundem caruselul pe toate ecranele implicit */
.swiper {
    display: none !important;
}

/* Afișăm caruselul doar pe dispozitive mobile */
@media (max-width: 768px) {
    .swiper {
        display: block !important;
    }
}

/* Pe ecrane mici (mobil), ascundem grila și afișăm caruselul */
@media (max-width: 768px) {
    .gallery-container {
        display: none;
    }

    .gallery-carousel {
        display: block;
    }
}
/* Stil pentru pop-up */
.popup {
    display: none; /* Inițial ascuns */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Fundal semi-transparent */
    z-index: 1001;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.popup-content {
    position: relative;
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
}

.popup-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

h2 {
    font-size: 1.5rem;
    color: #185C37;
    margin-top: 20px;
    margin-bottom: 20px;
}

.popup-button {
    margin: 10px;
    background-color: #185C37;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.popup-button:hover {
    background-color: #3b8b5e;
}

/* Butonul de închidere */
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    color: #185C37;
    cursor: pointer;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .popup-content {
        width: 90%;
    }

    h2 {
        font-size: 1.2rem;
    }

    .popup-button {
        margin: 10px;
        font-size: 0.7rem;
    }
    .hexagon-wrapper {
        margin: auto;
        display: flex;
        text-align: initial;
        width: 100px;
        height: 100px;
        cursor: pointer;
      }
      .hexagon i {
        font-size: 30px;
      }
}

.container-social {
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
  }
  
  .hexagon-wrapper {
    margin: auto;
    display: flex;
    text-align: initial;
    width: 100px;
    height: 100px;
    cursor: pointer;
  }
  
  .hexagon {
    position: relative;
    width: 46%;
    height: 80%;
    margin: auto;
    color: white;
    background: linear-gradient(-180deg, white, #185C37);
    display: flex;
    align-content: center;
    justify-content: center;
    transition: 0.5s;
  }
  
  .hexagon i {
    z-index: 1;
    margin: auto;
    font-size: 50px;
    color: transparent;
    background: linear-gradient(45deg, #185C37, #185C37);
    background-clip: text;
    -webkit-background-clip: text;
  }
  
  .hexagon:before,
  .hexagon:after {
    position: absolute;
    content: "";
    background: inherit;
    height: 100%;
    width: 100%;
    border-radius: 0;
    transition: 0.5s;
    transform-origin: center;
  }
  .hexagon:before {
    transform: rotateZ(60deg);
  }
  .hexagon:after {
    transform: rotateZ(-60deg);
  }
  .hexagon:hover {
    border-radius: 50px;
    transition: 0.5s;
  }
  .hexagon:hover:before {
    border-radius: 50px;
    transition: 0.5s;
  }
  .hexagon:hover:after {
    border-radius: 50px;
    transition: 0.5s;
  }
  @media (max-width: 468px) {
    .popup-content {
        width: 80%;
    }

    h2 {
        font-size: 1.2rem;
    }

    .popup-button {
        font-size: 0.9rem;
    }
    .hexagon-wrapper {
        margin: auto;
        display: flex;
        text-align: initial;
        width: 80px;
        height: 80px;
        cursor: pointer;
      }
      .hexagon i {
        font-size: 30px;
      }
}
    .testimonial-section {
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    .testimonial-section h2 {
      font-size: 2em;
      margin-bottom: 20px;
      color: #333;
    }

    .testimonials {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .testimonial {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      padding: 10px;
    }

    .testimonial iframe {
      width: 100%;
      height: 400px;
      border: none;
      border-radius: 8px;
    }

    @media (max-width: 600px) {
      .testimonial iframe {
        height: 180px;
      }
      .testimonial iframe {
      width: 100%;
      height: 400px;
      border: none;
      border-radius: 8px;
    }
    }