/* RESETARE ELEMENTE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2c3e50;
    background-color: #f8f9fa;
    line-height: 1.6;
}

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

/* NAVBAR */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #0b4f6c;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: #01baef;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #546e7a;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #01baef;
}

.btn-apel-nav {
    background-color: #0b4f6c;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-apel-nav:hover {
    background-color: #01baef;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #0b4f6c 0%, #01baef 100%);
    color: #fff;
    padding-top: 140px;
    text-align: center;
}

.hero-container {
    max-width: 800px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.2s, background 0.3s;
}

.btn-primary {
    background-color: #2ec4b6;
    color: #fff;
}

.btn-primary:hover {
    background-color: #20a396;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #25d366;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #1ebd54;
    transform: translateY(-2px);
}

/* TITLURI SECTIUNI */
.sectiune-titlu {
    text-align: center;
    font-size: 36px;
    color: #0b4f6c;
    margin-bottom: 10px;
}

.sectiune-subtitlu {
    text-align: center;
    color: #78909c;
    margin-bottom: 50px;
}

.text-alb {
    color: #fff;
}

/* SERVICII */
.servicii-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.serviciu-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}

.serviciu-card:hover {
    transform: translateY(-5px);
}

.serviciu-icon {
    font-size: 40px;
    color: #01baef;
    margin-bottom: 20px;
}

.serviciu-card h3 {
    margin-bottom: 15px;
    color: #0b4f6c;
}

.serviciu-card p {
    color: #607d8b;
    margin-bottom: 20px;
    font-size: 15px;
}

.pret {
    display: inline-block;
    background-color: #e1f5fe;
    color: #0288d1;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

/* GALERIE FOTO */
.galerie {
    background-color: #fff;
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.galerie-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
    background-color: #eceff1; /* Fundal temporar până pui pozele */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galerie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 79, 108, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galerie-overlay span {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 4px;
}

.galerie-item:hover img {
    transform: scale(1.1);
}

.galerie-item:hover .galerie-overlay {
    opacity: 1;
}

/* BENEFICII */
.beneficii {
    background-color: #0b4f6c;
}

.beneficii-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.beneficiu-item {
    text-align: center;
    color: #fff;
}

.beneficiu-item i {
    font-size: 45px;
    color: #2ec4b6;
    margin-bottom: 20px;
}

.beneficiu-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.beneficiu-item p {
    opacity: 0.8;
    font-size: 15px;
}

/* CONTACT */
.contact-box {
    background-color: #fff;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h3 {
    color: #0b4f6c;
    margin-bottom: 25px;
    font-size: 22px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info i {
    color: #01baef;
    font-size: 18px;
    width: 20px;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

/* FOOTER */
footer {
    background-color: #073143;
    color: #b0bec5;
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
}

/* RESPONSIVITATE */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Ascundem meniul pe mobil pentru simplitate momentan */
    }
    .hero h1 {
        font-size: 32px;
    }
}