@charset "utf-8";
/* CSS Document */
/* ================= RESET ================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #2d1f26;
  background: #fffafc;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, p {
  margin: 0;
}

html,
body {
  overflow-x: hidden;
}

/* ================= VARIABILE ================= */
:root {
  --bg: #fffafc;
  --white: #ffffff;
  --text: #2d1f26;
  --muted: #6b5560;
  --brand: #d46a92;
  --brand-dark: #ba4f78;
  --soft: #fbe7ef;
  --line: #ecd5df;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ================= UTILITARE ================= */
.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}
.section {
  padding: 64px 0;
}
.section-heading {
  text-align: center;
  margin-bottom: 24px;
}
.section-label {
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.section-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 12px;
}
.section-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
}

/* ================= HEADER ================= */
/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 252, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  position: relative;
}
.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-dark);
}
.nav-toggle {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.nav-toggle:hover {
  background: var(--soft);
  border-color: var(--brand);
}

/* mobil */
.site-nav {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: min(260px, 92vw);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.site-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.site-nav a{
  font-weight:600;
  display:inline-block;
  padding:6px 2px;
  position:relative;
  transition:color .25s ease;
}
/* linie animata */
.site-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:var(--brand);
  transition:width .25s ease;
}
.site-nav a:hover::after,
.site-nav a.active::after{
  width:100%;
}

.site-nav a:hover{
  color:var(--brand);
}
.site-nav a.active,
.site-nav a:hover {
  color: var(--brand);
}



/* ================= HERO ================= */
.hero {
  background: linear-gradient(rgba(255, 250, 252, 0.78), rgba(255, 250, 252, 0.92)),
              url("../images/hero-salon.jpg") center/cover no-repeat;
  padding: 96px 0;
}

.hero-content {
  text-align: center;
}
.eyebrow {
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-text {
  max-width: 700px;
  margin: 0 auto 24px;
  color: var(--muted);
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}


/* ================= BUTOANE ================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn-primary{
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover{
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.btn-secondary{
  background: var(--white);
  color: var(--text);
  border-color: var(--line);
}

.btn-secondary:hover{
  background: var(--soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

/* ================= CARDURI ================= */
.cards,
.benefits {
  display: grid;
  gap: 20px;
}
.card,
.benefit,
.cta-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover,
.benefit:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--brand);
}

.card h3,
.benefit h3 {
  margin-bottom: 10px;
  color: var(--brand-dark);
  transition: color 0.3s ease;
}
.card:hover h3,
.benefit:hover h3 {
  color: var(--brand);
}
.card p,
.benefit p,
.cta-box p {
  color: var(--muted);
}
.card i{
  font-size:32px;
  color:var(--brand);
  margin-bottom:14px;
  display:inline-block;
  transition:transform .3s ease, color .3s ease;
}
.card:hover i{
  transform:scale(1.15);
  color:var(--brand-dark);
}
.card{
  position: relative;
  overflow: hidden;
	 text-align: center;
}
.card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.18) 35%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform .6s ease;
}
.card:hover::before{
  transform: translateX(120%);
}
.card p{
  max-width: 32ch;
  margin: 0 auto;
}

/* ================= CTA ================= */
.cta-box {
  text-align: center;
}
.cta-box h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  margin-bottom: 14px;
}
.cta-box p {
  margin-bottom: 20px;
}

/* ================= FOOTER ================= */
.site-footer {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  background: #fff;
}




/* ================= servicii.html-HERO PAGINI INTERIOARE ================= */
.hero-small{
  background: linear-gradient(rgba(251, 231, 239, 0.72), rgba(255, 250, 252, 0.95));
  padding: 84px 0;
  text-align: center;
}
.hero-small-content{
  max-width: 760px;
  margin: 0 auto;
}
.hero-small h1{
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  margin-bottom: 14px;
}
.hero-small p:last-child{
  color: var(--muted);
}

/* ================= sectiunea SERVICII ================= */
.service-grid{
  display: grid;
  gap: 20px;
}
.service-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  border-color: var(--brand);
}
.service-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.18) 35%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform .6s ease;
}
.service-card:hover::before{
  transform: translateX(120%);
}
.service-card i{
  font-size: 32px;
  color: var(--brand);
  margin-bottom: 14px;
  display: inline-block;
  transition: transform .3s ease, color .3s ease;
}
.service-card:hover i{
  transform: scale(1.12);
  color: var(--brand-dark);
}
.service-card h3{
  color: var(--brand-dark);
  margin-bottom: 10px;
}
.service-card p{
  color: var(--muted);
  margin-bottom: 16px;
}
.service-list{
  display: grid;
  gap: 10px;
}
.service-list li{
  position: relative;
  padding-left: 20px;
  color: var(--text);
}
.service-list li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 700;
}


/* ================= despre.html-PAGINA DESPRE ================= */
.about-grid{
  display:grid;
  gap:28px;
  align-items:center;
}
.about-image img{
  width:100%;
  border-radius:24px;
  box-shadow: var(--shadow);
  object-fit:cover;
}

.about-content h2{
  font-family:"Playfair Display", serif;
  font-size:2rem;
  margin-bottom:16px;
  color:var(--text);
}
.about-content p{
  color:var(--muted);
  margin-bottom:14px;
}
.values-grid{
  display:grid;
  gap:20px;
}
.value-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow);
  text-align:center;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.value-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
  border-color:var(--brand);
}
.value-card i{
  font-size:32px;
  color:var(--brand);
  margin-bottom:14px;
  display:inline-block;
  transition:transform .3s ease, color .3s ease;
}
.value-card:hover i{
  transform:scale(1.12);
  color:var(--brand-dark);
}
.value-card h3{
  margin-bottom:10px;
  color:var(--brand-dark);
}
.value-card p{
  color:var(--muted);
}


/* =================-contact.php- PAGINA CONTACT ================= */
.contact-grid{
  display:grid;
  gap:28px;
}
.contact-info h2{
  font-family:"Playfair Display", serif;
  font-size:2rem;
  margin-bottom:14px;
}
.contact-info > p{
  color:var(--muted);
  margin-bottom:20px;
}
.contact-list{
  display:grid;
  gap:16px;
}
.contact-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow);
}
.contact-item i{
  font-size:22px;
  color:var(--brand);
  margin-top:4px;
}
.contact-item h3{
  margin-bottom:6px;
  color:var(--brand-dark);
  font-size:1rem;
}
.contact-item p,
.contact-item a{
  color:var(--muted);
}
.contact-form-wrap{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}
.contact-form{
  display:grid;
  gap:16px;
}
.form-group{
  display:grid;
  gap:8px;
}
.form-group label{
  font-weight:700;
  color:var(--text);
}
.form-group input,
.form-group textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:14px;
  font:inherit;
  color:var(--text);
  background:#fff;
  outline:none;
  transition:border-color .25s ease, box-shadow .25s ease;
}
.form-group input:focus,
.form-group textarea:focus{
  border-color:var(--brand);
  box-shadow:0 0 0 4px rgba(212, 106, 146, 0.12);
}
.form-group textarea{
  resize:vertical;
  min-height:140px;
}





@media (max-width: 480px) {
  html, body {
    overflow-x: hidden;
  }
}









/* ================= TABLET ================= */
@media (min-width: 768px) {
  .hero {
    padding: 130px 0;
  }
	.hero h1 {
    font-size: 3.2rem;
  }
	.hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
 .cards,
  .benefits {
    grid-template-columns: repeat(3, 1fr);
  }
	
	
	
	.service-grid{
    grid-template-columns: repeat(2, 1fr);
  }
	
.about-grid{
    grid-template-columns: 1fr 1fr;
    gap:36px;
  }
.values-grid{
    grid-template-columns: repeat(2, 1fr);
  }
	
	
.contact-grid{
    grid-template-columns: 1fr 1fr;
    align-items:start;
  }
	

	
	
	
	
}









/* ================= DESKTOP ================= */
@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }
 .site-nav {
    position: static;
    transform: none;
    width: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
	.site-nav ul {
    flex-direction: row;
    gap: 24px;
  }
	
	
	

	
	
	
	
}










@media (min-width: 1024px){
.service-grid{
    grid-template-columns: repeat(3, 1fr);
  }
.service-card:last-child{
    grid-column: 2 / 3;
  }
.values-grid{
    grid-template-columns: repeat(3, 1fr);
  }	
	
	
	
	
}






.success-message{
  background:#dcfce7;
  color:#166534;
  border:1px solid #bbf7d0;
  padding:14px 16px;
  border-radius:14px;
  font-weight:600;
	 margin-bottom:20px;
}
.error-message{
  background:#fee2e2;
  color:#991b1b;
  border:1px solid #fecaca;
  padding:14px 16px;
  border-radius:14px;
  font-weight:600;
}

.honey-field{
  position:absolute;
  left:-9999px;
  opacity:0;
  pointer-events:none;
}
































