html {
  /* easy calculation for REM /
  / font-size: 10px; /
  / 10PX/16PX=0.625=62.5% /
  / Percentage of user's browser font-size /
  
  / WORKS IF ITS NOTHING ABSOLUTE POSITIONING TO THE BODY */
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 62.5%;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Comic Relief", "Roboto", sans-serif;
  line-height: 1;
  font-weight: 600;
  color: #555;
  overflow-x: hidden;
  background-color: #fff;
}

/*******/
/* Butoane*/
/***********/
.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  font-weight: 500;
  text-decoration: none;
  font-size: 2rem;
  padding: 2rem 5rem;
  border-radius: 3rem;
  /*Put the transition to the orignial state (before the changes in hover)*/
  transition: all 0.3s;
  /*only for btn*/
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn--full:link,
.btn--full:visited {
  color: #fff;
  background-color: #ff69b4;
}
.btn--full:hover,
.btn--full:active {
  color: #ff69b4;
  background-color: #fff;
}
.btn-nav:link,
.btn-nav {
  grid-column: 3/ 4;
}
.btn,
.btn-nav:link,
.btn-nav:visited {
  padding: 1.6rem 3.2rem;
  font-size: 1.6rem;
  justify-self: self-end;
  margin-right: 3.6rem;
  border-radius: 1.6rem;
  color: #fff;
  background-color: #7678ed;
}
.btn-nav:hover,
.btn-nav:active {
  color: #7678ed;
  background-color: #fff;
}

/* USER PROFILE DROPDOWN */
.user-profile {
  position: relative;
  cursor: pointer;
}

.user-name,
.user-name:link,
.user-name:visited {
  display: inline-block;
  font-weight: 500;
  text-decoration: none;
  font-size: 2rem;
  padding: 2rem 5rem;
  border-radius: 3rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.header-actions {
  grid-column: 3 / 4;
  justify-self: self-end;
  display: flex;
  align-items: center;
  gap: 1.6rem; /* spațiu între buton și user-name */
}

/* asta e doar pentru poziționare */
.user-name {
  grid-column: 3 / 4;
  justify-self: self-end;
  margin-right: 3.6rem;
}

.user-name--full:link,
.user-name--full:visited {
  color: #fff;
  background-color: #ff69b4;
}
.user-name--full:hover,
.user-name--full:active {
  color: #ff69b4;
  background-color: #fff;
}
.user-name-nav:link,
.user-name-nav {
  grid-column: 3/ 4;
}
.user-name,
.user-name-nav:link,
.user-name-nav:visited {
  padding: 1.6rem 3.2rem;
  font-size: 1.6rem;
  justify-self: self-end;
  margin-right: 3.6rem;
  border-radius: 1.6rem;
  color: #fff;
  background-color: #7678ed;
}
.user-name-nav:hover,
.user-name-nav:active {
  color: #7678ed;
  background-color: #fff;
}
.user-name:hover,
.user-name:active {
  color: #7678ed;
  background-color: #fff;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 7%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 1rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 1000;
  margin-top: 0.8rem;
  border: 1px solid #e9ecef;
}

.user-profile:hover .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2rem;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s;
  font-size: 1.4rem;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #7678ed;
}

.dropdown-item.logout:hover {
  background-color: #ffe6e6;
  color: #dc3545;
}

.dropdown-item .material-symbols-rounded {
  font-size: 2rem;
  opacity: 0.7;
}

.dropdown-divider {
  border: none;
  border-top: 1px solid #e9ecef;
  margin: 0.5rem 0;
}
.link-1:hover,
.link-3:hover,
.link-5:hover,
.link-1:active,
.link-3:active,
.link-5:active {
  -webkit-transform: rotate(4deg);
  transform: rotate(4deg);
}
.link-2:hover,
.link-4:hover,
.link-2:active,
.link-4:active {
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
}

/****headings*****/
.heading-principal {
  font-size: 5.2rem;
  font-weight: 600;
  line-height: 1.2;
  color: #ff69b4;
  letter-spacing: -0.5px;
  margin-bottom: 3.2rem;
  color: #ff69b4;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white,
    1px 1px 0 white;
}
.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 8rem;
}
.heading-principal,
.heading-secondary {
  font-weight: 700;
  color: #710a85;
  letter-spacing: -0.5px;
}
.heading-tertiary {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
  color: #fff;
}
.subbheading {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #710a85;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}
/******************/
/**********************************/
/* Header */
/*********************************/
/* STICKY NAVIGATION STYLES - Adaugă acest cod în fișierul CSS (paste-2.txt) */

/* Header-ul sticky */
.sticky .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 8rem;
  padding: 0 2.4rem;
  z-index: 9999;
  background: linear-gradient(135deg, #7678ed 0%, #ff69b4 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideDown 0.2s ease-out;
}

/* Animația de apariție - mai rapidă */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Logo în sticky mode - tranziție mai rapidă */
.sticky .logo {
  height: 6rem;
  transition: all 0.15s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

/* Navigația în sticky mode */
.sticky .main-nav-link:link,
.sticky .main-nav-link:visited {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Efecte hover pentru navigație sticky */
.sticky .main-nav-link:hover,
.sticky .main-nav-link:active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Efecte speciale pentru fiecare link */
.sticky .link-1:hover,
.sticky .link-3:hover,
.sticky .link-5:hover {
  transform: translateY(-2px) rotate(2deg);
}

.sticky .link-2:hover,
.sticky .link-4:hover {
  transform: translateY(-2px) rotate(-2deg);
}

/* Efect de undă la hover */
.sticky .main-nav-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.sticky .main-nav-link:hover::before {
  width: 300px;
  height: 300px;
}

/* Ajustare spacing pentru section-hero când e sticky */
.sticky .section-hero {
  margin-top: 8rem;
}
.nav-cta.main-nav-link:link,
.nav-cta.main-nav-lin:visited {
  padding: 1.6rem 3.2rem;
  font-size: 1.6rem;
  justify-self: self-end;
  margin-right: 3.6rem;
  border-radius: 1.6rem;
  color: #fff;
  background-color: #7678ed;
}
.nav-cta.main-nav-link:hover,
.nav-cta.main-nav-lin:active {
  color: #7678ed;
  background-color: #fff;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

/* Hide mobile nav button by default, show desktop button */
.nav-cta-mobile {
  display: none;
}

.nav-cta-desktop {
  display: block;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}
/* Responsive pentru sticky navigation */
@media (max-width: 768px) {
  .sticky .header {
    height: 7rem;
    padding: 0 1.6rem;
  }

  .sticky .logo {
    height: 5rem;
  }

  .sticky .main-nav-link:link,
  .sticky .main-nav-link:visited {
    font-size: 1.8rem;
    padding: 0.8rem 1.2rem;
  }

  .sticky .section-hero {
    margin-top: 7rem;
  }
}

/* Efect de focus pentru accesibilitate */
.sticky .main-nav-link:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
  background: rgba(255, 255, 255, 0.2);
}

/* Hover effect pentru logo */
.sticky .logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* Efect de pulsație subtilă pentru header */
.sticky .header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.main-header {
  display: block;
}

.header-main {
  background-color: #7678ed;
}
.header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background-color: #ff69b4;
  font-weight: 600;
}

.logo {
  height: 10rem;
  margin-left: 2.4rem;
}

.main-nav-list {
  list-style: none;
  display: flex;
  gap: 3.6rem;
}
.slime {
  width: 100%;
  background-color: #7678ed;
  display: block;
  margin: 0;
  padding: 0;
}
.main-nav-link:link,
.main-nav-link:visited {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

.main-nav-link:hover,
.main-nav-link:active {
  text-decoration: none;
  color: #7678ed;
}

.hiddenDesktop {
  display: none;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 2.4rem;
  transition: all 0.3s ease;
  vertical-align: middle;
}

.logoutBtn {
  padding: 1.6rem 3.2rem;
  font-size: 1.6rem;
  border-radius: 1.6rem;
  color: #fff;
  background-color: #f20505;
  vertical-align: middle;
}

.logoutBtn:hover,
.logoutBtn:active {
  color: #fff;
  background-color: #a10303;
}

.link-1:hover,
.link-3:hover,
.link-5:hover,
.link-1:active,
.link-3:active,
.link-5:active {
  -webkit-transform: rotate(4deg);
  transform: rotate(4deg);
}
.link-2:hover,
.link-4:hover,
.link-2:active,
.link-4:active {
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
}
/***************/
/*section hero*/
/**************/

.section-hero {
  background-color: #7678ed;
  padding: 4.8rem 0 0 0; /* removed bottom padding so decorative SVGs can meet */
}
.hero {
  padding-bottom: 9.6rem;
  max-width: 130rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 6rem;
}
.heading-principal {
  font-size: 5.2rem;
  font-weight: 600;
  /* line-height: 1.05; */
  color: #ff69b4;
  letter-spacing: -0.5px;
  margin-bottom: 3.2rem;
  color: #ff69b4;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white,
    1px 1px 0 white;
}
.hero-description {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 4.8rem;
  font-weight: 500;
  color: #fff;
}
.bear-hero-text {
  height: 6rem;
}
.container-hero-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3rem;
  row-gap: 1.4rem;
}

.imgKids {
  height: 24rem;
  filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.35));
}

.img-3 {
  height: 13rem;
  transform: rotate(45deg);
}

.curved svg {
  display: block;
  width: 100%;
  margin: 0; /* remove stray negative margin that can create visual gaps */
}
.curved.upper svg {
  display: block;
  width: 100%;
}
.curved {
  background-color: #ff69b4;
  margin-bottom: -5px; /* Măresc valoarea pentru a elimina complet spațiul */
  line-height: 0; /* Elimină spațiul de la inline elements */
}
.curved.upper {
  background-color: #7678ed;
  margin-bottom: -5px; /* Măresc valoarea pentru a elimina complet spațiul */
  line-height: 0; /* Elimină spațiul de la inline elements */
}

/***/

/****Sectiunea 2+4+3 ****/
.section-section2 {
  padding: 0;
  background-color: #f8f4ff; /* remove top padding so clouds/curves touch the hero */
}
.titleSection2 {
  text-align: center;
}
.section2 {
  max-width: 130rem;
  margin: 0 auto;
}
.container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 9.6rem;
}

.box1,
.box2,
.box3 {
  background-color: #f3e9f5;
  border: 2px solid #b887c1;
  padding: 4rem 4rem;
  width: fit-content;
  border-radius: 8px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0, 2);
}

.box1Title,
.box2Title,
.box3Title {
  color: #710a85;
  text-align: center;
}

.box1Description,
.box2Description,
.box3Description {
  color: #710a85;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.2;
}

.kidsCorner,
.teacherPhoto,
.paintPicture {
  width: 60px;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: 1.2rem;
}

.nor-jos img {
  width: 100%;
  display: block;
}
.section3 {
  padding-bottom: 6.4rem;
}
.section-section3 {
  background-color: #7678ed;
  margin-bottom: -2px;
}
.purpleTriangle2 {
  position: absolute;
  bottom: 16rem;
  right: 12rem;
  display: block;
}
.section3-container {
  max-width: 130rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 6rem;
}

.subtitleSection3 {
  font-size: 5.2rem;
  font-weight: 600;
  line-height: 1.05;
  color: #ff69b4;
  letter-spacing: -0.5px;
  margin-bottom: 3.2rem;
  color: #ff69b4;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white,
    1px 1px 0 white;
}

.descriptionSection3 {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 4.8rem;
  font-weight: 500;
  color: #fff;
}

.buttonSection3 {
  margin-bottom: 16rem;
}

/* Section 3 Photo */

.photoSection3 img {
  width: 100%;
}
.section3-container {
  padding: 0 3.6rem 0 3.6rem;
}
/* Decorative Elements */
.clouds {
  width: 100%;
  display: block;
}

.purpleTriangle1 {
  display: block;
  margin-bottom: 2rem;
  margin-left: 2rem;
}

/* Bottom Decorative Elements */
.bottomPhotos {
  position: relative;
}

.purpleTriangle2 {
  position: absolute;
  bottom: 3rem;
  right: 0rem;
  display: block;
}

.purpleEllipse {
  position: absolute;
  bottom: 5rem;
  left: 1rem;
  display: block;
}
/* Secțiunea 4 */
.section-section4 {
  background: linear-gradient(to bottom, #ffffff, #fff0e5);
}

.section4 {
  position: relative;
  padding: 0 0 9.6rem 0;
}

.nor-sus img {
  width: 100%;
  display: block;
}

.planetPhoto img {
  position: absolute;
  width: 250px;
  height: auto;
}

.section4Container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 4rem;
  gap: 5rem;
}

.titleSection4 {
  text-align: center;
  max-width: 60rem;
}

.booksPhoto img {
  width: 4rem;
  height: auto;
  margin-bottom: 2rem;
}

.titleSection4Text {
  color: #9c29b2;
  font-size: 1.2rem;
  margin: 0;
}

.subtitleSection4Text {
  font-size: 2rem;
  margin-top: 1rem;
  line-height: 1.5;
}

.box-container {
  display: flex;
  gap: 4.8rem;
  justify-content: center;
  align-items: flex-end;
}

.box1-package,
.box2-package,
.box3-package {
  border: 2px solid #b887c1;
  padding: 10px;
  width: fit-content;
  border-radius: 8px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0, 2);
}
.box-pack {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.8rem;
}
.box1-package {
  height: 100%;
  padding: 20px;
  border-radius: 10px;
  background-color: #7678ed;
  min-height: 48rem;
  max-width: 35rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  outline: 3px solid rgba(156, 41, 178, 0.3);
  outline-offset: 6px;
}

.box1-package:hover {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15), 0 14px 20px rgba(0, 0, 0, 0.2),
    0 28px 60px rgba(156, 41, 178, 0.35);
  transform: translateY(-8px);
}

.box2-package {
  height: 100%;
  padding: 20px;
  border-radius: 8px;
  background-color: #ffd3e6;
  min-height: 54rem;
  max-width: 35rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  outline: 3px solid rgba(156, 41, 178, 0.3);
  outline-offset: 6px;
}

.box2-package:hover {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15), 0 14px 20px rgba(0, 0, 0, 0.2),
    0 28px 60px rgba(156, 41, 178, 0.35);
  transform: translateY(-8px);
}

.box3-package {
  height: 100%;
  padding: 20px;
  border-radius: 8px;
  background-color: #fff2cc;
  min-height: 56rem;
  max-width: 35rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  outline: 3px solid rgba(156, 41, 178, 0.3);
  outline-offset: 6px;
}

.box3-package:hover {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15), 0 14px 20px rgba(0, 0, 0, 0.2),
    0 28px 60px rgba(156, 41, 178, 0.35);
  transform: translateY(-8px);
}

.box1PackageTitle,
.box2PackageTitle,
.box3PackageTitle {
  color: #112340;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 0 !important;
}

.box1PackageDescription,
.box2PackageDescription,
.box3PackageDescription {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #112340;
  font-size: 1.6rem;
}

.boxSeparator {
  width: 90%;
  margin: 1rem auto;
  border: none;
  border-top: 2px solid #112340;
}

.box1PackageBtn,
.box1PackageBtn,
.box2PackageBtn,
.box3PackageBtn {
  padding: 12px 24px;
  background-color: #ffff;
  color: #7678ed;
  border: none;
  border-radius: 6px;
  font-size: 1.8rem;
  cursor: pointer;
  margin: 0 auto;
  /* display: block; eliminat pentru centrare corectă */
  transition: background-color 0.3s ease;
  text-decoration: none;
  text-align: center;
}
.box1PackageBtn:hover,
.box2PackageBtn:hover,
.box3PackageBtn:hover {
  background-color: #ff69b4;
  color: #ffff;
}

/* sectiunea 3+6+7*/
.section6 {
  background: linear-gradient(to bottom, #fff0e5, #fff);
  padding: 4rem 3rem;
}

/* Section 6 Curve */
.section6-curve {
  width: 100%;
  height: 80px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin-bottom: -2px; /* Optional: overlap the form box */
}

/* Section 6 Form styling */
.section6-formular {
  position: relative;
  background-color: #ffe7c0;
  border-radius: 0 0 2rem 2rem; /* Only bottom corners rounded */
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* Section 6 decorative stars */
.section6-photos {
  position: relative;
  display: flex;
  justify-content: center;
}

.yellowStars1 {
  position: absolute;
  left: 4rem;
  top: 2rem;
}

.yellowStars2 {
  position: absolute;
  top: 2rem;
  right: 4rem;
}

/* Section 6 text styling */
.section6Text {
  color: #710a85;
  text-align: center;
  margin: 0 auto;
  padding: 8rem 0 2rem 0;
  font-size: 6.4rem;
}

.section6Title {
  font-size: 1.6rem;
  text-align: center;
}

.section6Subtitle {
  text-align: center;
}
/* Section 6 form styling */
.contact-form {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.contact-form input {
  background-color: #f3e9f5;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #b887c1;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.contact-form textarea {
  background-color: #f3e9f5;
  width: 100%;
  height: 20rem;
  padding: 1rem;
  vertical-align: top;
  box-sizing: border-box;
  border-radius: 0.5rem;
  border: 1px solid #b887c1;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-row label {
  font-weight: 500;
  color: #710a85;
  margin-bottom: 0.2rem;
}

.buttonS6 {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  font-family: inherit;
  font-size: 1.8rem;
  font-weight: 600;
  color: #9c29b2;
  background: #fff0f0;
  border: 2px solid #b18597;
  border-radius: 0.75em;
  padding: 1.8rem 10rem;
  margin: 0 auto;
  transition: all 0.3s;
}
.buttonS6:hover {
  background-color: #7678ed;
  color: #fff;
}

/*************/
/* Footer */
/* ********** */

.footer {
  padding: 4.8rem 0 1.8rem 0;
  background-color: #171717;
}
.container-footer {
  max-width: 120rem;
  /*for centering */
  margin: 0 auto;
  padding: 0 0 3.2rem;
}

.grid--footer {
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 2.4rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #767676;
}

.footer-heading {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}

.grid {
  display: grid;
  row-gap: 9.6rem;
  column-gap: 6.4rem;
  margin-bottom: 9.6rem;
}
.grid:not(:last-child) {
  margin-bottom: 9.6rem;
}
.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}
.grid--5-cols {
  grid-template-columns: repeat(5, 1fr);
}
.grid--center-v {
  align-items: center;
}
.testimonials {
  padding: 9.6rem;
  background-color: #fff0e5;
}
.section-testimonials {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  background-color: #ffffff;
  padding: 4.8rem 3.2rem;
  margin: 0 4rem;
  border-radius: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  outline: 3px solid rgba(255, 105, 180, 0.3);
  outline-offset: 8px;
  position: relative;
  z-index: 10;
}
.testiomonials-container {
  padding: 9.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 4.8rem;
  column-gap: 8rem;
}
.testimonials-heading {
  text-align: center;
}
.testiomials-imges {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonials-message {
  font-size: 1.8rem;
  line-height: 1.8;
}
.testimonial {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  max-width: 64rem;

  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 1rem 1rem;
  border-radius: 1.2rem;

  margin: 0 auto;
}
.quote {
  height: 3rem;
}
.stars {
  height: 2.4rem;
}
.testimonial-text {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}
.img-character {
  height: 4.8rem;
  border-radius: 50%;
}
.character {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.name {
  font-size: 1.8rem;
  font-weight: 600;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.gallery-item {
  overflow: hidden;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
  cursor: pointer;
}
.gallery-item img:hover {
  transform: scale(1.1);
}
.full-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  z-index: 9999;
}

.full-img img {
  width: 50%;
  height: auto;
  box-shadow: 0 0 20px #000;
  border-radius: 2rem;
}
.close-img {
  position: absolute;
  top: 5%;
  right: 5%;
  font-size: 3.6rem !important;
  color: #fff;
  cursor: pointer;
}
.right-arrow {
  position: absolute;
  top: 50%;
  right: 18%;
  font-size: 4.8rem !important;
  color: #fff;
  cursor: pointer;
}
.left-arrow {
  position: absolute;
  top: 50%;
  left: 18%;
  font-size: 4.8rem !important;
  color: #fff;
  cursor: pointer;
}
.hidden {
  display: none !important;
}
.form-status {
  margin-top: 10px;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  display: none; /* ascuns implicit */
  transition: all 0.3s ease;
}

.form-status.show {
  display: block;
}

.form-status.loading {
  background-color: #ffcc00;
  color: #333;
}

.form-status.success {
  background-color: #4caf50;
  color: white;
}

.form-status.error {
  background-color: #ff4d4d;
  color: white;
}

.buttonSection6 {
  margin: 0 auto !important;
  width: 60% !important;
}
.thereButNot {
  pointer-events: none;
  user-select: none;
  opacity: 0;
}

.blur {
  filter: blur(10px);
}
.logo-footer {
  height: 8rem !important;
}

.made-by {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* 🔹 Aliniere la stânga */
  gap: 6px;
  font-size: 1.4rem;
  color: #767676; /* 🔹 Text alb */
  margin-top: 14px;
  opacity: 0.9;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.made-by:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.made-by-logo {
  height: 16px; /* mic, curat */
  width: auto;
  display: inline-block;
  vertical-align: middle;
  opacity: 0.9;
  filter: brightness(0) invert(1); /* 🔹 Face logo-ul alb automat */
  transition: opacity 0.3s ease;
}

.made-by strong {
  color: #232222;
  font-weight: #767676;
}

