@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');
/*reset style*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*general style*/
#languageSwitcher {
    font-size: 0.8rem; /* Mărimea fontului */
    padding-left: .1rem; /* Spațiu la stânga */
    padding: 0.8rem; /* Spațiu intern */
    border: none;/* Marginea */
    border-radius: 4px; /* Colțuri rotunjite */
    background-color: transparent; /* Culoarea de fundal */
    color: #fff; /* Culoarea textului */
    cursor: pointer; /* Cursor interactiv */
    transition: all 0.6s ease;
  }
  #languageSwitcher:hover {
    background-color: rgba(255, 255, 255, 0.186); /* Fundal semi-transparent */
    backdrop-filter: blur(5px); /* Efect de blur la hover */
    box-shadow: 0 0 8px rgba(100, 95, 95, 0.5); /* Efect luminos */ 
  }
.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
    line-height: 2;
}
 body {
    font-size: 1rem;
    background-color: #210e0e;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}
/* Asigură că html și body ocupă întreaga înălțime a paginii */
html, body {
  height: 100%;
  max-width: 100vw !important; /* Previne depășirea lățimii */
  overflow-x: hidden; /* Previne derularea orizontală */
  margin: 0;
  padding: 0;
}
#intro-screen {
    position: fixed;
    width: 100%;
    height: 100vh;
    background:#210e0e;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; 
}
#logo {
    width: 300px;
    animation: rotate 2s linear;
    background: url('folderimaginiz/logoalb.png') no-repeat center center; /* Asigură că logo-ul este centrat */
    background-size: contain;
}
@keyframes rotate {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}
.hide {
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
#intro-screen.hide {
    opacity: 0;
    pointer-events: none; /* Previne interacțiunile cu ecranul de introducere */
}
.container {
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 .7rem; 
    width: 100%;
    box-sizing: border-box; 
}
section:not(.hero) {
    padding: 6rem 0;
}
section > .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}
section >.section-subtitle{
    text-align: center;
    color: #fff;
}
/*Header style*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem; /* Spațiu pe laterale */
}
header { 
    color: #fff;
    line-height: 1.4;
    background-color: #210e0e; 
}
header > .container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Spațiu între logo și butonul de meniu */
    padding-top: 1.3rem;
    padding-bottom: 1.3rem; /* Spațiu deasupra și dedesubt */
    flex-wrap: wrap;
}
header .logo a {
   text-decoration: none;
   color: #fff;
    font-size: clamp(1rem, 2vw, 1.5rem); /* Dimensiune dinamică */
    font-weight: 600; /* Grosime font */
}    
header .btn-toggle {
    background: transparent;
    color:#fff;
    border: solid 2px #fff;
    border-radius: 4px;
    padding: 0.5rem;
}
header .navigation {
    flex-basis: 100%;
    margin-top: 1rem;
    display: none; /* Ascunde meniul în mod implicit */
}
header .navigation.active{
    display: block;
}
header .nav-items {
    list-style: none;
    font-size: clamp(0.2rem, 2vw + 0.5rem, 0.9rem);  
}
.nav-items .nav-link {
    text-decoration: none;
    color: #fff;
    padding: 0.5rem 0;
    display: block;
    transition: all 0.5s ease-in-out;
    border-radius: 4px;
}
.nav-items .nav-link:hover {
    background-color: #a89a9a;
    transform: translateX(5px); /* Mută butonul spre dreapta cu 5px */
}
/* hero style*/
.hero{
    height: 100vh;
    position: relative; 
    padding-bottom: 0;
}
/* Stilizare video de fundal */
.background-video {
    position: absolute; /* Poziționează videoclipul în spatele conținutului */
    top: 0;
    left: 0;
    width: 100%; /* Se întinde pe toată lățimea secțiunii */
    height: 100%; /* Se întinde pe toată înălțimea secțiunii */
    object-fit: cover; /* Se ajustează pentru a acoperi complet secțiunea fără distorsionare */
    z-index: -1; /* Videoclipul rămâne în fundal */
    opacity: 1; /* Ușoară transparență pentru un efect estetic */
    /* Optimizări pentru performanță */
    will-change: auto;
    transform: translateZ(0); /* Forțează accelerarea hardware */
    backface-visibility: hidden;
}
/* Stilizare strat semi-transparent pentru lizibilitate */
.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: none;
    z-index: 0; /* Strat intermediar între video și text */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* Stilizare conținut text */
.hero-content {
    position: relative; /* Conținutul apare deasupra fundalului video */
    z-index: 1; /* Prioritate față de stratul video și overlay */
    color: #fff; /* Text alb pentru contrast */
    text-align: center; /* Centrează textul */
    padding: 15px; /* Spațiere pentru un aspect aerisit */
    text-wrap: balance;
}
.hero-content h1 {
    border: 1px solid #b3b3b3;
    padding: 15px 5px;
    font-size: clamp(1rem, 2vw, 1.2rem); /* Dimensiune dinamică */
    margin-bottom: 15px; /* Spațiu sub titlu */
}  
.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem); /* Dimensiune dinamică */
    margin-bottom: 20px; /* Spațiu sub paragraf */
    line-height: 1.6 ;
    display: block;
    font-family: 'Poppins', sans-serif; /* Font standard */
    font-weight: 300; /* Grosime standard */
    padding: 0 50px; /* Spațiu pe laterale */
}
.btn-primary1 {
    justify-content: center !important;
    align-items: center;
    opacity: 0.8; /* 50% transparent */
    transition: opacity 0.5s; /* tranziție lină pentru interacțiuni */
    font-weight: bold;
    display: inline-block;
    text-decoration: none; /* Elimină sublinierea link-ului */
    color: #fff;
    padding: 1rem 1rem; /* Spațiere internă */
    border-radius: 5px; /* Colțuri rotunjite */
    font-size: clamp(0.9rem, 2vw, 1.2rem); /* Dimensiune dinamică */
    transition: background-color 0.5s, transform 0.5s; /* Efect de tranziție */
    backdrop-filter: blur(8px); /* Creează efectul de apă (necesită suport browser) */
}
.btn-primary1:hover {
    background: rgba(255, 255, 255, 0.463); /* Fundal mai puțin transparent */
    border-color: rgba(255, 255, 255, 0.797); /* Ramă mai intensă */
    opacity: 0.8;
    transform: scale(1.5);
}
@keyframes miscare-buton {
    0% {transform: translateX(0);}
    25% {transform: translateX(5px);}
    50% {transform: translateX(0);}
    75% {transform: translateX(-5px);}
    100% {transform: translateX(0);}
}
.btn-primary:active {
    animation: miscare-buton 0.5s ease; /* Aplică animația la click */
}
.hero-bottom-description {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    font-size: clamp(0.8rem, 2vw, 1.2rem); /* Dimensiune dinamică */
    color: #f8f8f8;
    padding: 0 30px; /* Spațiu pe laterale */  
}
.scrolling-banner {
  width: 100%;
  height: 40px;
  background-color: #534040; /* gri închis */
  overflow: hidden;
  display: flex;
  align-items: center;
}
.scrolling-text {
  white-space: nowrap;
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 20s linear infinite;
  color: #ccc; /* gri deschis */
  font-size: 1.4rem;
  font-family: 'Dancing Script', cursive; /* Font de mână */
  font-weight: 400; /* Grosime font */
  letter-spacing: 2px;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.services {
    background-color: #210e0e; /* Fundal neutru */
    padding: 30px;
}
.image1 {
    width: 100%;
    height: auto;
    max-height: 450px; /* Ajustează după preferință */
    object-fit: cover; /* Asigură că imaginea acoperă complet containerul */
    margin-bottom: 20px; /* Spațiu sub imagine */
}
.services > .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.service-card, .section-title, .section-subtitle {
    text-align: center;
    padding: 1rem;
    position: relative;
}
.service-card .section-title {
    margin-bottom: 10rem; /* Spațiu între titlu și subtitlu */
}
.service-card .section-subtitle {
    margin-top: 0; /* Elimină padding inutil */
}
body {
    background-color:#221414; /* Fondul paginii negru */
    color: rgb(159, 158, 158); /* Scrisul alb */
    font-family: 'Poppins', sans-serif; /* Font standard */
} 
.service-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  transition-delay: calc(var(--index) * 0.3s);
}
.service-card.show {
  opacity: 1;
  transform: translateY(0);
}
.service-card video {
  display: block;
  max-width: 300px; /* Lățime maximă a videoclipului */
  width: 100%; /* Lățime completă a containerului */
  height: auto;
  margin: 0 auto; /* Centrează videoclipul */
  object-fit: cover;
  margin-bottom: 20px;
  border: none;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card video:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255,255,255,0.7);
    cursor: pointer;
}
@media screen and (min-width: 768px) {
    .services > .container {
        grid-template-columns: repeat(2, 1fr);/* Două coloane egale */
    }
   .image1 {
    max-height: 500px;/* Ajustează după preferință */
  } 
}
/*gallery style*/
.gallery {
  padding: 30px;
  background-color:#210e0e;
  text-align: center;
  margin: 0 auto; 
  display: grid;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.gallery .section-title,
.gallery .section-subtitle {
  text-align: center;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
}
/* Stilizare pentru container */
.wide-image-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: black;
}
/* Stilizare pentru imagine */
.wide-image-container img {
  width: 100%; /* Lățime mai mare pentru efectul de panoramare */
  height: auto;
  display: block;
  position: relative; /* Modificare din absolute în relative */
  animation: panorama 6s ease-in-out infinite alternate;
}
/* Definirea animației */
@keyframes panorama {
  from {
    transform: translateX(-15%);
  }
  to {
    transform: translateX(0);
  }
}
/* Stilizare pentru cardurile din galerie */
.gallery-card video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-card video:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255,255,255,0.7);
    cursor: pointer;
}
.gallery
.gallery-card {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
}
.gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-card img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}
.gallery-card figcaption {
  color: #8b8b8b;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}
/* Media Query pentru ecrane mari */
@media (min-width: 768px) {
  .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery .section-title,
  .gallery .section-subtitle,
  .gallery .wide-image-container {
    grid-column: 1 / -1; /* Ocupă toate coloanele */
    justify-self: center;
  }
  .wide-image-container img {
    width: 100%; /* Lățime fixă pentru imaginea largă */
    height: 300px; /* Înălțime fixă pentru imaginea largă */
    object-fit: cover; /* Asigură că imaginea acoperă complet containerul */
    object-position: center; /* Centrare a imaginii */
  }
  .gallery .section-title {
    margin-bottom: 20px; /* Spațiu sub titlu */
  }
  .gallery .section-subtitle {
    margin-bottom: 10px; /* Spațiu sub subtitlu */
  }
  .gallery-card {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  }
/*about style*/
.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #210e0e;
    text-align: center;
}
.section-subtitle {
    color: #b3b3b3 !important; /* Culoare text */
    font-size: clamp(1.4rem, 2vw, 2rem); /* Dimensiune dinamică */
    margin-bottom: 40px; /* Spațiu sub subtitlu */
    padding: 0 20px; /* Spațiu pe laterale */
    font-family: 'Dancing Script', cursive; /* Font de mână */ 
    font-weight: 500; /* Grosime font */
    letter-spacing: 2px;

}
    
.about-section .container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    width: 100% !important;
    box-sizing: border-box;
}
.about-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    animation: move-up 6s ease-in-out;
    animation-delay: calc(0.7s * var(--index, 0));
}
.about-card img,
.about-card video {
    max-width: 300px;
    height: auto;
    border-radius: 50%;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    margin-bottom: 20px;
    object-fit: cover;
}
.about-card img:hover,
.about-card video:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255,255,255,0.7);
    cursor: pointer;
}
.description {
    text-align: center;
    font-size: 16px;
    color: #8b8b8b;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: 20px; /* Spațiu pe laterale */
    margin-right: 20px; /* Spațiu pe laterale */
    animation: move-up 6s ease-in-out;
    animation-delay: calc(0.7s * var(--index, 0));
}
.image2 {
    display: block;
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
    margin-top: 90px;
}
/* Animație de apariție */
@keyframes move-up {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* Responsive pentru about */
@media (min-width: 768px) {
    .about-section .container {
        padding: 0 2rem 60px 2rem;
    }
    .about.section-subtitle {
        font-size: clamp(1.2rem, 2vw, 1.5rem); /* Dimensiune dinamică */
        margin-bottom: 60px; /* Spațiu sub subtitlu */
        left: 50%;
    } 
    .about-card {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: left;
        gap: 40px;
    }
    .about-card:nth-child(even) {
        flex-direction: row-reverse;
    }
    .about-card img,
    .about-card video {
        margin-bottom: 0;
        margin-left: 30px;
    }
    .about-card:nth-child(even) img,
    .about-card:nth-child(even) video {
        margin-right: 0;
        margin-left: 30px;
    }
    .image2 {
        max-height: 400px;
        object-fit: cover;
        object-position: center; /* Asigură că imaginea este centrată */
    }
}
/* Secțiunea contact */
.contact-section {
  display: flex;
  flex-direction: column; /* Elemente aranjate pe verticală */
  align-items: center; /* Centrează conținutul pe orizontală */
  background-color:#210e0e ; /* Fundal neutru */
  color: #b3b3b3; /* Culoare text */
  padding: 30px;/* Spațiu interior */
  flex-grow: 1; /* Permite secțiunii să ocupe tot spațiul disponibil */
  text-align: center; /* Aliniere la centru */
  margin: 0 auto !important; /* Centrează secțiunea */
}
.contact {
  margin: 0 auto; /* Centrează conținutul */
  font-family: Arial, Helvetica, sans-serif; /* Font standard */
}
.contact .section-title {
  font-size: clamp(1.8rem, 2vw, 2rem ) ; /* Dimensiune mai mare pentru titlu */
  color: #faf8f8; /* Culoare text */
  margin-bottom: 10px; /* Spațiu sub titlu */
  padding: 20px;
  font-family: 'Dancing Script', cursive; /* Font de mână */
  font-weight: 500; /* Grosime font */
  animation: slide-in-right 6s ease-in-out!important; /* Animație de intrare */
  animation-delay: 0.5s; /* Întârziere pentru animație */
}
/* Animație pentru titlul din sectiunea contact, sectiunea-subtitle*/
@keyframes slide-in-right {
  0% {
    transform: translateX(100%); /* Pornește din dreapta */
    opacity: 0; /* Invizibil */
  }
  100% {
    transform: translateX(0); /* Se poziționează la mijloc */
    opacity: 1; /* Devine vizibil */
  }
}
.contact .section-subtitle {
  font-size: clamp(1.5rem, 2vw, 1.7rem); /* Dimensiune dinamică */
  color: #b3b3b3; /* Culoare text */
  margin-bottom: 20px; /* Spațiu sub subtitlu */
  font-family: 'Dancing Script', cursive; /* Font de mână */
  font-weight: 500; /* Grosime font */
  animation: slide-in-right 6s ease-in-out; /* Animație de intrare */
  animation-delay: 0.5s; /* Întârziere pentru animație */
  text-align: center; /* Aliniere la centru */
}
.contact .description {
  border: 1px solid #a89a9a;
  font-size: clamp(1.1rem, 2vw, 1.2rem); /* Dimensiune dinamică */
  color: #b3b3b3; /* Culoare text */
  font-family: 'Dancing script', cursive; /* Font de mână */
  font-weight: 300; /* Grosime font */
  margin-bottom: 30px; /* Spațiu sub descriere */
  line-height: 1.6; /* Spațiere între linii */
  text-align: center;
  animation: none; /* Elimină orice animație */
}
.logo-container {
  margin: 8px 0; /* Spațiu deasupra și dedesubt */
}
@keyframes spinLogo {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
.logo-container img {
  transform-origin: center;
  animation: spinLogo 10s linear infinite;
}
.contact-logo {
  max-width: 200px; /* Lățimea maximă a imaginii */
  height: auto; /* Păstrează proporțiile */
  display: inline-block; /* Asigură afișarea corectă */
}
.article-links {
    text-align: center;
    margin-bottom: 30px;
    margin-left: 15px;
    margin-right: 15px;
}
.article-title {
    font-size: clamp(0.9rem, 2vw, 1.1rem); /* Dimensiune dinamică */
    font-weight: bold;
    margin-bottom: 15px;
}
.article-list {
    list-style-type: none;
    padding: 0;
}
.article-list li {
    margin-bottom: 10px;
}
.article-list a {
    text-decoration: none;
    font-size: clamp(0.8rem, 2vw, 1rem); /* Dimensiune dinamică */
    font-weight: 500;
    color:#8b8b8b;
    line-height: 1.4; /* Spațiere între linii */
}
.article-list a:hover {
    color: #e67e76;
  }
/* Stilizare pentru cardurile de contact */
.contact-card {
  margin-bottom: 5px;
}
.btn-primary2{
  backdrop-filter: blur(8px); /* Fundal blurat */
  color: #fff;
  text-decoration: none; /* Elimină sublinierea link-ului */
  max-width: 150px; /* Lățimea maximă a butonului */
  position: relative; /* Poziționare relativă pentru a permite animații */
  font-size: 12px; /* Ajustează dimensiunea textului */
  padding: 4px 4px; /* Ajustează dimensiunea interioară */ 
  display: flex; /* Flexbox pentru aliniere */
  justify-content: center !important; /* Centrează conținutul */ 
  border-radius: 5px;
}
/* Container pentru centrare */
.map-btn-container {
  display: flex;
  justify-content:center; /* Centrează conținutul pe orizontală */
  align-items: center;
  margin: 30px 0; /* Spațiu deasupra și dedesubt */
}
.fa-map-marker-alt {
  font-size: 16px; /* Ajustează dimensiunea pictogramei */
  margin-right: 5px; /* Spațiu între pictogramă și text */
}
.btn-primary2:hover {
  background: rgba(255, 255, 255, 0.463); /* Fundal mai puțin transparent */
  transform: scale(1.1); /* Mărire subtilă la hover */
  border-color: rgba(255, 255, 255, 0.8); /* Ramă mai intensă */
  opacity: 0.8;
  transform: scale(1.1);
}
/* Social media */
.contact-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content:center; 
  gap: 40px;
  width: 100%;
  margin-top: auto;
}
.social-media {
  display: flex;
  justify-content: space-around; /* Distribuie uniform pe lățimea secțiunii */
  align-items: center;
  gap: 15px;
  width: 100%;
  flex-wrap: nowrap; /* Împiedică trecerea pe alt rând */
}
.contact-item {
  display: flex;
  align-items: center;
  font-size: 20px;
  text-decoration: none;
}
.social-button {
  font-size: 30px;
  text-decoration: none;
  transition: transform 0.3s ease;
  padding: 10px;
}
/* Contact icons color & hover */
.contact-phone {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-phone:hover {
  color:#fff;
}
.contact-item .fa-whatsapp {
  color: #25D366;
  transition: color 0.3s, transform 0.3s;
}
.contact-item .fa-whatsapp:hover {
  color:#25D366;
  transform: scale(4);
}
.contact-item .fa-facebook {
  color: #1877f3;
  transition: color 0.3s, transform 0.3s;
}
.contact-item .fa-facebook:hover {
  color: #1877f3;
  transform: scale(4);
}
.contact-item .fa-instagram {
  color: #e4405f;
  transition: color 0.3s, transform 0.3s;
}
.contact-item .fa-instagram:hover {
  color: #e4405f;
  transform: scale(4);
}

/* Responsive Design */
@media (min-width: 1024px) {
  .container {
    display: flex;
    flex-direction: row; /* Elemente pe un singur rând */
    justify-content: space-around; /* Spațiu uniform între ele */
    align-items: center; /* Centrează conținutul */
    gap: 50px; /* Ajustează spațiul între elemente */
  }
  .contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-media {
    display: flex;
    flex-direction: row; /* Iconițele social media pe orizontală */
    gap: 20px; /* Spațiu între iconițe */
    align-items: center;
  }
}


/* Footer Style */
footer {
    display: flex;
    color: #b3b3b3;
    background-color: #443131;
    padding: 0.8rem 0;
    font-size: clamp(0.5rem, 2vw, 0.7rem);
    margin: 0;
    margin-top: auto;
    width: 100%;
}
footer > .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
}
footer .copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
footer .copyright p {
    margin: 0;
}
footer .footer_text {
    text-align: left;
    flex: 1;
}
footer .footer_text_2 {
    text-align: right;
    flex: 1;
    gap:2px;
}
  /* media query style*/
    @media screen and (min-width: 768px) {
          body {
            margin: 0;
          }
            footer {
              margin-bottom: 0;
            }
            footer > .container {
              padding: 0 1rem; /* Ajustează padding-ul pentru ecrane mari */
              justify-content: space-between;
            }
          /*header style*/
          header .btn-toggle {
            display: none; /* Ascunde butonul de meniu pe ecrane mari */
          }
          header .navigation {
            display: flex; /* Afișează meniul pe ecrane mari */
            flex-basis: auto; /* Permite lățimea automată */
            margin-top: 0; /* Elimină marginea de sus */
          }
          header .nav-items {
            display: flex; /* Afișează elementele de meniu pe orizontală */
            gap: 1rem; /* Spațiu între elemente */
          }
           .nav-items .nav-link {
            padding: 0.5rem; /* Spațiu interior pentru link-uri */
            font-size: 1rem; /* Dimensiune text pentru link-uri */
          }
            header > .container {
              padding-top: 0.3rem;
              padding-bottom: 0.5rem; /* Ajustează padding-ul pentru ecrane mari */
            }}

/* Fix Contact Section alignment on small screens */
@media (max-width: 600px) {
  .container {
    margin: 0 auto;
    max-width: 100vw;
    box-sizing: border-box;
  }
  .contact-section {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    align-items: unset;
    flex-direction: unset;
  }
  .contact {
    width: 100%;
    box-sizing: border-box;
  }
}


