/* ====== GENERAL ====== */
body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(-45deg, #6A0572, #A66CFF, #2E2E2E, #1c1c1c);
    background-size: 400% 400%;
    animation: gradientMove 20s ease infinite;
    color: white;
    scroll-behavior: smooth;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ====== CONTAINER ====== */
.container {
    max-width: 900px;
    margin: 6rem auto 4rem auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* ====== CONTACT SECTION ====== */
.contact-section h1 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.contact-section p {
    text-align: center;
    font-size: 1.2rem;
    color: #dddddd;
    margin-bottom: 2rem;
}

/* ====== CONTACT INFO ====== */
.contact-info {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.contact-info i {
    color: #A66CFF;
    margin-right: 0.5rem;
}

/* ====== SOCIAL MEDIA ICONS ====== */
.social-contact {
    text-align: center;
    margin-bottom: 2rem;
}

.social-contact a {
    color: #ffffff;
    font-size: 1.6rem;
    margin: 0 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-contact a:hover {
    transform: scale(1.2);
    color: #A66CFF;
}

/* ====== FORMULAR CONTACT ====== */
.formular-contact {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.formular-contact h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

input,
textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: #2E2E2E;
    color: white;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

form button {
    background: linear-gradient(45deg, #6A0572, #A66CFF);
    border: none;
    padding: 0.8rem;
    border-radius: 30px;
    font-weight: bold;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

form button:hover {
    background: linear-gradient(45deg, #A66CFF, #6A0572);
    transform: scale(1.05);
}

/* ====== GOOGLE MAP ====== */
.harta-google iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    margin-top: 2rem;
}

.google-map {
    border: 0;
} 

.ascuns {
    display: none;
}

.mesaj-multumire {
    margin-top: 20px;
}
/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .container {
        margin: 5rem 1rem 3rem 1rem;
        padding: 1.5rem;
    }

    .contact-section h1 {
        font-size: 2.2rem;
    }

    .formular-contact h2 {
        font-size: 1.8rem;
    }
}