/* ===== HERO VIDEO CONTAINER ===== */
.hero-video-container {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  z-index: 0;
}


.hero-video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.1), rgba(0,0,0,0.7));
  z-index: 2;
  pointer-events: none;
}


/* ===== ICONIȚĂ PLAY / PAUSE ===== */
.video-icon {
  position: absolute;
  bottom: 30px;
  right: 50px;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.247);
  background: rgba(0, 0, 0, 0);
  padding: 0.4rem 0.8rem;
  border-radius: 10px;
  pointer-events: none;
  opacity: 1;
  z-index: 10;
  transition: opacity 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
}

/* ===== ICONIȚĂ SOUND ===== */
.sound-button {
  position: absolute;
  bottom: 15px;
  left: 40px;
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0);
  padding: 0.3rem 0.7rem;
  border-radius: 10px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
}

/* ===== NAVBAR ===== */
.navbar {
  width: 100%;
  background: linear-gradient(to bottom, rgba(5, 0, 36, 0.742),rgba(6, 0, 37, 0.742),rgba(8, 0, 53, 0.742), rgba(8, 0, 53, 0.742));
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  transition: opacity 0.5s ease;
}

.navbar-container.with-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* ===== CARDURI ===== */
.image-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 2rem;
  background: #fff;
}

.image-card {
  width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  text-align: left;
  transition: transform 0.2s ease;
}

.image-card:hover {
  transform: translateY(-5px);
}

.image-card img {
  width: 100%;
  border-radius: 10px;
  margin-top: 1rem;
}

.image-tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #999;
}

.image-title {
  font-size: 1.3rem;
  margin: 0.5rem 0;
}

.image-subtext {
  font-size: 1rem;
  color: #444;
}

.divider.small {
  width: 100%;
  height: 1px;
  background: #eee;
  margin: 0.5rem 0;
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}


.sound-button:hover {
  background: rgba(0, 0, 0, 0.8);
}



/* ===== SECȚIUNE TEXT DESPRE MINE ===== */
.aboutme-text-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
  max-width: 900px;
  margin: 0 auto;
  color: #222;
  font-family: 'Georgia', serif;
}

.aboutme-text-section h2 {
  font-size: 2.6rem;
  margin-bottom: 2rem;
  color: #333;
  font-weight: bold;
  text-align: center;
  font-family: 'Georgia', serif; /* aceeași ca restul textului */
}


.aboutme-text-section h3 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  color: #444;
  font-weight: normal;
  font-family: Georgia, 'Times New Roman', Times, serif;
}


.aboutme-text-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: justify;
}

.aboutme-text-section p strong {
  font-size: 4rem;
  float: left;
  margin-right: 10px;
  color: #964B00;
  line-height: 1;
}

.social-sticky {
  position: fixed;
  top: 35%;
  right: 0;
  background: #c00; 
  border-radius: 12px 0 0 12px;
  padding: 0.6rem 0.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.594);
}

.social-sticky .share-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  color: white;
  font-weight: bold;
}

.social-sticky a img {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease;
  filter: brightness(0) invert(1); /* face iconițele albe */
}

.social-sticky a:hover img {
  transform: scale(1.2);
}

@media only screen and (max-width: 768px) {
  .hero-video-container {
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    overflow: hidden;
    z-index: 0;
  }

  .hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  .aboutme-text-section {
    padding: 2rem 1rem;
    font-size: 0.95rem;
  }

  .aboutme-text-section h2 {
    font-size: 2rem;
  }

  .aboutme-text-section h3 {
    font-size: 1.2rem;
  }

  .aboutme-text-section p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .aboutme-text-section p strong {
    font-size: 3rem;
  }
}

