@import url('styles.css');

.special {
    padding: 60px 0;
    background-color: var(--accent-color);
    margin-bottom: 40px;
}

.special h2 {
    font-family: var(--header-font);
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.special-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.special-text-box {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.special-text-box p {
    margin-bottom: 20px;
}

.special-gallery {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.gallery-box {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.gallery-box h3 {
    font-family: var(--header-font);
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.gallery-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-images img {
    width: 200px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.italian-flag {
    display: flex;
    height: 8px;
    margin: 20px 0;
}

.flag-green {
    flex: 1;
    background-color: #008000;
}

.flag-white {
    flex: 1;
    background-color: #ffffff;
}

.flag-red {
    flex: 1;
    background-color: #cd212a;
}

footer {
    width: 100%;
    box-sizing: border-box;
}