/* About Section Styles */
.section-about {
    position: relative;
    background: url('https://raw.githubusercontent.com/lucarosati28/cgr/main/assets/about/festival-about.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: var(--spacing-xl) 0;
    min-height: 100vh;
}

/* Overlay per il testo */
.section-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(33, 150, 243, 0.1) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

.section-about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl) 0;
}

.about-text {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    padding: var(--spacing-xl);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.about-text p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Section title specific styles */
.section-about h2 {
    color: var(--warm-glow);
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .about-text {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .section-about {
        background-position: center center;
    }

    .about-text {
        padding: var(--spacing-md);
    }

    .about-text p {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .about-text {
        padding: var(--spacing-lg);
    }

    .about-text p {
        font-size: 1em;
    }
}