/* Font import (opțional local) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Reset */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff5f8;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Heading colors */
h1, h2, h3, h4, h5 {
  color: #e91e63;
  font-weight: 700;
}

/* Buttons */
.btn-danger {
  background-color: #e91e63;
  border: none;
}

.btn-danger:hover {
  background-color: #d81b60;
}

.btn-outline-danger {
  color: #e91e63;
  border-color: #e91e63;
}

.btn-outline-danger:hover {
  background-color: #e91e63;
  color: #fff;
}

.btn-success {
  background-color: #4CAF50;
  border: none;
}

.btn-success:hover {
  background-color: #43a047;
}

/* Service cards */
.card-title {
  font-size: 1.25rem;
  color: #d81b60;
}

.card {
  border: 1px solid #eee;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Gallery images */
.img-fluid {
  object-fit: cover;
  border-radius: 10px;
}

/* Sections */
section {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Hero Section */
.hero {
  background: #ffeef5;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}


.carousel-caption {
  bottom: 20%;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
}
.navbar-nav li.menu-item-has-children > a::after {
  content: ' ▼';
  font-size: 0.6em;
}
.navbar-nav .sub-menu {
  display: none;
  position: absolute;
  background-color: white;
  z-index: 1000;
  padding: 0.5rem;
  border: 1px solid #ddd;
}
.navbar-nav li:hover > .sub-menu {
  display: block;
}
.navbar-nav .sub-menu li {
  list-style: none;
}

.carousel-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  #heroCarousel {
    width: 100%;
    max-width: 1320px;
    overflow: visible;
    position: relative;
  }

  .carousel-inner {
    /*display: flex;*/
    flex-wrap: nowrap;
    overflow: visible;
  }

  .carousel-item {

    transition: transform 0.5s ease-in-out !important;
  }

  .carousel-item.active {

  }

  .carousel-caption {
    bottom: 20px;
  }

  @media (max-width: 768px) {
    .carousel-item {
      flex: 0 0 90%;
    }
  }

  footer li a {
  text-decoration: none !important;
}

  footer li a:hover {
    color: #fff;
  text-decoration: underline !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: #212529;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  background-color: #f8f9fa;
  color: #dc3545;
  text-decoration: none;
}

.navbar-nav .nav-link.active {
  color: #dc3545;
  font-weight: 600;
  position: relative;
}

.navbar-nav .nav-link.active::after {
  content: '';
  display: block;
  width: 30%;
  height: 2px;
  background: #dc3545;
  margin: 4px auto 0;
  border-radius: 1px;
}
.navbar-nav .nav-link {
  color: #212529;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.navbar-nav .nav-link:hover {
  color: #dc3545;
  background-color: #f8f9fa;
  text-decoration: none;
}

.navbar-nav .nav-link.active {
  color: #dc3545;
  font-weight: 600;
}

.language-switcher a {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.language-switcher a:hover {
  color: #dc3545;
}
