/* Reset și Stiluri de Bază */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c59d5f;
    --secondary-color: #1a1a1a;
    --text-color: #333;
    --light-color: #f9f9f9;
    --dark-color: #121212;
    --gray-color: #777;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    line-height: 1.3;
}

p {
    margin-bottom: 15px;
}

.text-left {
    text-align: left;
}

.align-left {
    margin-left: 0;
    transform: none;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Butoane */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--secondary-color);
}

.btn-large {
    padding: 15px 35px;
    font-size: 16px;
}

/* Separatoare */
.separator {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 20px auto;
}

.serviciu-separator {
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 15px auto;
}
.serviciu-icon img {
    width: 30px;
    height: auto;
}


.certificare-separator {
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 15px 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

header.sticky {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Logo */
.logo img {
    height: 100px; /* Mărit la 100px */
    width: auto;
    transition: var(--transition);
}

/* Ajustare pentru header sticky */
header.sticky .logo img {
    height: 80px; /* Mărit la 80px */
}nav ul {
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: white;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.header-cta .btn-programare {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.header-cta .btn-programare:hover {
    background-color: transparent;
    color: white;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;

}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
}

.hero-text {
    max-width: 600px;
}

.hero-text h4 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.social-sidebar {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-sidebar a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-sidebar a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

/* About Intro Section */
.about-intro {
    padding: 120px 0;
    background-color: white;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-image {
    position: relative;
    height: 80%;
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.about-intro-text h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.about-intro-text .subtitle {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 2px;
}

.about-intro-text p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.about-intro-text .btn {
    margin-top: 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h4 {
    font-size: 16px;
    color: var(--primary-color);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--secondary-color);
}

/* Servicii Section */
.servicii {
    padding: 120px 0;
    background-color: var(--light-color);
}

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

.serviciu-card {
    background-color: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.serviciu-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 24px;
}

.serviciu-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.serviciu-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.serviciu-pret {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

.servicii-cta {
    text-align: center;
    margin-top: 60px;
}

/* Counter Section */
.counter-section {
    padding: 100px 0;
    background-image: url('https://source.unsplash.com/random/1920x1080/?barbershop,vintage,dark');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
}

.counter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
}

.counter-number {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.counter-item h3 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Despre Section */
.despre {
    padding: 120px 0;
    background-color: white;
}

.despre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.despre-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.despre-text h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.despre-text p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.despre-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
}

.feature i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

.despre-image {
    position: relative;
    height: 100%;
}

.despre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Galerie Section */
.galerie {
    padding: 120px 0 90px;
    background-color: var(--light-color);
    overflow: hidden;
}
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0;
}

@media screen and (max-width: 768px) {
    .galerie .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .galerie-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        grid-auto-flow: row;
        width: 100%;
    }

    .galerie-item {
        position: relative;
        width: 100%;
        height: 120px;
        min-width: initial;
    }

    .galerie-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.galerie-item {
    position: relative;
    overflow: hidden;
    height: 350px; /* Mărit de la 250px la 350px */
    min-width: calc(100% / 8);
}.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.galerie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.galerie-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: var(--transition);
}

.galerie-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.galerie-info p {
    font-size: 14px;
    color: var(--primary-color);
}

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

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

.galerie-item:hover .galerie-info {
    transform: translateY(0);
}
/* Testimoniale Section */
.testimoniale {
    position: relative;
    padding: 120px 0;
    background-color: white;
}

.testimoniale-slider {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.testimoniale-navigation {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}

.prev-testimonial,
.next-testimonial {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.prev-testimonial {
    left: 0;
    position: absolute;
}

.next-testimonial {
    right: 0;
    position: absolute;
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.testimonial {
    flex: 0 0 500px; /* Lățime fixă */
    margin: 0 auto; /* Centrare */
}

.testimoniale-dots {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}.testimonial-content {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-text {
    margin-bottom: 30px;
}

.testimonial-text i {
    font-size: 30px;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
    display: block;
}

.testimonial-text p {
    font-style: italic;
    color: var(--gray-color);
    font-size: 15px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

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

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.author-info p {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 0;
}

/* Certificări Section */
.certificari {
    padding: 120px 0;
    background-color: var(--light-color);
}

.certificari-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--gray-color);
}

.certificari-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.certificare-card {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.certificare-image {
    height: 200px;
    overflow: hidden;
}

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

.certificare-content {
    padding: 25px;
}

.certificare-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.certificare-content p {
    color: var(--gray-color);
    font-size: 14px;
}

/* Programare Banner */
.programare-banner {
    padding: 100px 0;
    background-image: url('https://source.unsplash.com/random/1920x1080/?barbershop,haircut,dark');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
    color: white;
}

.programare-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.programare-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.programare-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.programare-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 5px;
    transition: var(--transition);
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 20px;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-card p {
    color: var(--gray-color);
    margin-bottom: 5px;
}

.map {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-info p {
    color: #aaa;
    margin: 20px 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-links h3,
.footer-programare h3 {
    font-size: 18px;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h3::after,
.footer-programare h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-programare p {
    color: #aaa;
    margin-bottom: 20px;
}

.copyright {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 60px;
    }
    
    .about-intro-content,
    .despre-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-intro-image {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-info {
        grid-column: span 2;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links h3::after,
    .footer-programare h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-programare {
        text-align: center;
    }
    
    .footer-links ul li a:hover {
        padding-left: 0;
    }
}

@media (max-width: 768px) {

    .testimoniale-dots {
        margin-bottom: 20px;
        margin-top: 20px;
        
    }

    .about-intro-content {
        display: flex;
        flex-direction: column;
    }

    .about-intro-image {
        order: 2;
        height: 80%;
        margin-top: 30px;
    }

    .about-intro-text {
        order: 1;
    }

    .about-intro-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 5px;
    }
@media (max-width: 768px) {
    header .container {
        padding: 0 15px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(18, 18, 18, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .header-cta {
        display: none;
    }

    /* Typography */
    h1 { font-size: 32px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }
    h4 { font-size: 16px; }
    p { font-size: 14px; }

    /* Sections Padding */
    .about-intro,
    .servicii,
    .despre,
    .galerie,
    .testimoniale,
    .certificari,
    .contact {
        padding: 40px 0;
    }

    /* Hero Section */
    .hero-text {
        padding: 60px 0;
    }

    /* Services Grid */
    .servicii-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .serviciu-card {
        padding: 15px;
    }

    .serviciu-card h3 {
        font-size: 16px;
    }

    .serviciu-card p {
        font-size: 12px;
    }

    .serviciu-pret span {
        font-size: 18px;
    }

    /* Counter Section */
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* About Features */
    .despre-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Gallery */
    .galerie-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .galerie-item {
        height: 120px;
    }

    /* Testimonials */
    .testimoniale-slider {
        width: 90%;
    }

    /* Certificates */
    .certificari-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .contact-card {
        height: 140px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 15px 10px;
    }

    .contact-icon {
        margin-bottom: 8px;
    }

    .contact-card h3 {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .contact-card p {
        font-size: 10px;
        line-height: 1.3;
        margin-bottom: 2px;
    }

@media (max-width: 768px) {
    .contact-card h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .contact-card p {
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 2px;
    }
}    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Navigation */
    nav ul li a {
        font-size: 14px;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 30px;
    }

    /* Spacing */
    .separator {
        margin: 15px auto;
        width: 60px;
    }
}
@media (max-width: 576px) {
    /* Even smaller screens */
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .serviciu-card h3 {
        font-size: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
    .galerie-item {
        cursor: pointer;
}
.call-button {
    position: fixed;
    bottom: 90px; /* Positioned above the back-to-top button */
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    transition: var(--transition);
}

.call-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}
@media (max-width: 768px) {
    .footer-links {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}    .certificare-card {
        max-width: 300px;
        margin: 0 auto;
    }

    .certificare-image {
        height: 150px;
    }

    .certificare-content {
        padding: 15px;
    }

    .certificare-content h3 {
        font-size: 16px;
    }

    .certificare-content p {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .contact-icon {
        width: 30px;
        height: 30px;
        font-size: 10px;
        margin-bottom: 10px;
    }
}
@media (max-width: 768px) {
    /* Header */
    header {
        padding: 10px 0;
    }

    .logo img {
        height: 50px;
    }

    /* Landing Page Text */
    .hero-text h4 {
        font-size: 14px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .hero-text h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 12px;
        margin-bottom: 30px;
    }

    .hero-buttons .btn {
        font-size: 14px;
        padding: 8px 20px;
    }

    .footer-info p {
        font-size: 12px;
        margin: 15px 0;
    }

    .footer-links h3,
    .footer-programare h3 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-links ul li a {
        font-size: 12px;
    }

    .footer-programare p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .copyright p {
        font-size: 11px;
    }
}
@media (max-width: 768px) {
    .contact-card:last-child p {
        font-size: 9px;
        line-height: 1.2;
        margin-bottom: 1px;
    }
    .footer-logo {
        display: none;
    }
}
@media (max-width: 768px) {
    .programare-content h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .programare-content p {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .programare-content .btn {
        font-size: 12px;
        padding: 8px 20px;
    }
}