/* Stiluri generale */
html, body {
    height: 100%;
    margin: 0;
  }

body {
    background-color: #f0f0f0bd;
    font-family: 'Poppins', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #0c0d0e;
    transition: color 0.3s;
}

a:hover {
    color: #0b3b6e;
}

.navbar-static {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(32, 5, 5, 0.1);
}

.navbar-brand {
    color: #000000;
    font-weight: bold;
}

.navbar-nav .nav-link {
    color: #000;
    font-weight: bold; /* Text îngroșat */
    margin-left: 1rem;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #0056b3; /* O nuanță mai deschisă pentru efectul hover */
    font-weight: bold; /* Păstrează textul îngroșat și la hover */
}

.navbar-toggler-icon {
    background-color: #ffffff;
    border-radius: 3px;
}

.bg-section {
    background: url("../images/banner1-cf80a70fbe8a766e7f371fd6da8b709d.jpg") no-repeat center center/cover;
}

.content-wrapper {
    text-align: left;
    padding: 15px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.6);
}

/* Stiluri specifice pentru dispozitive mobile */
@media (max-width: 768px) {
    .bg-section {
        background-position: right; /* Aliniază imaginea la stânga */
        color: white; 
    }
}

.container {
    text-align: justify;
}

.category-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%; /* Imagine rotundă */
    border: 2px solid #dee2e6;
    padding: 10px;
}

.slick-list {
    padding: 10px 0;
}

.card {
    border-radius: 10px;
    height: auto;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 1rem;
    background-color: #f8f9fa; /* Fundal ușor gri */
}

.card-title {
    font-size: 1rem;
    margin-top: 1rem; /* Spațiu între imagine și text */
    color: #333;
}

.card-text {
    white-space: nowrap; /* Impiedică textul să treacă pe rândul următor */
    overflow: hidden; /* Ascunde textul care depășește lățimea containerului */
    text-overflow: ellipsis; /* Adaugă "..." la finalul textului trunchiat */
    height: 1.5rem; /* Setează o înălțime fixă pentru text */
    line-height: 1.5rem; /* Aliniază textul pe un singur rând */
}

/* Stiluri pentru butoane */
.btn {
    transition: background-color 0.3s, box-shadow 0.3s;
    border-radius: 50px;
    padding: 0.5rem 2rem;
    font-weight: bold;
}

.btn-light {
    color: #000;
    background-color: #fff;
    border: none;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0.3);
}

.btn-success {
    background-color: #28a745;
    color: #fff;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.2);
}

.btn-success:hover {
    background-color: #218838;
    box-shadow: 0 6px 15px rgba(40, 167, 69, 0.3);
}

.btn-primary {
    background-color: #007bff;
    border: none;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    border: 1px solid #ffffff;
    color: #ffffff;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: #000;
}

/* Stiluri pentru imagini animate */
.animate-img {
    transition: transform 0.5s ease-in-out;
}

.animate-img:hover {
    transform: scale(1.05);
}

/* Stiluri pentru antet */
.menu-toggle {
    display: none;
    color: #ffffff;
    font-size: 1.5rem;
    border: none;
    background: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        background-color: #6a1b9a;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    .nav-menu.nav-active {
        display: flex;
    }
    .nav-menu a {
        margin: 0.5rem 0;
    }
}

/* Stiluri pentru carduri și overlay */
.card-image-container {
    height: auto;
    position: relative;
    border: 5px solid #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

.card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-overlay {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    padding: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Stiluri pentru Sectiunea de avantaje */
.advantages {
    background-color: #f9f9f9;
}

.advantage-card {
    background-color: #ffffff;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.advantage-card .icon-wrapper {
    border-radius: 50%;
    background-color: #f1f1f1;
    display: inline-block;
    padding: 1rem;
}

.advantage-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 0, 0, 0));
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 15px;
    z-index: -1;
}

.advantage-card:hover .card-overlay {
    opacity: 1;
}

/* Stiluri pentru footer */
.footer {
    background-color: #343a40; /* Fundal întunecat */
    color: #adb5bd; /* Culoare text deschisă */
    padding: 2rem 0;
    text-align: center;
}

.footer a {
    color: #adb5bd;
    text-decoration: underline;
    transition: color 0.3s;
}

.footer a:hover {
    color: #ffffff; /* Culoare text la hover */
}

.footer .bi {
    font-size: 1.5rem;
    color: #adb5bd;
    margin-right: 10px;
    transition: color 0.3s;
}

.footer .bi:hover {
    color: #ffffff;
}


/* Stiluri pentru cardul de servicii */
.service-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 200px; /* Setează o înălțime fixă pentru aspect pătrat */
    object-fit: cover;
}


.card-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.card-title a:hover {
    color: #007bff;
}

.item-price {
    font-size: 1.1rem;
}

.item-duration {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}
/*Stiluri pentru pagina serviciului*/
.service-page h1 {
    font-weight: bold;
    color: #333;
}

.carousel-inner img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.item-description {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.item-side {
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.btn-primary:hover {
    background-color: #0056b3;
    color: #fff;
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}
.img-service {
    max-height: 400px; /* Limitează înălțimea imaginii */
    object-fit: cover; /* Ajustează imaginea pentru a nu distorsiona */
    border-radius: 10px; /* Rotunjirea colțurilor pentru un aspect uniform */
}
/*pagina contact*/
.company-info {
    background-color: #f9f9f9; /* Fundal deschis */
}

.social-links a {
    color: #007bff; /* Schimbă culoarea linkurilor de socializare */
    font-size: 1.5rem;
}

.social-links a:hover {
    color: #0056b3;
}

/*Stiluri pentru pagina despre*/
.about-us h2, .about-us h3, .about-us h4 {
    color: #343a40;
}

.about-us p, .about-us li {
    color: #6c757d;
}

.about-us img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-us ul {
    list-style-type: disc;
    margin-left: 20px;
}

/*crop imagini*/
.image-container {
    width: 400px;
    height: 400px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

