/* Box de titlu */
.title-box {
    
    background: linear-gradient(135deg, #002c58, #00376f);
    color: white;
    border-radius: 0px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.title-text {
    padding-top: 50px;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.subtitle-text {
  font-size: 1.5rem;
  font-weight: 300;
  color: #d1e7ff;
    text-decoration: underline;
    text-underline-offset: 29px;
}

/* Stil pentru containerul imaginii */
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 40px;
}

.image-container:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Stil pentru imagine */
.image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.1);
}

/* Text suprapus pe imagine */
.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 44, 88, 0.8); /* Fundal semi-transparent */
  color: white;
  padding: 10px 20px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

/* Stil pentru containerul textului */
.p-4 {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-4:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Stil pentru titlul textului */
.p-4 h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #0056b3;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}

/* Stil pentru paragrafe */
.p-4 p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
  text-align: justify;
}

.p-4 p:last-child {
  margin-bottom: 0;
}

/* Evidențiere pentru cuvinte cheie */
.p-4 p strong {
  color: #0056b3;
  font-weight: bold;
}

/* Animație subtilă */
.p-4:hover p {
  color: #002c58;
  transition: color 0.3s ease;
}

/* Secțiunea Episoade */
.episodes {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.episodes-title {
  font-size: 2rem;
  font-weight: bold;
  color: #0056b3;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Stil pentru fiecare episod */
.episode {
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.episode:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Titlul episodului */
.episode-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

/* Textul episodului */
.episode p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* Butonul episodului */
.episode-btn {
  font-size: 1rem;
  padding: 10px 20px;
  background-color: #0056b3;
  color: white;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.episode-btn:hover {
  background-color: #003d80;
  transform: scale(1.05);
}

/* Stil comun pentru imagini */
.common-image {
  max-width: 100%;
  height: auto;
  border: 2px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}