/* Stili condivisi per pagine mensili del calendario */
:root {
    --color-burgundy: #8B4789;
    --color-text: #333;
    --color-text-light: #666;
}

body {
    background-color: #fff;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text);
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.video-container {
    width: 100%;
    max-width: 100%;
    background-color: #000;
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.month-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.month-overlay .year {
    font-size: 2.5rem;
    font-weight: 500;
    margin-left: 10px;
}

.content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.artist-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 400;
}

.dida {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--color-burgundy);
    font-style: italic;
    margin-bottom: 40px;
    padding: 0 10px;
}

.full-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text);
    white-space: pre-line;
    text-align: justify;
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 8px 12px;
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-button:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: var(--color-burgundy);
}

@media (max-width: 768px) {
    .video-container {
        height: 38vh;
    }

    .month-overlay {
        font-size: 1.5rem;
        bottom: 15px;
        left: 15px;
    }
    
    .month-overlay .year {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 30px 15px;
    }
    
    .dida {
        font-size: 1.15rem;
    }
    
    .full-text {
        font-size: 1rem;
    }
}
