/* Resetare stiluri implicite */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: #f4f7fc;
    color: #333;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    text-align: center; /* Centrarea logo-ului */
    position: sticky;
    top: 0;
    z-index: 10;
}

header .logo-img {
    max-width: 150px; /* Poți ajusta dimensiunea logo-ului */
    height: auto;
}

#hero {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 5px solid #ffd700;
}

#hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

#hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #333;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff6347;
}

.section {
    padding: 60px 20px;
    text-align: center;
}

.bg-light {
    background-color: #f7f7f7;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.services {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
}

.service {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    text-align: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

.service h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
	border-top: 5px solid #ffd700;
	
}

footer p {
    font-size: 14px;
}

.footer-bottom {
    background-color: #23303d;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Resetare stiluri implicite */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: #f4f7fc;
    color: #333;
    font-size: 16px;
    transition: background-color 0.5s ease;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 10;
    animation: fadeIn 1s ease-out;
}

header .logo-img {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

header .logo-img:hover {
    transform: scale(1.1);
}

#hero {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 5px solid #ffd700;
}

.cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #333;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: bounceIn 1s ease-out;
}

.cta-button:hover {
    background-color: #ff6347;
    transform: scale(1.05);
}

.section {
    padding: 60px 20px;
    text-align: center;
    animation: fadeIn 1.5s ease-out;
}

.bg-light {
    background-color: #f7f7f7;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.services {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
    animation: fadeInUp 1.5s ease-out;
}

.service {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-icon:hover {
    transform: rotate(15deg);
}

.service h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}


footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: 50px;
    animation: fadeIn 1.5s ease-out;
}

footer p {
    font-size: 14px;
    margin-top: 15px;
}

/* Stilizare pentru cele trei secțiuni din footer */
.footer-boxes {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;  /* Permite ca secțiunile să se așeze pe mai multe linii dacă e necesar */
}

.footer-box {
    background-color: rgba(0, 0, 0, 0.1); /* Fundal semitransparent */
    padding: 15px 20px;
    border-radius: 8px;
    width: 32%; /* 3 secțiuni pe linie */
    text-align: left;
    font-size: 13px;
    line-height: 1.6;
}


#contact {
    background-color: #fff; /* Fundal alb pentru a o evidenția */
    border-radius: 8px; /* Colțuri rotunjite */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Umbra subtilă pentru a adăuga profunzime */
    padding: 40px 20px; /* Spațiu suplimentar pentru text */
    margin-top: 50px; /* Spațiu între secțiunea anterioară și aceasta */
    text-align: center;
    animation: fadeIn 1.5s ease-out; /* Efect de animație */
}

#contact h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

#contact a {
    font-size: 18px;
    color: #2575fc; /* Albastru pentru a atrage atenția asupra linkului */
    font-weight: bold;
    transition: color 0.3s ease; /* Tranziție lină pentru schimbarea culorii */
}

#contact a:hover {
    color: #ff6347; /* Schimbă culoarea în roșu când se trece cu mouse-ul */
}


/* Adăugăm stiluri pentru titlurile din fiecare box */
.footer-box strong {
    font-weight: bold;
    color: #fff;
}

/* Responsivitate pentru telefoane mobile */
@media (max-width: 768px) {
    .footer-boxes {
        flex-direction: column; /* Coloană pe mobil */
        align-items: center;
    }

    .footer-box {
        width: 100%; /* Fiecare box ocupă toată lățimea pe mobil */
        margin-bottom: 20px;
    }
}






/* Animații */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }
    60% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}



