@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;
  font-family: 'Festive';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/festive-v10-latin-regular.woff2') format('woff2');
}





/*---Inceput-stil-mobil---*/
/* Fonturi generale */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fff;
}


/* Header */
.site-header {
  background: #fff;
  padding: 10px 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.site-header .header-inner .logo img {
  width: 100px;
  height: 89px;
  object-fit: cover;
  animation: despreImage 4s ease-in-out infinite;
  border: 1px dotted #008ae6;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  text-align: center;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
}


.hero {
  max-width: 1400px; /* lățime maximă pe desktop */
  height: 70vh;      /* înălțime relativă la viewport */
  margin: 0 auto;    /* centru */
  border-radius: 10px; /* opțional */
  background: url('../images/hero-desktop.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); /* overlay */
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  font-size: 2rem;
	 line-height: 2rem;
	 font-family: 'Festive', cursive;
  margin-bottom: 15px;
	 text-align: center;
}

.hero p {
  font-size: 1.2rem;
	 line-height: 1.5rem;
  margin-bottom: 15px;
	 text-align: center;
	 padding: 5px;
}

.btn {
  display: inline-block;
  background: #b76e79;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background: #9a5862;
}




/* About */
.about {
  padding: 60px 20px;
  background: #fafafa;
}
.about-inner {
  display: flex;
  flex-direction: column; /* pe mobil imaginea e deasupra textului */
  align-items: center;
  gap: 20px;
}
.about-inner img {
  width: 100%;           /* ocupă tot spațiul disponibil în container */
  max-width: 600px;      /* desktop: să nu fie exagerat de mare */
  height: auto;          /* păstrează proporțiile */
  border-radius: 10px;   /* colțuri rotunjite */
  object-fit: cover;     /* imaginea se scalează frumos în container */
  display: block;
  margin: 0 auto;        /* centrează imaginea pe mobil */
}
.about-text {
  flex: 1 1 300px;
}
.about-text h2 {
  font-size: 2rem;
	 line-height: 2rem;
	 font-family: 'Festive', cursive;
  margin-bottom: 15px;
	 text-align: center;
}
.about-text p {
  font-size: 1.2rem;
	 line-height: 1.5rem;
  margin-bottom: 15px;
	 text-align: center;
	 padding: 5px;
}

/* Sectiune servicii */
.servicii {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.servicii .section-title {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.servicii-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.serviciu-box {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.serviciu-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	 cursor: pointer;
}

.serviciu-box i {
  font-size: 2rem;
  color: #e91e63;
  margin-bottom: 1rem;
}

.serviciu-box h3 {
  font-size: 2rem;
	 line-height: 2rem;
	 font-family: 'Festive', cursive;
  margin-bottom: 15px;
	 text-align: center;
}

.serviciu-box p {
  font-size: 1.2rem;
	 line-height: 1.5rem;
  margin-bottom: 15px;
	 text-align: center;
	 padding: 5px;
}

/* Buton sub sectiunea servicii */
.btn-servicii {
  display: inline-block;
  margin-top: 1.5rem;
  background: #e91e63;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-servicii:hover {
  background: #d81b60;
  transform: translateY(-2px);
}





/* ===================== Despre.html ===================== */
/* About / Despre noi */
.about {
  padding: 60px 20px;
  background: #fafafa;
}

.about-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 900px;
  margin: auto;
  gap: 20px;
}

.about-inner img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.about-text {
  flex: 1 1 300px;
}

.about-text h2 {
  font-size: 2rem;
  line-height: 2rem;
  font-family: 'Festive', cursive;
  margin-bottom: 15px;
  text-align: center;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.5rem;
  margin-bottom: 15px;
  text-align: center;
  padding: 5px;
}

/* Echipa / Servicii complementare */
.services-preview {
  padding: 40px 20px;
  text-align: center;
}

.services-preview h2 {
  font-size: 2rem;
  line-height: 2rem;
  font-family: 'Festive', cursive;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.service-card img {
  width: 100%;
  height: auto;
  display: block;
}

.service-text {
  padding: 15px;
}

.service-text h3 {
  font-family: 'Festive', cursive;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.service-text p {
  font-size: 1.1rem;
  line-height: 1.4rem;
}

/* Reverse card (imagine în stânga sau dreapta) */
.service-card.reverse {
  display: flex;
  flex-direction: column-reverse;
}

/* ===================== Responsive ===================== */











/*---Inceput-stil-pagina-servicii.html---*/
.services-grid {
  display: flex;
  flex-direction: column; /* mobil: vertical */
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  display: flex;
  flex-direction: column; /* mobil: imagine deasupra textului */
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.service-card .service-text {
  padding: 20px;
  text-align: center;
}
.service-card .service-text h3{
	 font-size: 2rem;
	 line-height: 2rem;
	 font-family: 'Festive', cursive;
  margin-bottom: 15px;
	 text-align: center;
}

.service-card .service-text p{
	 font-size: 1.2rem;
	 line-height: 1.5rem;
  margin-bottom: 15px;
	 text-align: center;
	 padding: 5px;
}

.service-card:hover {
  transform: scale(1.02);
	 cursor: pointer;
}


/*---Sfarsit-stil-pagina-servicii.html---*/





/*---Inceput-stil-pagina-galerie.html---*/
/* --- GALERIE --- */
.gallery {
  padding: 3rem 1rem;
  text-align: center;
  background: #fff;
}

.gallery-inner {
  max-width: 1400px !important;
  margin: 0 auto;
  padding: 0 1rem;
}



.gallery h2 {
  font-family: "Festive", cursive;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #b56a9e;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
	 cursor: pointer;
}

/*---Sfarsit-stil-pagina-galerie.html---*/




/*---Inceput-stil-pagina-contact.php---*/
/* ==================== Contact Page ==================== */
/* Mobil (320px - 767px) */
/* Secțiune Contact */
.contact-inner {
  display: flex;
  flex-direction: column; /* mobil: totul pe verticală */
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.contact-inner h2{
	font-size: 2rem;
  line-height: 2rem;
  font-family: 'Festive', cursive;
  margin-bottom: 30px;
	text-align: center;
	color: #444;
}

/* Harta */
.contact-map iframe {
  width: 100%;
  height: 200px; /* mobil */
  border: 0;
  border-radius: 10px;
  margin-top: 10px;
}
.contact-map h2{
	font-size: 2rem;
  line-height: 2rem;
  font-family: 'Festive', cursive;
  margin-bottom: 30px;
	text-align: center;
	color: #444;
}

/* Formular și info contact */
.contact-info, .contact-form {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form h2{
	font-size: 2rem;
  line-height: 2rem;
  font-family: 'Festive', cursive;
  margin-bottom: 30px;
	text-align: center;
	color: #444;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
	 border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form button:focus{
	 outline: none;
  border-color: inherit; /* păstrează culoarea inițială a bordurii */
  box-shadow: none; /* opțional, elimină orice efect de umbră la focus */
}

.contact-form button {
	margin-top: 16px;
  padding: 10px;
  background: #b76e79;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #9a5862;
}

/*---Sfarsit-stil-pagina-contact.php---*/




/*---Inceput-stil-sectiune-footer---*/
.footer {
  background: #222;
  color: #fff;
  padding: 2rem 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto; /* centrează conținutul */
  padding: 0 1rem; /* spațiu lateral pe ecrane mici */
	 text-align: center;
}

.footer .box-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  text-align: center;
	 
}

.footer .box h3 {
  font-size: 1.8rem;
	 line-height: 1.8rem;
	 font-family: 'Festive', cursive;
  margin-bottom: 1rem;
  color: #b76e79;
}

.footer .box a {
  display: block;
  color: #fff;
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: 0.3s;
}

.footer .box a:hover {
  color: #f8c14b;
}

.footer .box-container .box a i{
  padding-right: 8px;
}
.footer .box-container .box a:hover i{
  padding-right: 32px;
}

.credit {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
  font-size: 0.9rem;
}


/*---Sfarsit-stil-sectiune-footer---*/







/*---Sfarsit-stil-mobil---*/














/* Mobil */
@media (max-width: 767px) {
	 .close-btn {
    display: block;
  }
  .hero {
    max-width: 100%;    /* ocupă tot spațiul disponibil pe lățime */
    height: 50vh;       /* înălțime mai mică, să nu fie uriașă */
    margin: 0 auto;
    border-radius: 10px;
    background: url('../images/hero-mobile.webp') center/cover no-repeat;
  }
}







/* Responsive */
@media (max-width: 768px) {
 .nav {
  display: flex;
  flex-direction: column;
  align-items: center;     /* 🔹 centrează pe orizontală */
  justify-content: center; /* 🔹 centrează pe verticală */
  position: fixed;
		text-align: center;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255,255,255,0.98);
  padding: 0;
  transform: translateX(100%);
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 1000;
}


  .nav.open {
  transform: translateX(0);
  opacity: 1;
}

  .nav ul {
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
}

  .nav a {
			 display: block;
    width: 100%;             /* 🔹 ca să ocupe tot spațiul pe rând */
    font-size: 1.5rem;
    font-weight: 600;
			 text-align: center;
    color: #333;
    transition: color 0.3s;
  }

  .nav a:hover {
    color: #b76e79;
  }

  .hamburger {
    display: block;
    font-size: 2rem;
    border: none;
    background: none;
    cursor: pointer;
  }
	.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #b76e79;
}


	
	
	
	
}





/* Tablete (768px+) - 2 coloane */
@media (min-width: 768px) {
	.hero h1 {
  font-size: 3rem;
	 line-height: 3rem;
	 font-family: 'Festive', cursive;
  margin-bottom: 15px;
	 text-align: center;
}
	.hero p {
  font-size: 1.3rem;
	 line-height: 1.3rem;
  margin-bottom: 15px;
	 padding: 5px;
}
	

  .servicii-container {
    grid-template-columns: repeat(2, 1fr);
  }
	
	
	
	.about-inner {
    flex-direction: row;   /* imagine + text pe același rând */
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 40px;
  }

  .about-inner img,
  .about-text {
    flex: 1 1 50%;
    margin: 0;
  }

  .about-inner img {
  width: clamp(280px, 35%, 400px);
  height: auto;
  display: block;
}

	
	
	
	
	/*---Inceput-stil-pagina-servicii.html---*/
	.service-card {
    flex-direction: row;
    text-align: left;
  }
  .service-card.reverse {
    flex-direction: row-reverse;
  }
  .service-card img {
    width: 50%;
  }
  .service-card .service-text {
    width: 50%;
    padding: 40px;
  }
	/*---Sfarsit-stil-pagina-servicii.html---*/
	
	
	
	
	
	
	/*---Inceput-stil-pagina-contact.php---*/
/* ==================== Contact Page ==================== */
	 .contact-inner {
    flex-direction: row; /* stânga: info, centru: formular, dreapta: hartă */
    flex-wrap: wrap;
  }
  .contact-info, .contact-form, .contact-map {
    flex: 1 1 300px;
  }
  .contact-map iframe {
    height: 400px;
  }
	
	.contact-map iframe {
  width: 100%;
  height: 300px; /* mobil */
  border: 0;
  border-radius: 10px;
  margin-top: 10px;
}
	.contact-form {
    max-width: 500px;
    margin: 0 auto; /* centrează formularul pe pagină */
  }
	/*---Sfarsit-stil-pagina-contact.php---*/
	
	
	
	
	
	
	
	
	
	
	/*---Inceput-stil-pagina-galerie.html---*/
	.gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
	
	/*---Sfarsit-stil-pagina-galerie.html---*/
	
	
	
	/*---Inceput-stil-sectiune-footer---*/
	
.footer .box-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}



/*---Sfarsit-stil-sectiune-footer---*/
	
	
	
  
	
	
}





@media (min-width: 768px) and (max-width: 1023px) {
  .hero {
    max-width: 1000px;  /* ușor mai mic decât desktop */
    height: 60vh;       /* mai puțin înălțime pentru tablete */
    margin: 0 auto;
    border-radius: 10px;
    background: url('../images/hero-tableta.webp') center/cover no-repeat;
  }
	.about-inner {
    flex-wrap: nowrap;
    gap: 30px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.reverse {
    flex-direction: column-reverse;
  }
}







/* pentru desktop */
@media (min-width: 1024px) {
	
	.close-btn {
    display: none;
  }
	.hero h1 {
  font-size: 4rem;
	 line-height: 4rem;
	 font-family: 'Festive', cursive;
  margin-bottom: 15px;
	 text-align: center;
}
	.hero p {
  font-size: 1.5rem;
	 line-height: 1.5rem;
  margin-bottom: 15px;
	 padding: 5px;
}
	.about-inner {
    gap: 60px; /* mai mult spațiu între imagine și text */
    max-width: 1200px; /* lățime mai mare pentru container */
    margin: 0 auto;
  }

  .about-inner img {
    max-width: 700px; /* imagine mai mare */
    height: auto;
  }

  .about-text {
    max-width: 700px; /* text mai lat */
  }
	
	
	
  .servicii-container {
    grid-template-columns: repeat(4, 1fr);
  }
	
	.hero {
    background: url('../images/hero-desktop.webp') center/cover no-repeat;
  }
	.services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.reverse {
    flex-direction: row-reverse;
  }
	
	
	
	
	
	
	/*---Inceput-stil-pagina-galerie.html---*/
	.gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
	
	/*---Sfarsit-stil-pagina-galerie.html---*/
	
	
	
	
	
	/*---Inceput-stil-pagina-contact.php---*/
/* ==================== Contact Page ==================== */
	.contact-map iframe {
    height: 300px;
  }
	.contact-form {
    max-width: 700px;
    margin: 0 auto; /* centrează formularul pe pagină */
  }
	/*---Sfarsit-stil-pagina-contact.php---*/
	
	
	
	
	
	
	/*---Inceput-stil-sectiune-footer---*/
		
.footer .box-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
	 
}
.credit {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
  font-size: 1.2rem;
}

/*---Sfarsit-stil-sectiune-footer---*/
	
}
	
	
	
	
	
	
	
}










/* pentru desktop */
@media (min-width: 1280px){
	
}















/* ========== 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%;
  }
}




