/* === Reset & bază === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #111;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease-in;
}

body.loaded {
  opacity: 1;
}
main {
  flex: 1;
}

label[for="captcha"] {
  font-weight: bold;
  margin-top: 10px;
  display: block;
}

.mobile-menu-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.menu-text {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 0 4px rgba(255, 215, 0, 0.5);
}
/* === Header === */
header {
  background-color: #1f1f1f;
  padding: 20px 0;
  border-bottom: 3px solid #ffd700;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.logo {
  max-width: 180px;
  height: auto;
}

h1, .site-title {
  color: #f0e000;
  text-shadow: 0 0 1px #f0e000, 0 0 3px #d1c500;
  font-weight: 800;
  text-align: center;
  margin: 0;
}

/* === Navbar === */
nav {
  background-color: #333;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 14px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

nav a:hover,
nav a.active {
  background-color: #ffd700;
  color: #000;
  font-weight: bold;
}

/* === Hero Section === */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('img/hero.webp') center bottom/contain no-repeat;
  color: #fff;
  text-align: center;
  padding: 200px 20px 400px; /* Mai mult padding jos pentru a lăsa loc imaginii */
  border-bottom: 4px solid #ffd700;
  background-color: #000; /* fallback pt contain */
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.65);
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}


.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 30px;
}

.hero .button {
  font-size: 1.2rem;
  padding: 14px 28px;
  border-radius: 8px;
  background-color: #ffd700;
  color: #000;
  font-weight: 600;
  border: none;
  transition: background-color 0.3s;
}

.hero .button:hover {
  background-color: #e6c200;
}



/* === Secțiuni === */
section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

h2, h3 {
  margin-bottom: 20px;
}

p, ul, .button {
  margin-top: 10px;
  margin-bottom: 10px;
}

li {
  margin-bottom: 12px;
}

/* === Grid & Cards === */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: #1f1f1f;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(255,215,0,0.3);
}

.servicii-detaliate .card {
  display: flex;
  flex-direction: column;
  background: #1f1f1f;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.servicii-detaliate .card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.servicii-detaliate .card h3,
.servicii-detaliate .card p,
.servicii-detaliate .card a {
  padding: 0 16px;
}

.servicii-detaliate .card h3 {
  margin-top: 14px;
  font-size: 1.2rem;
  color: #fff;
}

.servicii-detaliate .card p {
  margin: 10px 0 20px;
  font-size: 0.95rem;
  color: #ccc;
  flex-grow: 1;
}

.servicii-detaliate .card a {
  margin-bottom: 20px;
  align-self: flex-start;
}

.servicii-detaliate .card {
  background: linear-gradient(to bottom right, #1c1c1c, #111);
  border: 1px solid #333;
}


.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}


/* === Butoane === */
.button,
.button-yellow {
  display: inline-block;
  background-color: #ffd700;
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
  border: none;
}

.button:hover,
.button-yellow:hover {
  background-color: #e6c200;
}

/* === Logo secundar acasă === */
.home-logo2 {
  display: flex;
  justify-content: flex-start;
  padding: 20px 0 0 20px;
}

.home-logo2 img {
  width: 160px;
  max-width: 90%;
  height: auto;
}

#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #ffd700;
  color: #000;
  padding: 12px 18px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 0 10px #ffd700, 0 0 20px #ffd70080;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
  display: none;
}

#back-to-top:hover {
  background-color: #e6c200;
  box-shadow: 0 0 12px #ffd700, 0 0 24px #ffd700aa;
}

#back-to-top.show {
  display: block;
}

.contact-info-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 600;
  color: #ffd700;
  margin-top: 12px;
  font-size: 1rem;
}

.contact-info-footer a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-footer a:hover {
  color: #fff;
  text-shadow: 0 0 6px #ffd700;
}

.contact-info-footer .separator {
  color: #ffd700;
  font-weight: bold;
  padding: 0 4px;
}

.contact-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #ffd700;
  font-weight: 600;
  margin-top: 8px;
}

.contact-inline a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-inline a:hover {
  color: #fff;
  text-shadow: 0 0 6px #ffd700;
}

.contact-inline .separator {
  font-weight: bold;
  color: #ffd700;
}

.program-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #80dfff;
  font-weight: 600;
  margin-top: 8px;
}

.program-inline .program-value {
  color: #80dfff;
  text-shadow: 0 0 6px #80dfff;
  font-weight: bold;
}

#mesaj-trimitere {
  background: #1c1c1c;
  border: 2px solid #ffd700;
  color: #ffd700;
  font-weight: bold;
  border-radius: 8px;
  padding: 16px;
  margin-top: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(255,215,0,0.3);
  display: none;
  transition: all 0.3s ease;
}


.despre-wrapper {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 40px 20px;
  background: linear-gradient(to bottom, #111, #1b1b1b);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  color: #eee;
  font-size: 1.05rem;
  line-height: 1.7;
}

.despre-wrapper h3 {
  color: #ffd700;
  margin-top: 30px;
  margin-bottom: 16px;
  font-size: 1.5rem;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.4);
  border-left: 4px solid #ffd700;
  padding-left: 12px;
}

.despre-wrapper p {
  margin-bottom: 20px;
  color: #ccc;
}

.despre-wrapper ul li {
  color: #ccc;
  margin-left: 20px;
  margin-bottom: 10px;
}
.despre-img {
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.despre-img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 50px rgba(255, 215, 0, 0.4);
}

.galerie {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 16px;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-banner p {
  margin: 0;
  text-align: center;
}

.cookie-banner a {
  color: #ffd700;
  text-decoration: underline;
}

.cookie-buttons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  background: #ffd700;
  border: none;
  color: #000;
  font-weight: bold;
  padding: 6px 14px;
  cursor: pointer;
  border-radius: 4px;
}

.cookie-buttons button:hover {
  background: #fff200;
}

.galerie img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.galerie img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.35);
}


/* === Footer === */
footer {
  background: linear-gradient(to right, #111, #222);
  text-align: center;
  color: #ccc;
  font-size: 0.9rem;
  padding: 30px 10px;
  margin-top: auto;
  border-top: 2px solid #ffd700;
}

.social-footer {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 15px;
}

.social-footer img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(1.2);
  border: none;
}

/* === Iconuri sociale contact === */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
}
.social-icons img,
.social-footer img {
  width: 72px !important;
  height: 72px !important;
  object-fit: contain;
  display: block;
  border: 1px solid #000;
  border-radius: 6px;
  padding: 4px;
  background-color: transparent;
}


/* === Meniu burger === */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  margin-bottom: 10px;
}

.icon {
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
}

.card::after {
  content: '';
  display: block;
  height: 3px;
  background: #ffd700;
  width: 0%;
  transition: width 0.3s ease;
  margin-top: 10px;
}
.card:hover::after {
  width: 100%;
}

.highlight {
  color: #ffd700;
  text-shadow: 0 0 4px #d4b800;
}

.subtagline {
  font-size: 1.2rem;
  text-align: center;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 40px;
  border-left: 4px solid #ffd700;
  padding-left: 16px;
  font-style: italic;
  line-height: 1.5;
}

.mobile-menu-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

/* Stil text „Meniu” */
.menu-text {
  font-size: 1rem;
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 4px;
  text-shadow: 0 0 4px rgba(255, 215, 0, 0.5);
}


.faq-item {
  background: #1b1b1b;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-item:hover {
  background: #2a2a2a;
}

.faq-item h3 {
  position: relative;
  font-size: 1.2rem;
  color: #ffd700;
}

.faq-item p {
  margin-top: 10px;
  display: none;
  color: #ccc;
  font-size: 0.95rem;
}

.img-wrap {
  width: 100%;
  display: block;
}

.img-wrap img {
  pointer-events: none;   /* dezactivează click */
  user-select: none;      /* nu pot fi selectate */
}


/* === Responsive – max 768px === */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    margin: 0 auto;
  }

  nav {
    display: none;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  nav.open {
    display: flex;
  }

  .home-logo2 {
    justify-content: center;
    padding-left: 0;
  }

  .home-logo2 img {
    width: 140px;
  }

  .hero {
  padding: 120px 15px 300px;
  background-size: contain;

}

.hero h2 {
  font-size: 2.2rem;
}

.hero p {
  font-size: 1.1rem;
}


  .grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 16px;
  }
  .card.in-view {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(255,215,0,0.3);
}
.card.in-view::after {
  width: 100%;
}
.galerie {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
  }

  .galerie a {
    pointer-events: none;
    cursor: default;
  }

  .galerie img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
    display: block;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
  }

  .galerie img.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  section.intro {
    padding: 20px;
    text-align: center;
  }

  .intro h2 {
    font-size: 1.4rem;
    word-break: break-word;
  }

  .intro p {
    font-size: 1rem;
  }

  footer {
    margin-top: 60px;
    padding: 20px;
  }
}

/* === Desktop layout === */
@media (min-width: 769px) {
  .header-content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }

  .logo {
    max-width: 140px;
    margin: 0;
  }

  h1 {
    margin: 0;
  }

  .servicii-detaliate .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .despre-img {
    max-width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    margin: 30px auto;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .despre-img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 50px rgba(255, 215, 0, 0.4);
  }
   .mobile-menu-label {
    display: none;
  }
}

