/* 
Theme Name: Ambasciatori 
Template Name: Associati con noi
*/

/* ============== HERO SECTION (Associati) ================ */
.hero-associati {
    position: relative;
    color: var(--text-white);
    padding: 120px 0 100px;
    text-align: center;
}

.hero-associati .hero-bg,
.hero-associati .hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
    background: #0d1b31;
}

.hero-associati .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 54, 100, 0.2);
    /* Transparent blue overlay */
    z-index: -1;
}

.hero-associati .hero-content {
    position: relative;
    z-index: 1;
}

.hero-associati .hero-subtitle {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-associati .hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-associati .hero-desc {
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
}

/* ============== DIPLOMATICO SECTION ================ */
.diplomatico-section {
    padding: 80px 0;
}

.diplomatico-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.diplomatico-image {
    flex: 1;
}

.diplomatico-image img {
    width: 100%;
    border-radius: var(--border-radius);
    background: #e0e0e0;
    min-height: 350px;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.diplomatico-text {
    flex: 1.2;
}

.diplomatico-text h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 25px;
}

.diplomatico-text p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.diplomatico-text .btn {
    margin-top: 15px;
}

/* ============== VANTAGGI SECTION ================ */
.vantaggi-section {
    position: relative;
    padding: 80px 0;
    color: var(--text-white);
}

.vantaggi-bg,
.vantaggi-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
}

.vantaggi-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Dark overlay */
    z-index: -1;
}

.vantaggi-container {
    position: relative;
    z-index: 1;
}

.vantaggi-section .section-heading h2 {
    color: var(--text-white);
    font-size: 32px;
    margin-bottom: 10px;
}

.vantaggi-section .section-heading p {
    color: #e0e0e0;
    font-size: 18px;
    margin-bottom: 50px;
}

.vantaggi-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.vantaggio-item {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    text-align: center;
}

.vantaggio-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Makes icons white if they are black transparent PNGs */
}

.vantaggio-item p {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

/* ============== FORM SECTION ================ */
.form-section {
    padding: 80px 0;
    background-color: #fff;
}

.form-section .section-heading {
    margin-bottom: 40px;
}

.form-section .section-heading h2 {
    color: var(--primary-color);
    font-size: 32px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.associazione-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    background-color: #fcfcfc;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--text-dark);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-submit.full-width {
    width: 100%;
    margin-top: 10px;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 18px;
    font-size: 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .diplomatico-container {
        flex-direction: column;
    }

    .vantaggi-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .hero-associati .hero-title {
        font-size: 36px;
    }
}