.hidden {
  display: none !important;
}


/* Stil pentru mobil */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
  justify-content: center;
}

main {
  font-size: 1.5rem;
  padding: 2rem;
}

#follow-up {
  font-size: 0.9rem;
  color: #555;
  margin-top: 1rem;
}

#romb {
  display: block;
  margin: 15px auto;  /* centru orizontal și spațiu față de text */
}

#romb {
  position: relative;
  width: 30px;
  height: 30px;
  margin: 10px auto;
  transform: rotate(45deg); /* face pătratul romb */
}

.quadrant {
  position: absolute;
  width: 40%;
  height: 40%;
  background: rgb(0, 139, 63); /* culoare secțiuni */
  border: 2px solid #fffb00;   /* culoarea liniilor dintre pătrățele */
}

/* poziționare secțiuni */
.top-left {
  top: 0;
  left: 0;
}

.top-right {
  top: 0;
  right: 0;
}

.bottom-left {
  bottom: 0;
  left: 0;
}

.bottom-right {
  bottom: 0;
  right: 0;
}

/* --- ROMB CLICKABIL --- */

/* ROTIRE 180° la hover / touch pe desktop */
#romb-container:hover #romb {
  transform: rotate(405deg); /* 45 + 360 = 405 */
}

#romb {
  width: 20px;
  height: 20px;
  margin: 0 auto;
  transform: rotate(45deg);
  cursor: pointer;
   transition: transform 0.5s ease-in-out; /* animație lină */
}

.quadrant {
  width: 30%;
  height: 30%;
  position: absolute;
  background: rgb(0, 139, 63);
  border: 2px solid #fffb00;
}

.q1 { top: 0; left: 0; }
.q2 { top: 0; right: 0; }
.q3 { bottom: 0; left: 0; }
.q4 { bottom: 0; right: 0; }

/* MENIU ASCUNS */
#menu {
  max-height: 0;
  overflow: hidden;
  margin-top: 8px;
  text-align: center;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

#menu.show {
  max-height: 200px;
  opacity: 1;
}

#menu a {
  display: block;
  margin: 6px 0;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}
body::before{
  content:"";
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.75);
  z-index: -1;
}
body {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  body{
  padding-bottom: 60px;
}

  
}

#sponsor{
  position: fixed;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;

  font-size: 14px;
  color: #444;
}


#shareBtn{
  margin-top: 14px;
  padding: 10px 16px;
  border: 1px solid #ffffff;
  background: #fff;
  color: #000;
  border-radius: 12px;
  font-size: 14px;
  cursor: pointer;
}


