/* General Styles */
body {
  font-family: "Poppins", sans-serif;
  background-color: #f5f5f5;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Header / Hero Section */
.hero {
  background: url("./images/header_bg.jpeg") no-repeat center center/cover;
  color: white;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.6);
  width: 40%;
  height: 100%;
  padding: 40px;
  padding-top: 25vh;
  border-radius: 10px;
  color: #444;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Navigation Bar */
.navbar-nav {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.navbar-brand {
  color: #c89d5e !important;
  font-weight: bold;
}

.nav-link {
  color: #555 !important;
}

.nav-link:hover {
  color: #c89d5e !important;
}

/* Services Section */
.service-section {
  padding: 60px 0;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 250px;
  width: 100%;
  max-width: 280px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: white;
  margin: 15px auto;
}

.service-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
}

/* About Us Section */
.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #f8eadf;
  border-radius: 10px;
  width: 100%;
}

.about-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 100%;
  max-width: 1200px;
}

.text-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.text-content h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.image-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.image-content img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #f8eadf;
  border-radius: 10px;
  width: 100%;
}

.contact-section h2 {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 30px;
}

.contact-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.contact-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.contact-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-item img {
  object-fit: contain;
  max-height: 500px; /* Setează o înălțime maximă */
  width: 100%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(53%) sepia(90%) saturate(300%) hue-rotate(15deg); /* Transformă săgețile în auriu */
  background-color: transparent; /* Elimină fundalul */
  width: 50px; /* Mărește dimensiunea săgeților */
  height: 50px;
}
/* Responsive Design */
@media (max-width: 992px) {
  .hero-overlay {
    width: 100%;
    text-align: center;
  }

  .text-content,
  .image-content {
    width: 100% !important;
    text-align: center;
  }

  .container.d-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-section {
    padding: 40px 0;
  }

  .service-card {
    width: 100%;
    max-width: 220px;
    height: 220px;
    margin: 10px auto;
  }

  .service-card img {
    height: 120px;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .text-content {
    max-width: 100%;
    text-align: center;
  }

  .text-content h1 {
    font-size: 2rem;
  }

  .text-content p {
    font-size: 1rem;
  }

  .image-content {
    max-width: 100%;
  }

  .image-content img {
    max-width: 80%;
  }

  .contact-content {
    flex-direction: column;
    text-align: center;
  }

  .contact-info,
  .contact-image {
    max-width: 100%;
    text-align: center;
  }

  .contact-info p {
    font-size: 1rem;
  }
}

/* Buttons */
.btn-orange {
  background-color: #c89d5e;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-orange:hover {
  background-color: #b78a50;
  cursor: pointer;
}
