@font-face {
  font-family: 'DejaVu Serif';
  src: url('fonts/DejaVuSerif.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ================= BODY ================= */
html {
  scroll-behavior: smooth;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: 'DejaVu Serif', serif;
  background: #f5efe0;
  height: auto; 
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 80px; 
}

main {
  flex: 1;
  display: block;
}

/* ================= NAVIGATION ================= */
nav {
  display: flex;
  justify-content:space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 80px;
  background: #295232;
  padding: 10 20px;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-left img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.nav-left span {
  color: #e8c865;
  font-weight: bold;
  font-size: 1.35rem;
}

/* Desktop */
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-center ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-center > ul > li > a {
  display: inline-block;
  padding: 20px 22px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-center > ul > li > a:hover {
  color: #e8c865;
}

.nav-center > ul > li > a.active {
  color: #e8c865;
  font-weight: 700;
  border-bottom: 2px solid #e8c865;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  margin-right: 15px;
}

/* Desktop default */
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  display: flex;
  align-items: center;
}

/* ================== MENIU RESPONSIVE ================== */
@media (max-width: 1300px) {
  .hamburger {
    display: block;
  }

  .nav-center {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100vw;
    background: #295232;
    text-align: center;
    padding: 0;
    overflow: hidden;
    max-height: 0;                    
    z-index: 999;
	transition: max-height 0.4s ease-in-out;
	overflow: hidden;    
  }

  
  .nav-center.active {
  max-height: 500px;
  overflow-y: auto;   
}

  .nav-center ul {
    flex-direction: column;
    width: 100vw;
    margin: 0;
    padding: 0;
  }

  .nav-center ul li {
    width: 100%;
  }

  .nav-center ul li a {
    display: block;
    padding: 15px 0;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: #fff;

    /* ===== Animatie pe itemi ===== */
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .nav-center.active ul li a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-center.active ul li:nth-child(1) a { transition-delay: 0.1s; }
  .nav-center.active ul li:nth-child(2) a { transition-delay: 0.2s; }
  .nav-center.active ul li:nth-child(3) a { transition-delay: 0.3s; }
  .nav-center.active ul li:nth-child(4) a { transition-delay: 0.4s; }
  .nav-center.active ul li:nth-child(5) a { transition-delay: 0.5s; }
  .nav-center.active ul li:nth-child(6) a { transition-delay: 0.6s; }
  .nav-center.active ul li:nth-child(7) a { transition-delay: 0.7s; }
}



/* ================= HERO (Pagina 1) ================= */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  background-color: #f5efe0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.hero img.active {
  opacity: 1;
}

.hero-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0px 3px 6px rgba(0,0,0,0.4);
}

.cta-btn {
  background: #e8c865;
  color: #295232;
  padding: 15px 35px;
  font-size: 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #d6b85c;
}

.separator {
  width: 100%;
  height: 8px;
  background: #295232;
  border-radius: 0 0 8px 8px;
}

/* ================= ACASA (Pagina 1) ================= */
.solutions {
  padding: 60px 20px;
  background: #f5efe0;
  text-align: center;
}

.solutions h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #295232;
}

.solutions h2::after {
  content: "";
  display: block;
  height: 4px;
  width: 80px;
  background: #e8c865;
  margin: 10px auto 0;
  border-radius: 2px;
}

.solutions-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .solutions-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .solutions-container {
    grid-template-columns: 1fr;
  }
}

.solution-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-top: 4px solid transparent;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 18px rgba(0,0,0,0.2);
  border-top-color: #e8c865;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: #f5efe0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.icon-circle svg,
.icon-circle i {
  width: 60%;
  height: 60%;
  font-size: 2.2rem;
  color: #000000;
}

.icon-circle img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
/* ================= DESPRE NOI - PAGINA 2 ================= */
.despre-noi ul {
  list-style-type: disc;   
  margin-left: 40px;       
  padding-left: 0;
  display: block;          
  max-width: 100%;         
}

.despre-noi ul li {
  background: none;        
  border-radius: 0;        
  text-align: left;        
  box-shadow: none;        
  padding: 5px 0;          
  transition: none;        
}

.despre-noi ul li::before {
  content: none;           
}


/* ================= TERAPII (Pagina 3) ================= */
.therapy-section {
  max-width: 1200px;
  margin: 20px auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  padding: 30px;
  display: flex;
  flex-direction: column; 
  transition: transform 0.2s ease;
}

.therapy-section:hover {
  transform: translateY(-3px);
}

.therapy-section h2 {
  font-size: 1.8rem;
  color: #295232;
  margin-bottom: 15px;
}

.therapy-section p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  align-self: flex-start;
  background: #295232;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.read-more:hover {
  background: #204128;
}
/* ================= TERAPIE DETALIU (Pagini individuale) ================= */
.therapy-detail-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 4px 14px rgba(0,0,0,0.12);

  
  height: auto;
  min-height: unset;
}

.therapy-detail-container h1 {
  font-size: 2.4rem;
  color: #295232;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

.therapy-detail-container h1::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: #e8c865;
  margin: 15px auto 0;
  border-radius: 3px;
}

.therapy-intro {
  font-size: 1.15rem;
  color: #333;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 25px;
}

.therapy-detail-container p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.therapy-detail-content h2 {
  font-size: 1.6rem;
  color: #295232;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: center;
}

.therapy-detail-content ul {
  list-style: none;
  padding-left: 0;
  margin: 0 auto 25px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 800px;
}

.therapy-detail-content ul li {
  background: #f5efe0; /* bej */
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.therapy-detail-content ul li::before {
  content: "✔ ";
  color: #295232;
  font-weight: bold;
}

.therapy-detail-content ul li:hover {
  transform: translateY(-3px);
  box-shadow: 0px 3px 8px rgba(0,0,0,0.12);
}

.therapy-detail-content ul li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 360px;
  width: auto;
}

/* ================= MEDIA QUERY MOBILE (max-width: 768px) ================= */
@media (max-width: 1300px) {
  /* ===== NAVIGATION ===== */
  .hamburger {
    display: block;
  }

  .nav-center {
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #295232;
    text-align: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;
    z-index: 999;
    transform: none !important;
  }

  .nav-center.active {
    max-height: 350px;
  }

  .nav-center ul {
    flex-direction: column;
    width: 100%;
  }

  .nav-center ul li a {
    display: block;
    padding: 15px 0;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .nav-center.active ul li a {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===== CONTACT ===== */
  .contact-container {
    flex-direction: column;
    min-height: auto;
  }

  .contact-left, 
  .contact-right {
    width: 100%;
    padding: 30px 20px;
  }

  /* Centrare cutie verde */
  .contact-left {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;     
    text-align: center;
  }

  .contact-left h2 {
    margin-bottom: 30px;
  }

  .contact-item {
    flex-direction: column;  
    align-items: center;
    margin-bottom: 20px;
  }

  .contact-item i {
    margin-bottom: 8px;      
  }

  /* Formular */
  .contact-right h2 {
    text-align: center;
    margin-bottom: 30px;
  }

  form .form-group {
    flex-direction: column;  
    align-items: stretch;
    margin-bottom: 20px;
  }

  form .form-group i {
    margin-bottom: 8px;
    margin-right: 0;
  }

  .form-consent {
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    align-items: center;
  }

  .submit-btn {
    width: 90%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
  }

  /* ===== FOOTER ===== */
  footer {
    padding: 20px 30px;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}










.back-btn {
  display: inline-block;
  margin-top: 20px;
  background: #295232;
  color: white;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.back-btn:hover {
  background: #204128;
}




/* ================= AFECTIUNI (Pagina 4) ================= */
.afectiuni-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.12);
  text-align: center;
}

.afectiuni-container h1 {
  font-size: 2.2rem;
  color: #295232;
  margin-bottom: 40px;
  position: relative;
}

.afectiuni-container h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #e8c865;
  margin: 15px auto 0;
  border-radius: 2px;
}

.afectiune-section {
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 30px;
}

.afectiune-section:not(:last-child)::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #e8c865;
  margin: 30px auto 0;
  border-radius: 3px;
  opacity: 0.8;
}

.afectiune-section h2 {
  font-size: 1.6rem;
  color: #295232;
  margin-bottom: 20px;
}

.afectiune-section ul {
  list-style: none;
  padding-left: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 800px;
  align-items: start;
}

.afectiune-section ul li {
  font-size: 1rem;
  color: #333;
  padding: 10px 15px;
  background: #f5efe0;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.afectiune-section ul li::before {
  content: "✔ ";
  color: #295232;
  font-weight: bold;
}

.afectiune-section ul li:hover {
  transform: translateY(-3px);
  box-shadow: 0px 3px 8px rgba(0,0,0,0.12);
}

.afectiune-section ul li:last-child:nth-child(odd) {
  grid-column: 1 / -1;    
  justify-self: center;   
  max-width: 360px;       
  width: auto;
}

@media (max-width: 768px) {
  .afectiune-section ul {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .afectiune-section ul li:last-child:nth-child(odd) {
    grid-column: auto;
    justify-self: stretch;
    max-width: 100%;
  }
}



/* ================= BLOG (Pagina 5) ================= */
.blog-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

.blog-container h1 {
  font-size: 2rem;
  color: #295232;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.blog-container h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #e8c865;
  margin: 15px auto 0;
  border-radius: 2px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.blog-card {
  background: #f5efe0;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 16px rgba(0,0,0,0.18);
}

.blog-card h2 {
  font-size: 1.4rem;
  color: #295232;
  margin-bottom: 12px;
}

.blog-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-card .read-more {
  display: inline-block;
  background: #295232;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.blog-card .read-more:hover {
  background: #204128;
}

/* ================= CONTACT (Pagina 6) ================= */
.contact-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  min-height: 70vh;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin: 20px auto;
}

.contact-left {
  background: #295232;
  color: white;
  padding: 50px 30px;
  flex: 1;
}

.contact-left h2 {
  margin-bottom: 30px;
  font-size: 1.6rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.contact-item i {
  font-size: 1.7rem;
  margin-right: 15px;
  color: #e8c865;
  cursor: pointer;
}

.contact-item strong {
  display: block;
  font-size: 1.1rem;
}

.contact-item span {
  font-size: 0.95rem;
  opacity: 0.9;
}

.contact-right {
  background: #f5efe0;
  flex: 1.3;
  padding: 50px 30px;
}

.contact-right h2 {
  margin-bottom: 30px;
  font-size: 1.6rem;
}

form .form-group {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

form .form-group i {
  font-size: 1.3rem;
  margin-right: 12px;
  color: #295232;
  width: 28px;
  text-align: center;
}

form input,
form textarea {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

form textarea {
  resize: vertical;
  min-height: 100px;
  max-height : 180px;
}
form textarea {
    width: 100% !important;    
    max-width: 100% !important; 
    min-width: 0 !important;
    box-sizing: border-box;
  }

.form-consent {
  flex-direction: row;       
  align-items: flex-start;   
  gap: 10px;                 
  margin-bottom: 20px;
  flex-wrap: wrap;           
}

.form-consent label {
  text-align: left;          
  line-height: 1.3;          
  flex: 1 1 100%;            
}

.form-consent input {
  margin: 0;                 
  flex-shrink: 0;            
}

.submit-btn {
  background: #295232;
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: not-allowed;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.submit-btn.active {
  cursor: pointer;
  opacity: 1;
  background: #295232;
}

.submit-btn.active:hover {
  background: #204128;
}

/* ================= FOOTER ================= */
footer {
  background-color: #295232;
  color: #e8c865;
  padding: 20px 50px;
  flex-shrink: 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(232,200,101,0.3);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-left img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-left span {
  font-weight: bold;
  font-size: 1.2rem;
  color: #e8c865;
}

.footer-center {
  text-align: center;
  flex: 1;
}
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;  
    width: 100%;
    padding: 0;              
    margin: 0 auto;
    box-sizing: border-box;
  }

  .contact-left,
  .contact-right {
    flex: none;              
    width: 100%;             
    padding: 20px;           
    box-sizing: border-box;
  }

  .contact-left h2,
  .contact-right h2 {
    text-align: center;
  }

  .contact-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .contact-item i {
    margin-bottom: 8px;
  }

  form .form-group {
    flex-direction: column;
    align-items: stretch;
  }

  form .form-group i {
    margin-bottom: 8px;
    margin-right: 0;
  }
  
form textarea {
  resize: vertical;       
  min-height: 120px;
  max-height: 250px;
  width: 100%;            
  max-width: 100%;        
  box-sizing: border-box; 
}

}
/* ================= PRETURI (Pagina 7) ================= */
.prices-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.prices-container h1 {
  font-size: 2.2rem;
  color: #295232;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.prices-container h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #e8c865;
  margin: 15px auto 0;
  border-radius: 2px;
}

.price-section {
  margin-bottom: 35px;
}

.price-section h2 {
  font-size: 1.4rem;
  color: #295232;
  margin-bottom: 20px;
  border-bottom: 2px solid #e8c865;
  display: inline-block;
  padding-bottom: 6px;
}

.price-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-section ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f5efe0;
  padding: 12px 18px;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-section ul li:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.price-section ul li span {
  flex: 1;
  text-align: left;
  color: #333;
}

.price-section ul li strong {
  color: #295232;
  min-width: 80px;
  text-align: right;
}

.price-note {
  background: #f5efe0;
  border-radius: 10px;
  padding: 25px 20px;
  color: #333;
  line-height: 1.6;
  text-align: justify;
}

.price-note p {
  margin-bottom: 15px;
}
.important-note {
  background-color: #fff7d6;
  border-left: 6px solid #e8c865;
  padding: 18px 22px;
  margin: 25px 0 35px 0;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  color: #295232;
  font-size: 1.1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.important-note strong {
  color: #204128;
}

@media (max-width: 600px) {
  .price-section ul li {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-section ul li strong {
    text-align: left;
    margin-top: 4px;
  }
}

