@charset "utf-8";
/* CSS Document */

/* 320px - Telefoane mici (iPhone SE)
   360px - Android standard
   375px - iPhone Mini
   414px - iPhone Pro Max
   480px-600px - Telefoane mari / tablete mici
   <768px - Limită maximă mobile
   768px - Tablete (vertical)
   1024px - Desktop mic
   1280px+ - Desktop mare */







/* ========== FONTURI ========== */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/open-sans-v34-latin-700.woff2') format('woff2');
}

/* festive-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Festive';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/festive-v10-latin-regular.woff2') format('woff2');

 /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}



/*---Inceput-stil-sectiune-header---*/
/* Reset simplu */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

a, button {
  transition: all .2s linear;
}


html{
  overflow-x: hidden;
  scroll-padding-top: 112px;
  scroll-behavior: smooth;
}



body {
  font-family: Arial, sans-serif;
}
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2%;   /* doar 2% pe telefoane, să nu ocupe locul textului */
}

.navbar .logo img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  animation: despreImage 4s ease-in-out infinite;
  border: 1px dotted #ffa366;
}

/* Navbar */
.navbar {
	 position: relative;
  z-index: 20; /* deasupra bannerului */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #444;
  color: #fff;
  padding: 10px 20px;
}


/* ===== Navbar mobil elegant ===== */
.nav-links {
  list-style: none;
  display: flex; 
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  z-index: 20;
  
  /* tranzitie lina */
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
}


 .nav-links li {
  margin: 15px 0;
}

.nav-links a {
  font-family: 'Festive', cursive;
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  padding: 0 30px;
  width: 100%; /* link-ul pe aproape toata latimea */
	 display: block;
  text-align: center;
  border-radius: 10px;
  transition: background 0.3s, transform 0.3s;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.nav-links.open {
  transform: translateX(0);
  opacity: 1;
}


/* Link-uri mobile ascunse implicit */
.nav-links li {
  opacity: 0;
  transform: translateX(50px); /* vin din dreapta */
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Cand meniul e deschis */
.nav-links.open li {
  opacity: 1;
  transform: translateX(0);
}

/* Delay pentru fiecare link (1-5, modifici dupa cate ai) */
.nav-links.open li:nth-child(1) {
  transition-delay: 0.1s;
}
.nav-links.open li:nth-child(2) {
  transition-delay: 0.2s;
}
.nav-links.open li:nth-child(3) {
  transition-delay: 0.3s;
}
.nav-links.open li:nth-child(4) {
  transition-delay: 0.4s;
}
.nav-links.open li:nth-child(5) {
  transition-delay: 0.5s;
}




.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 30; /* sa fie deasupra meniului */
}




/* Buton hamburger */
.hamburger {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
/*---Sfarsit-stil-sectiune-header---*/




/* Banner general */
.banner {
  position: relative;
  width: 100%;
  height: 300px; /* Redus de la 60vh sau mai mult */
  overflow: hidden;
}



.banner .banner-text {
  position: absolute;
	 width: 90%;
	 max-width: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 0;
  border-radius: 10px;
  opacity: 0;
  animation: fadeInUp 1.5s ease-out forwards;
  z-index: 10; /* ca sa fie deasupra imaginii */
}
.banner .banner-text h1 {
	 font-family: 'Festive', cursive;
  color: #fff;
  font-size: 1.5rem !important;
  line-height: 2rem !important;
  white-space: normal;
  text-align: center;
}

/* Zoom lent imagine banner */
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 10s ease; /* zoom lent */
}

/* La hover sau la load (optional) */
.banner:hover img {
  transform: scale(2);
}

/* Text banner initial ascuns */
.banner .banner-text h1,
.banner .banner-text p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Stil initial */
.banner .banner-text .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #e67e22;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  opacity: 0;              /* ascuns initial */
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0); /* shadow initial */
}

/* Clasa show pentru fade-in */
.banner .banner-text .btn.show {
  animation: pulseShadow 1.5s ease infinite;
}


/* Clasa show */
.banner .banner-text h1.show,
.banner .banner-text p.show{
  opacity: 1;
  transform: translateY(0);
}


.banner .banner-text p {
	 font-size: 1rem;
  color: #fff;
  margin-bottom: 15px;
}

.banner .banner-text .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #e67e22;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  opacity: 0; /* ascuns initial */
  transform: translateY(20px); /* vine de jos */
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.banner .banner-text .btn.show {
  opacity: 1;
  transform: translateY(0);
}

.banner .banner-text .btn:hover {
  background: #cf711f;
}


/*---Sfarsit-stil-sectiune-banner---*/






/* ===== Secțiune Intro ===== */
.intro {
  padding: 50px 20px;
  background: #f5f5f5;
  text-align: center;
}

.intro .intro-container h2 {
  font-family: 'Festive', cursive;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.intro .intro-container p {
  max-width: 700px;
  font-size: 1rem;
  line-height: 1.6;
	 margin: auto;
	 color: #333;
}

/* Stil initial */
.intro .intro-container a {
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  
}










/* =========================
   SECTIUNE SERVICII
========================= */
.servicii {
  padding: 10px 0;
  text-align: center;
  background: #f8f8f8;
}

.servicii h2 {
  font-family: 'Festive', cursive;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.servicii-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

/* Fiecare serviciu */
.serviciu {
  background: #fff;
  padding: 30px 20px; /* mai mult padding pentru inaltime */
  border-radius: 10px;
  min-height: 200px; /* inaltime minima */
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.serviciu i {
  color: #333;
  margin-bottom: 15px;
}

.serviciu h3 {
  font-family: 'Festive', cursive;
  font-size: 1.8rem;
	 line-height: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.serviciu p {
  font-size: 1rem;
  line-height: 1.6;
	 color: #333;
}


/* Hover simplu */
.serviciu:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
	 cursor: pointer;
}





/*---Inceput-stil-pagina-servicii---*/
/* ===== Stil Servicii Page ===== */

/* Banner text deja există, dar ajustăm dimensiunea pe mobil */
.banner .banner-text h1 {
  font-family: 'Festive', cursive;
  font-size: 1.2rem;
  line-height: 1.5rem;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}

.banner .banner-text p {
  font-size: 0.9rem;
  line-height: 1.4rem;
  text-align: center;
}

/* Servicii container */
.servicii-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

/* Fiecare serviciu */
.serviciu {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  min-height: 220px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.serviciu i {
  font-size: 2.5rem;
  color: #e67e22;
  margin-bottom: 15px;
}

.serviciu h3 {
  font-family: 'Festive', cursive;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

.serviciu p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  flex-grow: 1;
}

.serviciu .btn {
  margin-top: 15px;
  display: inline-block;
  padding: 10px 18px;
  background: #e67e22;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.serviciu .btn:hover {
  background: #cf711f;
  transform: scale(1.05);
}

/* Hover card efect */
.serviciu:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}




/* --- Banner și carduri inițial ascunse --- */
.banner-text,
.serviciu {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* --- Clasa show pentru când elementul intră în viewport --- */
.banner-text.show,
.serviciu.show {
  opacity: 1;
  transform: translateY(0);
}

/*---Sfarsit-stil-pagina-servicii---*/





/*---Inceput-stil-pagina-despre---*/
/* ========================
   BANNER DESPRE
======================== */
.banner-despre {
  position: relative;
  width: 100%;
  height: 60vh; /* înălțime pe mobil */
  overflow: hidden;
}

.banner-despre .banner-text {
  position: absolute;
  width: 90%;
  max-width: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 0;
  border-radius: 10px;
  opacity: 0;
  animation: fadeInUp 1.5s ease-out forwards;
  z-index: 10;
}

.banner-despre .banner-text h1 {
  font-family: 'Festive', cursive;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.banner-despre .banner-text p {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 15px;
}

/* Zoom imagine banner */
.banner-despre img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 10s ease;
}

.banner-despre:hover img {
  transform: scale(1.05);
}

/* ========================
   SECȚIUNE INTRO DESPRE
======================== */
.intro-despre {
  padding: 50px 20px;
  background: #f5f5f5;
  text-align: center;
}

.intro-despre h2 {
  font-family: 'Festive', cursive;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.intro-despre p {
  max-width: 700px;
  font-size: 1rem;
  line-height: 1.6;
  margin: auto;
  color: #333;
}

.intro-despre .btn {	
	 margin-top: 15px;
  display: inline-block;
  padding: 10px 18px;
  background: #e67e22;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.intro-despre .btn:hover {
  background: #cf711f;
}

/* ========================
   MEDIA QUERIES
/*---Sfarsit-stil-pagina-despre---*/




/*---Inceput-stil-pagina-contact.php---*/
/* ===== Contact Page ===== */
.contact {
  padding: 50px 20px;
  background: #f5f5f5;
  text-align: center;
}

.contact h2 {
  font-family: 'Festive', cursive;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #333;
}

.contact form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact form input,
.contact form textarea {
  padding: 12px 15px;
  font-size: 1rem;
  border-radius: 5px;
  border-bottom: 1px solid #ccc;
  font-family: Arial, sans-serif;
  resize: none;
}

.contact form textarea {
  min-height: 120px;
}

.contact form button {
  padding: 12px 20px;
  font-size: 1rem;
  background: #e67e22;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact form button:hover {
  background: #cf711f;
  transform: scale(1.05);
}

/* Info contact */
.info-contact {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
}

.info-contact h2 {
  font-family: 'Festive', cursive;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.info-contact p {
  font-size: 1rem;
  margin: 8px 0;
  color: #333;
}

.info-contact i {
  color: #e67e22;
  margin-right: 8px;
}

/* ===== Responsive ===== */
/*---Sfarsit-stil-pagina-contact.php---*/



/* Mesaje formular */
.success {
  color: green !important;
  font-weight: bold;
  margin: 15px 0;
}

.error {
  color: red !important;
  font-weight: bold;
  margin: 15px 0;
}




/*---Inceput-stil-sectiune-footer---*/
.footer{
	border-top: 1px dotted #000;
}
.footer .box-container {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
}

.footer .box-container .box h3{
  font-size: 2rem;
	 font-family: 'Festive', cursive;
  color:#444;
  padding: 8px 0;
}
.footer .box-container .box a{
  display: block;
  font-size: 16px;
  padding: 4px 0;
  color:#444;
}
.footer .box-container .box a i{
  padding-right: 8px;
}
.footer .box-container .box a:hover i{
  padding-right: 32px;
}

	.footer .credit p{
		font-size: 1.2rem;
	 font-family: Arial, sans-serif;
  margin: 10px 0;
	 color:#443;
	 text-align: center;
	}

/*---Sfarsit-stil-sectiune-footer---*/




@media (max-width: 340px) {
  .banner .banner-text h1 {
    font-size: 1.8rem !important;
    line-height: 2rem !important;
    white-space: normal;
    text-align: center;
  }
	 .banner .banner-text p {
	 font-size: 1rem;
  color: #fff;
  margin-bottom: 15px;
}
	
}





/* Telefoane mici */
@media (max-width: 480px) {
	section {
    margin: 0 1%;
  }
  .contact h2 {
    font-size: 1.5rem;
  }

  .contact form input,
  .contact form textarea,
  .contact form button {
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  .info-contact h2 {
    font-size: 1.4rem;
  }

  .info-contact p {
    font-size: 0.9rem;
  }
}








@media (min-width: 600px) {
  .banner .banner-text h1 {
    font-size: 1rem;
  }
}





/* Tablete */
@media (min-width: 481px) and (max-width: 768px) {
  .contact h2 {
    font-size: 1.6rem;
  }

  .contact form input,
  .contact form textarea,
  .contact form button {
    font-size: 1rem;
    padding: 12px 15px;
  }

  .info-contact h2 {
    font-size: 1.5rem;
  }

  .info-contact p {
    font-size: 1rem;
  }
}






@media (max-width: 767px){
			/*---Inceput-stil-sectiune-footer---*/
	
	
	
	
.footer .box-container {
  display: grid;
  grid-template-columns: 1fr !important; /* forțăm 1 coloană */
  text-align: center;
}

/*---Sfarsit-stil-sectiune-footer---*/
			
			
			
			
			
		}














  
	
	/* Desktop ramane normal */
@media (min-width: 768px) {
	
	.container {
    padding: 0 3%;
  }
	
  /* Ascundem butoanele mobile */
  .hamburger,
  .close-btn {
    display: none;
  }

  /* Navbar desktop */
  
  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    height: auto;
    width: auto;
    background: none;
    backdrop-filter: none;
    justify-content: flex-end;
    align-items: center;
			
			/* Resetam ascunderea din mobil */
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }



  .nav-links li {
    opacity: 0;
    transform: translateY(-10px); /* vin de sus */
    animation: fadeInDown 0.6s forwards;
  }

  .nav-links li:nth-child(1) { animation-delay: 0.1s; }
 .nav-links li:nth-child(2) { animation-delay: 0.2s; }
 .nav-links li:nth-child(3) { animation-delay: 0.3s; }
  .nav-links li:nth-child(4) { animation-delay: 0.4s; }
  .nav-links li:nth-child(5) { animation-delay: 0.5s; }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
  .nav-links a {
    font-size: 1.6rem;
    width: auto;
    padding: 10px 15px;
  }

  /* Banner desktop */
  .banner {
    height: 300px; /* mai inalt pe desktop */
  }

.banner .banner-text{
		width: 80%;
		max-width: 600px;
		padding: 30px 50px;
	z-index: 10; /* sa fie deasupra imaginii */
    opacity: 0;  /* pastreaza fade-in */
    animation: fadeInUp 1.5s ease-out forwards;
	}

 

  .banner .banner-text h1 {
	 font-family: 'Festive', cursive;
  color: #fff;
  font-size: 2rem !important;
  line-height: 2.5rem !important;
  white-space: normal;
  text-align: center;
}
	 .banner .banner-text p {
	 font-size: 1rem;
  color: #fff;
  margin-bottom: 15px;
}
	/*---Sfarsit-stil-sectiune-banner---*/
	
	
	/*---Inceput-stil-sectiune-intro---*/
.intro h2 {
    font-size: 2.8rem;
  }

  .intro p {
    font-size: 1.1rem;
  }

  .intro .btn {
    font-size: 1.1rem;
    padding: 14px 35px;
  }
/*---Sfarsit-stil-sectiune-intro---*/










/*---Inceput-stil-pagina-servicii---*/
.servicii-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .serviciu {
    flex: 1 1 280px;
    margin: 15px;
    min-height: 250px;
  }

  .banner .banner-text h1 {
    font-size: 2rem;
    line-height: 2.2rem;
  }

  .banner .banner-text p {
    font-size: 1.2rem;
  }
/*---Sfarsit-stil-pagina-servicii---*/	





/*---Inceput-stil-pagina-despre---*/
.banner-despre {
    height: 300px;
  }

  .banner-despre .banner-text {
    width: 80%;
    max-width: 600px;
    padding: 30px 50px;
  }

  .banner-despre .banner-text h1 {
    font-size: 2rem;
  }

  .banner-despre .banner-text p {
    font-size: 1.2rem;
  }

  .intro-despre h2 {
    font-size: 2.8rem;
  }

  .intro-despre p {
    font-size: 1.1rem;
  }

  .intro-despre .btn {
    font-size: 1.1rem;
    padding: 14px 35px;
  }
/*---Sfarsit-stil-pagina-despre---*/

	
	
	/*---Inceput-stil-sectiune-footer---*/
	
.footer .box-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}



/*---Sfarsit-stil-sectiune-footer---*/
	
		
	
	
	
}







/* Desktop */
@media (min-width: 769px) {
  .contact h2 {
    font-size: 2rem;
  }

  .contact form input,
  .contact form textarea,
  .contact form button {
    font-size: 1rem;
    padding: 14px 20px;
  }

  .info-contact h2 {
    font-size: 1.8rem;
  }

  .info-contact p {
    font-size: 1.1rem;
  }
}








@media (min-width: 992px) {
  .banner .banner-text h1 {
    font-size: 3rem;
  }
}

	







@media (min-width: 1024px){
	

	.banner {
  position: relative;
  width: 100%;
  height: 400px; /* Redus de la 60vh sau mai mult */
  overflow: hidden;
}

.banner .banner-text{
		width: 80%;
		max-width: 800px;
		padding: 50px 100px;
	 z-index: 10; /* sa fie deasupra imaginii */
  opacity: 0;  /* pastreaza fade-in */
  animation: fadeInUp 1.5s ease-out forwards;
	}

 

  .banner .banner-text h1 {
	 font-family: 'Festive', 'Open Sans', cursive, sans-serif;
  color: #fff;
  font-size: 3rem !important;
  line-height: 3.5rem !important;
  white-space: normal;
  text-align: center;
}
	 .banner .banner-text p {
	 font-size: 1rem;
  color: #fff;
  margin-bottom: 15px;
}
	/*---Sfarsit-stil-sectiune-banner---*/
	
	
	.intro-despre .intro-container h2 {
  font-family: 'Festive', cursive;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}
	
	/*---Inceput-stil-pagina-servicii---*/
.servicii-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .serviciu {
    flex: 1 1 250px;
    margin: 15px;
    min-height: 250px;
  }

  .banner .banner-text h1 {
    font-size: 2rem;
    line-height: 2.2rem;
  }

  .banner .banner-text p {
    font-size: 1.2rem;
  }
/*---Sfarsit-stil-pagina-servicii---*/	

	
	.servicii h2 {
    font-size: 2rem;
  }
  
  .serviciu h3 {
    font-size: 1.8rem;
  }
  
  .serviciu p {
    font-size: 1.1rem;
  }

  .serviciu {
    min-height: 300px; /* inaltime generala pe desktop mare */
  }
	
	
	
	
	
	
	/*---Inceput-stil-pagina-servicii.html---*/
	.serviciu {
    min-height: 300px;
    padding: 35px 30px;
  }

  .serviciu h3 {
    font-size: 1.8rem;
  }

  .serviciu p {
    font-size: 1.1rem;
  }
	/*---Sfarsit-stil-pagina-servicii.html---*/
	
	
	
	
	
	/*---Inceput-stil-pagina-despre---*/
	.banner-despre .banner-text h1 {
    font-size: 2.5rem;
  }

  .banner-despre .banner-text p {
    font-size: 1.4rem;
  }
	/*---Sfarsit-stil-pagina-despre---*/
	
	
	

/*---Inceput-stil-sectiune-footer---*/
		
.footer .box-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}


/*---Sfarsit-stil-sectiune-footer---*/

	
	
	
	
}






@media (min-width: 1280px){
	.container {
    max-width: 1600px;
    padding: 0 5%;   /* aici ai loc, deci spațiul lateral arată mai aerisit */
  }
	.banner {
    height: 500px; /* mai inalt pe desktop */
  }

.banner .banner-text{
		width: 80%;
		max-width: 1000px;
		padding: 80px 120px;
	 z-index: 10; /* sa fie deasupra imaginii */
  opacity: 0;  /* pastreaza fade-in */
  animation: fadeInUp 1.5s ease-out forwards;
	}

 

  .banner .banner-text h1 {
    font-family: 'Festive', cursive;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
  }

  .banner-text p {
    font-size: 1.2rem;
  }
	/*---Sfarsit-stil-sectiune-banner---*/

	.servicii h2 {
  font-family: 'Festive', cursive;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}
	
	
	
}












/* ===== Animatie Banner Text ===== */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.banner-text {
  opacity: 0;
  animation: fadeInUp 1.5s ease-out forwards;
}




/* Puls cu shadow */
@keyframes pulseShadow {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 rgba(0,0,0,0);
  }
  50% {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 rgba(0,0,0,0);
  }
}

.banner-text .btn.show {
  animation: pulse 1.5s ease infinite;
  }


/* Hover simplu */
.banner-text .btn:hover {
  background: #cf711f;
}






/* ========== ANIMAȚII ========== */
@keyframes despreImage {
  0%, 100% {
    transform: scale(.9);
    border-radius: 4% 95% 6% 95% / 95% 4% 92% 5%;
  }
  50% {
    transform: scale(0.8);
    border-radius: 95% 4% 97% 5% / 4% 94% 3% 95%;
  }
}








