/* about.css - Solo stili specifici per il contenuto About */

.about-container {
    max-width: 1200px;
    margin: 100px auto 80px; /* Space for fixed header and bottom */
    padding: 0 20px;
}

h1, h2 {
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.text-block p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Quote Section */
.quote-section {
    margin: 60px 0;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.03); /* Sfondo scuro leggero */
    border-left: 5px solid var(--accent-color);
    text-align: center;
}

blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
}

/* Location Section */
.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.location-content .text-block {
    flex: 1;
    min-width: 300px;
}

.location-map-placeholder {
    flex: 1;
    min-width: 300px;
    height: 300px;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.production-subtitle {
    text-align: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.3rem;
    margin-top: -20px;
    margin-bottom: 40px;
    color: var(--accent-color);
    line-height: 1.5;
}

.production-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.4), transparent);
    margin: 80px 0;
}

@media (max-width: 768px) {
    .location-content {
        flex-direction: column;
    }
    .production-subtitle {
        font-size: 1.1rem;
        margin-top: -20px;
        margin-bottom: 30px;
    }
}

/* Production Gallery */
.production-gallery {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.production-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.production-gallery img:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}