/* ============================================================
                     PALETĂ GENERALĂ COPII
   ============================================================ */

   :root {
    --blue-main: #3b82f6;
    --blue-light: #dbeafe;
    --blue-bright: #60a5fa;

    --pink-light: #ffe4e6;
    --pink-accent: #fb7185;

    --yellow-light: #fef9c3;
    --yellow-accent: #facc15;

    --green-light: #dcfce7;
    --green-accent: #4ade80;

    --purple-light: #f3e8ff;
    --purple-accent: #c084fc;

    --orange-light: #ffedd5;
    --orange-accent: #fb923c;

    --soft-shadow: 0 8px 20px rgba(0,0,0,0.06);
}


/* ============================================================
                           GLOBAL
   ============================================================ */

   body {
    margin: 0;
    font-family: 'Comic Sans MS', 'Poppins', Arial, sans-serif;
    background: url("fundal2.jpg") no-repeat center center fixed;
    background-size: cover;
    color: #333;
}

/* Header „Friendly” */
header {
    background: #e5e5e5;
    color: white;
    padding: 25px;
    text-align: center;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: var(--soft-shadow);
}
/* HEADER CU DOUĂ LOGO-URI LATERALE */
.header-double-logo {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background-color: #e5e5e5;
    color: #1e40af;
    padding: 20px 20px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* LOGO-URILE DIN STÂNGA ȘI DREAPTA */
.logo-left,
.logo-right {
    width: 200px;
    height: auto;
    border-radius: 18px; /* colțuri rotunjite */
}


/* LOGO ÎN STÂNGA — împins spre marginea paginii */
.logo-left {
    justify-self: start;
    margin-left: 10px;
}

/* LOGO ÎN DREAPTA — împins spre marginea paginii */
.logo-right {
    justify-self: end;
    margin-right: 10px;
}

/* TITLUL CENTRAT PERFECT */
.header-double-logo h1 {
    text-align: center;
    margin: 0;
    font-size: 3.6rem;
}



/* ============================================================
                          NAVBAR
   ============================================================ */

nav {
    display: flex;
    justify-content: center;
    gap: 18px;
    background: transparent;
    padding: 20px 0;
}

nav a {
    background: white;
    color: var(--blue-main);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 12px 20px;
    border-radius: 14px;
    border: 2px solid var(--blue-bright);
    box-shadow: var(--soft-shadow);
    transition: 0.25s ease;
}

nav a:hover {
    background: var(--blue-bright);
    color: white;
    transform: translateY(-3px);
}

/* ============================================================
                        STRUCTURĂ PAGINI
   ============================================================ */

main {
    width: 70vw;;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 28px;
    box-shadow: var(--soft-shadow);
}

/* ============================================================
                        EXPERIENȚE GRID
   ============================================================ */

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
    margin-top: 30px;
    padding: 25px;
    border-radius: 20px;
    background: var(--blue-light);
    border: 3px dashed var(--blue-main);
}

.exp-item {
    background: white;
    padding: 0px;
    border-radius: 16px;
    text-align: center;
    font-size: 1.1rem;
    border: 2px solid var(--blue-main);
    box-shadow: var(--soft-shadow);
    transition: 0.25s;
}

.exp-item:hover {
    transform: scale(1.07);
    background: var(--yellow-light);
}

.exp-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* imaginea umple chenarul frumos */
    border-radius: 12px;    /* colțuri rotunjite la fel ca exp-item */
    display: block;         /* elimină spațiul alb nedorit */
}

/* ============================================================
                     DESPRE NOI – KIDS DESIGN
   ============================================================ */

.despre-container {
    max-width: 900px;
    margin: auto;
    line-height: 1.8;
    padding: 10px;
}

/* Titlu Mare – Stil Cartoon */
.despre-container h1 {
    font-size: 2.6rem;
    color: var(--blue-main);
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 #c7d2fe;
}

/* Subtitlu */
.despre-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* Carduri stil „jucărie” */

.card-blue,
.card-orange,
.card-story {
    padding: 28px;
    border-radius: 22px;
    margin-bottom: 28px;
    background: white;
    border: 4px solid transparent;
    box-shadow: var(--soft-shadow);
}

/* Albastru */
.card-blue {
    background: var(--blue-light);
    border-color: var(--blue-bright);
}
.card-blue h2 {
    color: var(--blue-main);
}

/* Portocaliu */
.card-orange {
    background: var(--orange-light);
    border-color: var(--orange-accent);
}
.card-orange h2 {
    color: var(--orange-accent);
}

/* Povestea */
.card-story {
    background: var(--purple-light);
    border-color: var(--purple-accent);
}
.card-story h2 {
    color: var(--purple-accent);
}

.card-story blockquote {
    background: white;
    padding: 15px;
    border-radius: 16px;
    border-left: 6px solid var(--purple-accent);
    font-style: italic;
    box-shadow: var(--soft-shadow);
}

/* ============================================================
                     VALORI – CARDURI KIDS
   ============================================================ */

.valori-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
    margin-top: 25px;
}

.valori-item {
    padding: 22px;
    border-radius: 16px;
    font-weight: bold;
    text-align: center;
    box-shadow: var(--soft-shadow);
}

/* Culori carduri valori */
.valori-explorare { background: var(--blue-light); }
.valori-creativitate { background: var(--pink-light); }
.valori-inovatie { background: var(--purple-light); }
.valori-siguranta { background: var(--green-light); }
.valori-joaca { background: var(--yellow-light); }

.launch-hero {
    width: 100%;
    display: flex;
    justify-content: center; /* centrează pe orizontală */
    align-items: center;
    overflow: hidden;
    border-radius: 24px;
  }
  
  .launch-hero img {
    display: block;      /* elimină comportamentul inline */
    width: 100%;         /* umple chenarul pe lățime */
    height: auto;
  }
  
  /* --------------------- INSCRIERE LANSARE --------------------- */

.signup-section {
    margin-top: 50px;
    text-align: center;
}

.signup-section h2 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* Formular */
.signup-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Input telefon */
.signup-form input[type="tel"] {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 12px;
    border: 2px solid #1e40af;
    outline: none;
    min-width: 220px;
}

/* Buton */
.signup-form button {
    padding: 14px 22px;
    font-size: 1rem;
    border-radius: 12px;
    border: none;
    background: #1e40af;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.25s;
}

/* Hover */
.signup-form button:hover {
    background: #3b82f6;
    transform: scale(1.05);
}

/* ============================================================
   RESPONSIVE FIX (fără să schimbăm regulile existente)
   ============================================================ */

/* Permite ca navbar-ul să se împacheteze pe mai multe rânduri */
nav {
    flex-wrap: wrap;
  }
  
  /* Opțional: dacă unele butoane sunt foarte lungi, le permitem să se rupă */
  nav a {
    white-space: normal;
    text-align: center;
  }
  
  /* Pe ecrane mici: micșorăm puțin padding-ul și fontul ca să încapă mai bine */
  @media (max-width: 768px) {
    nav {
      gap: 10px 12px;
      padding: 14px 10px;
    }
  
    nav a {
      font-size: 1rem;
      padding: 10px 14px;
    }
  
    /* main să nu depășească ecranul pe mobil */
    main {
      width: calc(100% - 24px);
      margin: 20px auto;
      padding: 20px;
    }
  
    /* logo-urile mari pe mobil */
    .logo-left, .logo-right {
      width: 120px;
    }
  
    .header-double-logo h1 {
      font-size: 2.4rem;
    }
  }
  
  @media (max-width: 480px) {
    nav a {
      font-size: 0.95rem;
      padding: 10px 12px;
    }
  
    .logo-left, .logo-right {
      width: 90px;
    }
  
    .header-double-logo h1 {
      font-size: 2rem;
    }
  }
  /* ============================================================
   MOBILE FIX – header + main (NU afectează desktop)
   ============================================================ */

@media (max-width: 768px) {
    /* main să ocupe frumos ecranul pe mobil/tabletă */
    main {
      width: calc(100% - 24px);
      margin: 16px auto;
      padding: 18px;
    }
  
    /* HEADER: din 3 coloane -> 1 coloană pe mobil */
    .header-double-logo {
      grid-template-columns: 1fr;
      gap: 10px;
      padding: 14px 12px;
    }
  
    /* Logo-urile: mult mai mici și centrate */
    .logo-left,
    .logo-right {
      width: min(42vw, 140px);   /* se adaptează la ecran */
      justify-self: center;
      margin: 0;                 /* scoate margin-left/right */
    }
  
    /* Titlul: mult mai mic */
    .header-double-logo h1 {
      font-size: 2.2rem;
      line-height: 1.1;
    }
  }
  
  @media (max-width: 480px) {
    /* și mai compact pe telefoane mici */
    .logo-left,
    .logo-right {
      width: min(46vw, 120px);
    }
  
    .header-double-logo h1 {
      font-size: 1.9rem;
    }
  }
  @media (max-width: 768px) {
    /* ascundem logo-ul din dreapta */
    .logo-right {
      display: none;
    }
  
    /* revenim la layout pe rând */
    .header-double-logo {
      grid-template-columns: auto 1fr; /* logo + titlu */
      align-items: center;
      gap: 12px;
    }
  
    .logo-left {
      width: 72px;
      margin: 0;
    }
  
    .header-double-logo h1 {
      font-size: 1.9rem;
      text-align: center;
    }
  }
  /* ============================================================
   MOBILE – margini egale pentru header + main (design curat)
   ============================================================ */
@media (max-width: 768px) {

    /* container comun vizual */
    .header-double-logo,
    main {
      width: calc(100% - 24px) !important; /* spațiu egal stânga/dreapta */
      margin-left: auto !important;
      margin-right: auto !important;
    }
  
    /* padding mai compact pe mobil */
    .header-double-logo {
      padding-left: 14px !important;
      padding-right: 14px !important;
    }
  
    main {
      padding-left: 16px !important;
      padding-right: 16px !important;
    }
  }
  

  html, body {
    overflow-x: hidden;
  }
    