/* css/components.css */

/* 1. Buton Gold */
.btn-gold {
  display: inline-block;
  background: var(--clr-gold);
  color: var(--clr-dark-bg);
  padding: 0.75rem 2rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: var(--fw-semibold);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn-gold:hover {
  background: #d4af37;
  color: #000;
}

/* 2. Hover Cards */
.hover-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.hover-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hover-card:hover img {
  transform: scale(1.05);
}
.hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.75);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  text-align: center;
  padding: 1rem;
}
.hover-card:hover .hover-overlay {
  opacity: 1;
}
.hover-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 3. Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-text {
  position: absolute;
  bottom: 6rem;
  left: 4rem;
  max-width: 550px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.hero-text h1 {
  font-size: 3.5rem;
  margin: 0 0 1rem;
  font-weight: 600;
}
.hero-text p {
  font-size: 1.25rem;
  margin: 0;
  font-weight: 300;
}

/* 4. Parallax Section */
.parallax {
  height: 70vh;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

/* 5. Slide-Up Animation */
.slide-up {
  padding: 6rem 2rem;
  background: #fff;
}
.slide-up-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.slide-up-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}
.slide-up-content p {
  font-family: var(--font-main);
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

/* 6. Carduri Mari – 3 pe rând, ~90% din ecran */
.cards-grid-large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 90%;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
@media (max-width: 768px) {
  .cards-grid-large {
    grid-template-columns: 1fr;
    max-width: 95%;
  }
}

/* 7. Manager Cards - STILURI CHEIE PENTRU POZE ROTUNDE */
.manager-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 160px;
  text-decoration: none;
  color: inherit;
}

.manager-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%; /* 🔴 AICI e magia – face poza rotundă */
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid var(--clr-gold);
}

/* === Fallback avatar rotund pentru manageri ===
   Funcționează chiar dacă scriptul a scos class="manager-avatar"
   (targetăm imaginile din /images/managers/ aflate în cardurile de manager) */
.manager-card img[src*="/images/managers/"] {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid var(--clr-gold);
}

.manager-info .name {
  font-weight: var(--fw-bold);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--clr-white);
}

.manager-info .role {
  font-size: 0.85rem;
  color: var(--clr-gold);
  margin-bottom: 0.25rem;
}

.manager-info .mail {
  font-size: 0.8rem;
  color: var(--clr-white);
  text-decoration: underline;
}

.manager-card:hover .mail {
  color: var(--clr-gold-hover);
}
/* Stiluri pentru formularul de contact */
.form-box {
  background: rgba(0, 0, 0, 0.75);
  padding: 2.5rem 3rem;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 1rem;
  background: #fff;
  color: #000;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.checkbox-wrapper input[type="checkbox"] {
  margin-top: 0.25rem;
}

.checkbox-wrapper a {
  color: var(--clr-gold);
  text-decoration: underline;
}

.checkbox-wrapper a:hover {
  color: #d4af37;
}

.footer-col-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}

.footer-col-logo img {
  margin: 0;
}