/* Containerul care ține toate cardurile */
#container {
    display: grid;
    width: 100vw;      /* 100% din viewport width */
    height: auto;      /* mai bine auto, altfel forțează scroll ciudat pe mobil */
    grid-template-columns: repeat(6, 1fr); /* 6 coloane egale pe desktop */
    gap: 15px; /* spațiu între carduri */
    padding: 10px;
    /* Background */
    background-image: url('https://www.profudegeogra.eu/wp-content/uploads/2025/10/image.png'); 
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat; 
}

/* Card individual */
.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    opacity: 0.9;
}

/* Imaginea din card */
.clasaImagini {
    width: 100px;
    height: auto;
    border: 2px solid black;
    border-radius: 5px;
    margin-bottom: 8px;
}

/* Descrierea */
.card span {
    display: block;
    width: 100%;
    text-align: center;
}

.imageDescriptions {
    font-weight: bolder;
    font-size: 18px;
    font-family: 'Times New Roman', Times, serif;
}

#details {
  margin-top: 20px;
  padding: 15px;
  border: 2px solid #ccc;
  border-radius: 8px;
  background: #f9f9f9;
  width: 100%;  /* să fie fluid pe mobil */
  max-width: 1200px;
  height: auto;
  font-size: 20px;  
}
#details h2 {
  margin: 0 0 10px;
  color: darkred;
}

/* 📱 Responsivitate */

/* Tablete mari (max 1024px) */
@media (max-width: 1024px) {
  #container {
    grid-template-columns: repeat(3, 1fr); /* 3 coloane pe tabletă */
  }
  .clasaImagini {
    width: 80px;
  }
  .imageDescriptions {
    font-size: 16px;
  }
  #details {
    font-size: 18px;
  }
}

/* Telefoane (max 600px) */
@media (max-width: 600px) {
  #container {
    grid-template-columns: repeat(1, 1fr); /* 1 coloană pe telefon */
  }
  .clasaImagini {
    width: 70px;
  }
  .imageDescriptions {
    font-size: 14px;
  }
  #details {
    font-size: 16px;
  }
}
