
/* =====================================
   DIMENSIUNI DE TESTARE (Mobile First)
   =====================================

   320px  - Telefoane mici (iPhone SE)
   360px x 640px  - Android standard
   375px x 667px  - iPhone 12/13 Mini
   414px x 896px  - iPhone Pro Max
   480px - 600px - Telefoane mari / mici tablete
   <768px - Limită maximă pentru mobile
   768px  - Tablete (ex: iPad vertical)
   1024px - Desktop mic (iPad orizontal)
   1280px+ - Desktop normal / mare
*/

/* Ex. media queries:
@media (min-width: 768px) { ... }  -> tabletă
@media (min-width: 1024px) { ... } -> desktop mic
@media (min-width: 1280px) { ... } -> desktop mare




@charset "utf-8";
/* CSS Document */


/* ========== 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('/webdesign-simplu/fonts/festive-v10-latin-regular.woff2') format('woff2');
 /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* Reset și fonturi */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
  padding: 0 1rem;
}

header .container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem; /* doar lateral */
}

/* Header */
header {
  background-color: #004466;
  padding: 1rem 0;
  color: white;
 position: relative;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  padding: 0;
  margin: 0;
}
header .container .logo img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  animation: despreImage 4s ease-in-out infinite;
  border: 1px dotted #ffa366;
}



header {
  overflow: visible; /* să nu taie hamburger-ul */
}

nav {
  overflow: hidden; /* să limiteze alte umbre */
  
}


/* Meniu mobil - implicit ascuns */
.meniu {
  display: none;
  flex-direction: column;
  background-color: #004466;
  padding: 1rem;
  margin-top: 1rem;
  position: absolute;
  top: 3.5rem;
  left: 0;
  right: 0;
  width: 100%;
  border-radius: 0;
  z-index: 9;
  text-align: center;
 
}

/* Meniu mobil - când e activ */
.meniu.activ {
  display: flex;
  
}
.meniu li {
  display: inline-block;
  margin: 0;
  
}

.meniu a {
  color: white;
  text-decoration: none;
  padding: 16px;
  font-weight: bold;
  width: 100%;
}
.meniu a:hover {
  background-color: transparent;
  color: white;
}

#hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
	
	 position: relative; /* sau fixed/absolute, după caz */
  z-index: 9999;      /* să fie mereu deasupra */
}
/* Intro cu imagine */
.intro {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #e6f2ff;
  font-family: 'Festive', cursive, sans-serif;
}

.hero-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 10px;
  object-position: 50% 10%; – un control mai fin (50% pe orizontală, 20% pe verticală)
}

.intro h2 {
  margin-bottom: 1rem;
  font-family: 'Festive', cursive, sans-serif;
  font-size: 1.6rem; 
}

.intro p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-family: sans-serif;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #004466;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  font-family: sans-serif;
}

/* Secțiune servicii */
.servicii-preview {
  background-color: #fff;
  padding: 2rem 1rem;
  margin-top: 2rem;
}

.servicii-preview h3 {
  font-family: 'Festive', cursive, sans-serif;
  font-size: 1.6rem; 
  text-align: center;
  margin-bottom: 1.5rem;
  color: #004466;
}

.lista-servicii {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-servicii h4{
	font-family: 'Festive', cursive, sans-serif;
  font-size: 1.4rem; 
  text-align: center;
  margin-bottom: 1.5rem;
  color: #004466;
}

.lista-servicii li {
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 5px solid #ddd;
  background-color: #f9f9f9;
  border-radius: 8px;
  transition: 0.3s ease;
}

.lista-servicii li:hover {
  background-color: #eef7fb;
  border-left-color: #007acc;
  cursor: pointer;
}

.lista-servicii h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.btn-container {
  text-align: center;
  margin-top: 1.5rem;
}

.servicii-preview .container .btn-container .btn-secondary {
  background-color: #007acc;
  color: #fff;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.servicii-preview .container .btn-container .btn-secondary:hover {
  background-color: #005f99;
}


/* Stiluri generale pentru servicii */
.servicii-detaliate {
  padding: 2rem 1rem;
  background-color: #f7f7f7;
}

.servicii-detaliate h2 {
  margin-bottom: 1rem;
  font-family: 'Festive', cursive, sans-serif;
  font-size: 1.6rem; 
	 text-align: center;
}

.grid-servicii {
  display: grid;
  gap: 1.5rem;
}

.serviciu {
  background-color: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.serviciu h3{
	 font-family: 'Festive', cursive, sans-serif;
  font-size: 1.6rem; 
  text-align: center;
  color: #004466;
}
.icon-serviciu {
  margin-bottom: 1rem;
  text-align: center;
}
.icon-serviciu svg {
  width: 48px;
  height: 48px;
  fill: #004466;
  transition: transform 0.3s ease;
}
.serviciu:hover .icon-serviciu svg {
  transform: scale(1.1);
}



/*---Inceput-stil-sectiune-recomandari---*/

		.servicii .heading{
  font-family: 'Festive', cursive, sans-serif;
  font-size: 1.8rem; 
	 text-align: center;
		}
		.servicii .title{
			font-family: 'Festive', cursive, sans-serif;
  font-size: 1.6rem; 
  text-align: center;
  color: #004466;
		}
		
		.servicii .card-container{
			display: flex;
			justify-content: center;
			flex-wrap: wrap;
			padding: 5px 0;
		}
		.servicii .card-container .card{
			width: 300px;
			height: 200px;
			margin: 5px 2px;
			position: relative;
			overflow: hidden;
			
			z-index: 1000;
		}
		.servicii .card-container .card:hover{
			
			cursor: pointer;
			
		}
			.servicii .card-container .card:hover .info{
			bottom: 0;
			transition: .2s linear;	
		}
		.servicii .card-container .card img{
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
		.servicii .card-container .card .info{
			width: 100%;
			height: 100%;
			position: absolute;
			bottom: -100%;
			left: 0;
			background: linear-gradient(transparent, #000);
			padding: 0 10px;
			padding-top: 5%;
		}
		.servicii .card-container .card .info h3{
			font-family: 'Festive', cursive, sans-serif;
  font-size: 1.6rem; 
  text-align: center;
  color: #fff;
		}
		.servicii .card-container .card .info .stars i{
			font-size: 16px;
			color: gold;
		}
		.servicii .card-container .card .info p{
			font-size: 16px;
			line-height: 18px;
			color: #eee;
			text-align: center;
		}
		.servicii .card-container .card .info .btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #004466;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  font-family: sans-serif;
			cursor: pointer;
}
		/*---Sfarsit-stil-sectiune-recomandari---*/



/* Buton secundar pentru pagina index */

.btn-secondary {
  background-color: #006699;
  margin-top: 1.5rem;
  display: inline-block;
  padding: 0.6rem 1.2rem;
  color: white;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #004466;
}







/*---Inceput-stil-sectiune-despre---*/
body.pagina-secundara .prezentare-mester .container h3{
	font-family: 'Festive', cursive, sans-serif;
  font-size: 1.8rem; 
  text-align: center;
  margin-bottom: 1.5rem;
  color: #004466;
}
/* Pagini secundare */
body.pagina-secundara .intro-mica {
  background-color: #e6f2ff;
		transition: all .2s linear;
  text-align: center;
  padding: 2rem 1rem;
  border-bottom: 2px solid #ccc;
  color: #004466;
}

body.pagina-secundara .intro-mica .container h2 {
  margin-bottom: 1rem;
  font-family: 'Festive', cursive, sans-serif;
  font-size: 1.8rem; 
}

body.pagina-secundara .intro-mica p {
  font-size: 1rem;
  font-family: sans-serif;
  margin: 0 auto;
}





body.pagina-secundara .sectiune-dubla {
  background-color: transparent; /* fără fundal comun, să se vadă fundalul general al paginii */
  padding: 2rem 1rem;
}

body.pagina-secundara .sectiune-dubla .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

body.pagina-secundara .bloc-mester,
body.pagina-secundara .bloc-valori {
  background-color: #ffffff; /* alb curat */
  padding: 1.5rem 2rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

body.pagina-secundara .bloc-mester:hover,
body.pagina-secundara .bloc-valori:hover{
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	cursor: pointer;
}

body.pagina-secundara .sectiune-dubla h3 {
  text-align: center;
  font-family: 'Festive', cursive, sans-serif;
  font-size: 1.8rem;
	margin-bottom: 1rem;
}

body.pagina-secundara .sectiune-dubla ul {
  list-style: none;
  padding: 0;
}

body.pagina-secundara .sectiune-dubla li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
}

body.pagina-secundara .sectiune-dubla li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1d6f42;
  font-weight: bold;
}







body.pagina-secundara .despre{
			display: flex;
			align-items: center;
			flex-wrap: wrap;
   margin: 0 auto;
			transition: all .2s linear;
		}
		body.pagina-secundara .despre .image{
			flex: 1 1 100%;
			border: none;
		}
		body.pagina-secundara .despre .image img{
		width: 100%;
		display: block;
		object-fit: cover;
		margin: 0 auto;
		padding: 16px;
		border: 1px dotted #fff;
		animation: despreImage 4s linear infinite;
		}
		@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%;
  }
}
		body.pagina-secundara .despre .content{
			flex: 1 1 100%;
			
		}
		body.pagina-secundara .despre .content h3{
		color: #004466;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'Festive', cursive, sans-serif;
		}
		body.pagina-secundara .despre .content p{
			font-size: 1rem;
   padding-bottom: 1.5rem;
   font-family: sans-serif;
		}
		body.pagina-secundara .despre .content p span{
			color: red;
		}
body.pagina-secundara .despre .content .btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #004466;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  font-family: sans-serif;
	 margin-bottom: 1rem;
}
/*---Sfarsit-stil-sectiune-despre---*/




/*---contact---*/
body.pagina-secundara .map .container .map{
	width: 100%;
	height: 200px;
	margin: 0 auto;
}



body.pagina-secundara .contact{
			text-align: center;
			background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url("../images/contact.png");
			background-repeat: no-repeat;
			background-position: top;
			background-size: cover;
			background-attachment: fixed;
		}
		/*---Inceput-stil-sectiune-produse---*/
		body.pagina-secundara .contact .heading{
			font-size: 2rem;
			color: #fff;
			text-align: center;
			display: inline-block;
			font-family: 'Festive';
   font-style: normal;
   font-weight: 400;
		}
		body.pagina-secundara .contact .title{
			font-size: 1rem;
			color: #fff;
		 font-family: 'Open Sans';
   font-style: normal;
   font-weight: 400;
			padding: 0 1rem;
		}
		body.pagina-secundara .contact form{
			width: 100%;
			margin: 2px auto;
		}
		body.pagina-secundara .contact form .inputBox{
			display: flex;
			justify-content: center;
			flex-wrap: wrap;
		}
		body.pagina-secundara .contact form .inputBox input,
		body.pagina-secundara .contact form textarea{
			width: 100%;
			height: 1.6rem;
			margin: 0.2rem;
			padding: 0.3rem;
			text-transform: none;
			border: none;
			border-bottom: 1px dotted #fff;
			background: none;
			color: #fff;
			font-size: 1rem;
		}
		body.pagina-secundara .contact form .inputBox input::placeholder,
		body.pagina-secundara .contact form textarea::placeholder{
			color: #ccc;
			font-family: 'Open Sans';
   font-style: normal;
   font-weight: 400;
			font-size: 1rem;
		}
		body.pagina-secundara .contact form .inputBox input:focus,
		body.pagina-secundara .contact form textarea:focus{
			border-color: #2273f8;
		}
		body.pagina-secundara .contact form textarea{
			height: 120px;
			resize: none;
		}
		.contact form .btn{
  display: inline-block;
  padding: 0.6rem 1.2rem;
  color: white;
		background: none;
		border: none;
		border-bottom: 1px dotted #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  font-family: sans-serif;
			margin: 1rem 0;
			cursor: pointer;
}
		/*---Sfarsit-stil-sectiune-contact---*/



/* Footer */

footer .container {
  background-color: #e6f2ff;
  padding: 20px 15px;
  font-size: 0.9rem;
  color: #666;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
}

footer .container .footer-nav a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  display: block;
  margin: 0;
  padding: 0.2rem 6rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  transition: color 0.3s ease;
}

footer .container .footer-nav a:hover {
  background: #fff;
  color: #003366;
}
footer .container p{
 text-align: center;
 font-size: 1rem;
 color: #000;
}

















@media (max-width: 320px) {
  .meniu {
    padding: 0;
    margin: 0;
  }

  .hamburger {
    margin-right: 10px; /* Dacă vrei să controlezi și poziționarea acestuia */
  }
}






/* === De la 768px în sus - afișăm meniul clasic, ascundem hamburgerul === */
@media (min-width: 768px) {
 header .container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 2rem;
}
 
header .container .logo {
  flex: 0 0 auto;
}
.logo img {
  padding-left: 0.5rem;
}
header .container nav {
  flex: 1;
  text-align: right;
}

header .container nav .meniu {
  display: flex !important;
  flex-direction: row !important; /* trecem clar pe orizontală */
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  background: transparent;
  position: static;
  padding: 0;
  margin: 0;
  width: auto;
}
.meniu li {
    width: auto;
  }
.meniu li a {
  line-height: 80px; /* să alinieze textul cu logo-ul */
}


  #hamburger {
    display: none;
  }  
 
 
 /* Intro cu imagine */
.intro {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #e6f2ff;
  font-family: 'Festive', cursive, sans-serif;
}

.hero-img {
  width: 600px;
  max-height: 300px;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 10px;
  object-position: 50% 10%; – un control mai fin (50% pe orizontală, 20% pe verticală)
}

.intro h2 {
  margin-bottom: 1rem;
  font-family: 'Festive', cursive, sans-serif;
  font-size: 1.6rem; 
}

.intro p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-family: sans-serif;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #004466;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  font-family: sans-serif;
}

/* Secțiune servicii */
.servicii-preview {
  
  background-color: #fff;
  padding: 2rem 1rem;
  margin-top: 2rem;
}

.servicii-preview h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #004466;
}

.lista-servicii {
  list-style-type: none;
  padding: 0;
}

.lista-servicii {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .lista-servicii li {
    margin-bottom: 0;
   padding: 1rem 2rem;
   border-radius: 8px;
   background: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
 
 
 .grid-servicii {
    grid-template-columns: repeat(2, 1fr);
  }
 .btn-container{
  max-width: 1200px;
  margin: 0 auto;
 }
	
	
	
	/*---despre---*/
	body.pagina-secundara .sectiune-dubla .container {
    flex-direction: row;
    justify-content: space-between;
		  max-width: 1200px;
		  margin: 0 auto;
  }

  body.pagina-secundara .bloc-mester,
  body.pagina-secundara .bloc-valori {
    flex: 1;
    padding: 0 1rem;
  }

  body.pagina-secundara .bloc-mester h3,
  body.pagina-secundara .bloc-valori h3 {
    text-align: left;
  }
	
	
	
	
	body.pagina-secundara .despre{
			display: flex;
			align-items: center;
			justify-content: center;
			flex-wrap: wrap;
   margin: 0 auto;
			transition: all .2s linear;
		}
		body.pagina-secundara .despre .image{
			flex: 1 1 300px;
			height: 400px;
			border: none;
		}
		body.pagina-secundara .despre .image img{
		width: 252px;
		height: 400px;
		display: block;
		object-fit: cover;
		margin: 0 auto;
		padding: 16px;
		border: 1px dotted #fff;
		animation: despreImage 4s linear infinite;
		}
		@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%;
  }
}
		body.pagina-secundara .despre .content{
			flex: 1 1 300px;
		
		}
		body.pagina-secundara .despre .content h3{
		color: #004466;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'Festive', cursive, sans-serif;
		}
		body.pagina-secundara .despre .content p{
			font-size: 1rem;
   padding-bottom: 1.5rem;
   font-family: sans-serif;
		}
		body.pagina-secundara .despre .content p span{
			color: red;
		}
body.pagina-secundara .despre .content .btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #004466;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  font-family: sans-serif;
	 margin-bottom: 1rem;
}
	
	body.pagina-secundara .despre{
			display: flex;
			align-items: center;
			flex-wrap: wrap;
   max-width: 1200px;
   margin: 0 auto;
			gap: 16px;
			transition: all .2s linear;
		}
		body.pagina-secundara .despre .image{
			flex: 1 1 270px;
			border: none;
		}
		body.pagina-secundara .despre .image img{
		width: 252px;
		height: 400px;
		display: block;
		object-fit: cover;
		margin: 0 auto;
		padding: 16px;
		border: 1px dotted #fff;
		animation: despreImage 4s linear infinite;
		}
		@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%;
  }
}
		body.pagina-secundara .despre .content{
			flex: 1 1 450px;
			
		}
		body.pagina-secundara .despre .content h3{
			color: #004466;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'Festive', cursive, sans-serif;
		}
		.despre .content p{
			font-size: 1.2rem;
   font-family: sans-serif;
		}
		.despre .content p span{
			color: red;
		}
	
	
	
	/*---contact---*/
body.pagina-secundara .map .container .map{
	width: 100%;
	height: 300px;
	margin: 0 auto;
}
	
	
	
	
body.pagina-secundara .contact{
			text-align: center;
			background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url("../images/contact.png");
			background-repeat: no-repeat;
			background-position: top;
			background-size: cover;
			background-attachment: fixed;
		}
		/*---Inceput-stil-sectiune-produse---*/
		body.pagina-secundara .contact .heading{
			font-size: 2.2rem;
			color: #fff;
			text-align: center;
			display: inline-block;
			font-family: 'Festive';
   font-style: normal;
   font-weight: 400;
		}
		body.pagina-secundara .contact .title{
			font-size: 1rem;
			color: #fff;
		 font-family: 'Open Sans';
   font-style: normal;
   font-weight: 400;
			padding: 0 1rem;
		}
		body.pagina-secundara .contact form{
			width: 600px;
			margin: 0 auto;
		}
		body.pagina-secundara .contact form .inputBox{
			display: flex;
			justify-content: center;
			flex-wrap: wrap;
		}
		body.pagina-secundara .contact form .inputBox input,
		body.pagina-secundara .contact form textarea{
			width: 100%;
			height: 1.7rem;
			margin: 0.3rem;
			padding: 0.4rem;
			text-transform: none;
			border: none;
			border-bottom: 1px dotted #fff;
			background: none;
			color: #fff;
			font-size: 1.1rem;
		}
		body.pagina-secundara .contact form .inputBox input::placeholder,
		body.pagina-secundara .contact form textarea::placeholder{
			color: #ccc;
			font-family: 'Open Sans';
   font-style: normal;
   font-weight: 400;
			font-size: 1.1rem;
			border: none;
		}
		body.pagina-secundara .contact form .inputBox input:focus,
		body.pagina-secundara .contact form textarea:focus{
			border: none;
			border-bottom-color: 1px dotted #2273f8;
		}
		body.pagina-secundara .contact form textarea{
			height: 120px;
			border: none;
			border-bottom: 1px dotted #fff;
			resize: none;
		}
		.contact form .btn{
  display: inline-block;
  padding: 0.6rem 1.2rem;
  color: white;
		background: none;
		border: none;
		border-bottom: 1px dotted #fff;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
		margin: 1rem 0;
		font-size: 1rem;
		cursor: pointer;
}
		/*---Sfarsit-stil-sectiune-contact---*/
	
	
	
	
	/* Footer */
footer{
 background-color: #e6f2ff;
}

footer .container {
  background-color: #e6f2ff;
  padding: 20px 15px;
  font-size: 0.9rem;
  color: #666;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
	 max-width: 1200px;
  margin: 0 auto;
}

footer .container .footer-nav a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  display: inline;
  margin: 0;
  padding: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  transition: color 0.3s ease;
}

footer .container .footer-nav a:hover {
  background: #fff;
  color: #003366;
}
footer .container p{
 text-align: center;
 font-size: 1rem;
 color: #000;
}

	
	
 
 
}







  




 #hamburger {
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  display: none; /* implicit ascuns pe desktop */
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

/* Ascundem meniul pe mobil */
@media (max-width: 768px) {
  #hamburger {
    display: none;
  }

  .meniu {
    display: none;
    flex-direction: column;
    background-color: #004466;
    padding: 1rem;
    margin-top: 1rem;
    position: absolute;
    top: 3.5rem; /* sub buton */
    right: 1rem;
    border-radius: 5px;
    z-index: 9;
  }

  .meniu li {
    display: block;
    margin: 0.5rem 0;
  }

  .meniu.activ {
    display: flex;
  }
 
 
 
 
}

@media (max-width: 767px) {
 header .container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem; /* doar lateral */
}
  header .container nav .meniu {
   display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background-color: transparent;
  padding: 1rem;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
   width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease; /* tranziție lină */
   z-index: 99;
  }

  header .container nav .meniu.activ {
    max-height: 300px; /* suficient cât să încapă toate linkurile */
   background-color: #004466;
  }

  #hamburger {
    display: block;
  }
 header {
  position: relative;
  z-index: 100;
}
 .lista-servicii {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.lista-servicii li {
  margin-bottom: 1.5rem;
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

 
 
 
}










/* La minim 1024px: trei coloane */
@media (min-width: 1024px) {
  .grid-servicii {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
  }
	
	body.pagina-secundara .contact{
			text-align: center;
			background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url("../images/contact.png");
			background-repeat: no-repeat;
			background-position: top;
			background-size: cover;
			background-attachment: fixed;
		}
		/*---Inceput-stil-sectiune-produse---*/
		body.pagina-secundara .contact .heading{
			font-size: 2.3rem;
			color: #fff;
			text-align: center;
			display: inline-block;
			font-family: 'Festive';
   font-style: normal;
   font-weight: 400;
		}
		body.pagina-secundara .contact .title{
			font-size: 1.1rem;
			color: #fff;
		 font-family: 'Open Sans';
   font-style: normal;
   font-weight: 400;
			padding: 0 1rem;
		}
		body.pagina-secundara .contact form{
			width: 700px;
			margin: 0 auto;
		}
		body.pagina-secundara .contact form .inputBox{
			display: flex;
			justify-content: center;
			flex-wrap: wrap;
		}
		body.pagina-secundara .contact form .inputBox input,
		body.pagina-secundara .contact form textarea{
			width: 100%;
			height: 1.8rem;
			margin: 0.4rem;
			padding: 0.5rem;
			text-transform: none;
			border: none;
			border-bottom: 1px dotted #fff;
			background: none;
			color: #fff;
			font-size: 1.2rem;
		}
		body.pagina-secundara .contact form .inputBox input::placeholder,
		body.pagina-secundara .contact form textarea::placeholder{
			color: #ccc;
			font-family: 'Open Sans';
   font-style: normal;
   font-weight: 400;
			font-size: 1.2rem;
			border: none;
		}
		body.pagina-secundara .contact form .inputBox input:focus,
		body.pagina-secundara .contact form textarea:focus{
			border: none;
			border-bottom-color: 1px dotted #2273f8;
		}
		body.pagina-secundara .contact form textarea{
			height: 130px;
			border: none;
			border-bottom: 1px dotted #fff;
			resize: none;
		}
		.contact form .btn{
  display: inline-block;
  padding: 0.6rem 1.2rem;
  color: white;
		background: none;
		border: none;
		border-bottom: 1px dotted #fff;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
		margin: 1rem 0;
		font-size: 1.1rem;
		cursor: pointer;
}
		/*---Sfarsit-stil-sectiune-contact---*/
	
	
}








@media (min-width: 1280px){
 .hero-img {
  width: 800px;
  max-height: 300px;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 10px;
  object-position: 50% 10%; /*– un control mai fin (50% pe orizontală, 20% pe verticală)*/
}
 .lista-servicii {
    display: grid;
  max-width: 1200px;
  margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
 .lista-servicii li {
  margin-bottom: 1.5rem;
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
 
 /* Pagini secundare */
body.pagina-secundara .intro-mica {
  background-color: #e6f2ff;
		transition: all .2s linear;
  text-align: center;
  padding: 2rem 1rem;
  border-bottom: 2px solid #ccc;
  color: #004466;
}

body.pagina-secundara .intro-mica h2 {
  margin-bottom: 1rem;
  font-family: 'Festive', cursive, sans-serif;
  font-size: 2rem; 
}

body.pagina-secundara .intro-mica p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-family: sans-serif;
  max-width: 600px;
  margin: 0 auto;
}

body.pagina-secundara .prezentare-mester {
  background-color: #fff;
  padding: 2rem 1rem;
  margin-top: 2rem;
  color: #333;
}

body.pagina-secundara .prezentare-mester h3 {
  color: #004466;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'Festive', cursive, sans-serif;
}
body.pagina-secundara .prezentare-mester h4 {
  color: #004466;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'Festive', cursive, sans-serif;
}

body.pagina-secundara .prezentare-mester ul {
  list-style-type: disc;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}
body.pagina-secundara .despre{
			display: flex;
			align-items: center;
			flex-wrap: wrap;
   max-width: 1200px;
   margin: 0 auto;
			gap: 16px;
			transition: all .2s linear;
		}
		body.pagina-secundara .despre .image{
			flex: 1 1 500px;
			border: none;
		}
		body.pagina-secundara .despre .image img{
		width: 252px;
		height: 400px;
		display: block;
		object-fit: cover;
		margin: 0 auto;
		padding: 16px;
		border: 1px dotted #fff;
		animation: despreImage 4s linear infinite;
		}
		@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%;
  }
}
		body.pagina-secundara .despre .content{
			flex: 1 1 640px;
			
		}
		body.pagina-secundara .despre .content h3{
			color: #004466;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'Festive', cursive, sans-serif;
		}
		.despre .content p{
			font-size: 1.2rem;
   font-family: sans-serif;
		}
		.despre .content p span{
			color: red;
		}
/*---Sfarsit-stil-sectiune-despre---*/

 
 /*---contact---*/
body.pagina-secundara .map .container .map{
	width: 100%;
	height: 400px;
	margin: 0 auto;
}
		
 
 body.pagina-secundara .contact{
			text-align: center;
			background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url("../images/contact.png");
			background-repeat: no-repeat;
			background-position: top;
			background-size: cover;
			background-attachment: fixed;
		}
		/*---Inceput-stil-sectiune-produse---*/
		body.pagina-secundara .contact .heading{
			font-size: 2.3rem;
			color: #fff;
			text-align: center;
			display: inline-block;
			font-family: 'Festive';
   font-style: normal;
   font-weight: 400;
		}
		body.pagina-secundara .contact .title{
			font-size: 1.1rem;
			color: #fff;
		 font-family: 'Open Sans';
   font-style: normal;
   font-weight: 400;
			padding: 0 1rem;
		}
		body.pagina-secundara .contact form{
			width: 800px;
			margin: 0 auto;
		}
		body.pagina-secundara .contact form .inputBox{
			display: flex;
			justify-content: center;
			flex-wrap: wrap;
		}
		body.pagina-secundara .contact form .inputBox input,
		body.pagina-secundara .contact form textarea{
			width: 100%;
			height: 1.8rem;
			margin: 0.4rem;
			padding: 0.5rem;
			text-transform: none;
			border: none;
			border-bottom: 1px dotted #fff;
			background: none;
			color: #fff;
			font-size: 1.2rem;
		}
		body.pagina-secundara .contact form .inputBox input::placeholder,
		body.pagina-secundara .contact form textarea::placeholder{
			color: #ccc;
			font-family: 'Open Sans';
   font-style: normal;
   font-weight: 400;
			font-size: 1.2rem;
			border: none;
		}
		body.pagina-secundara .contact form .inputBox input:focus,
		body.pagina-secundara .contact form textarea:focus{
			border: none;
			border-bottom-color: 1px dotted #2273f8;
		}
		body.pagina-secundara .contact form textarea{
			height: 130px;
			border: none;
			border-bottom: 1px dotted #fff;
			resize: none;
		}
		.contact form .btn{
  display: inline-block;
  padding: 0.6rem 1.2rem;
  color: white;
		background: none;
		border: none;
		border-bottom: 1px dotted #fff;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
		margin: 1rem 0;
		font-size: 1.1rem;
		cursor: pointer;
}
		/*---Sfarsit-stil-sectiune-contact---*/
 
 
}











/* ========== 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%;
  }
}


