/* 
 * Custom CSS for Festival Sections
 * Human Rights Are Universal Arts Festival
 */

/* ========== Common Section Styles ========== */
.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #202060;
    margin-bottom: 15px;
    position: relative;
}

.section-underline {
    width: 80px;
    height: 4px;
    background-color: #FFD900;
    margin-bottom: 25px;
}

.section-description {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-header {
    margin-bottom: 50px;
}

/* ========== Festival Showcase Section ========== */
.festival-showcase {
    position: relative;
    padding: 100px 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

.showcase-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#202060 1px, transparent 1px), 
                      radial-gradient(#202060 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.05;
    z-index: 0;
}

.showcase-content {
    position: relative;
    z-index: 2;
    padding-right: 30px;
}

/* Showcase statistics */
.showcase-stats {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 20px;
}

.stat-item {
    flex: 1;
    min-width: 100px;
    text-align: center;
    padding: 15px;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #D85050;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #202060;
    text-transform: uppercase;
}

/* Showcase gallery */
.showcase-gallery {
    position: relative;
    z-index: 1;
}

.gallery-container {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
    height: 100%;
}

.gallery-item {
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Image changing transition */
.gallery-item.changing {
    opacity: 0.5;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Define grid positions for each item */
.item-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.item-2 {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}

.item-3 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.item-4 {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

.item-5 {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
}

.item-6 {
    grid-column: 3 / 5;
    grid-row: 3 / 4;
}

.gallery-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    background-color: #202060;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.overlay-text {
    font-size: 16px;
    font-weight: 600;
}

/* ========== Activities Section ========== */
.activities-section {
    position: relative;
    padding: 100px 0 50px;
    background-color: #ffffff;
}

.activities-container {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.activity-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid #202060;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.activity-card.featured {
    border-top: 5px solid #D85050;
}

.activity-card.featured .activity-icon {
    background-color: #D85050;
}

.activity-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #202060;
    color: #ffffff;
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 28px;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-icon {
    transform: scale(1.1);
}

.activity-title {
    font-size: 22px;
    font-weight: 700;
    color: #202060;
    margin-bottom: 15px;
}

.activity-description {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.activity-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.detail-badge {
    display: inline-block;
    padding: 5px 12px;
    background-color: #f0f0f0;
    color: #202060;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.activity-card:hover .detail-badge {
    background-color: #FFD900;
}

/* Activities Call to Action */
.activities-cta {
    background-color: #D85050;
    padding: 60px 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.activities-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
    opacity: 0.3;
}

/* New background image and overlay styles */
.activities-cta .cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateZ(0);
    will-change: transform;
    z-index: 0;
    transition: transform 0.1s ease-out;
}

.activities-cta .cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 14px 30px;
    background-color: #ffffff;
    color: #D85050;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #202060;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .gallery-container {
        height: 500px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 32px;
    }
}

@media (max-width: 991.98px) {
    .festival-showcase, .activities-section {
        padding: 80px 0;
    }
    
    .showcase-content {
        margin-bottom: 50px;
        padding-right: 0;
    }
    
    .gallery-container {
        height: 450px;
    }
    
    .showcase-stats {
        justify-content: center;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 20px);
    }
    
    .activity-card {
        padding: 25px;
    }
    
    .activity-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .activity-title {
        font-size: 20px;
    }
    
    .activities-cta {
        padding: 50px 0;
        margin-top: 60px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 32px;
    }
    
    .section-description, .section-subtitle {
        font-size: 16px;
    }
    
    .gallery-container {
        height: 400px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    
    .item-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    
    .item-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    
    .item-3 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    .item-4 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    
    .item-5 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    
    .item-6 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .festival-showcase, .activities-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .gallery-container {
        height: 350px;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 10px);
        min-width: 120px;
        padding: 10px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .gallery-overlay {
        bottom: 10px;
        right: 10px;
        padding: 10px 15px;
    }
    
    .overlay-text {
        font-size: 14px;
    }
    
    .activity-card {
        padding: 20px;
    }
    
    .activity-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .activity-title {
        font-size: 18px;
    }
    
    .activities-cta {
        padding: 40px 0;
        margin-top: 40px;
    }
}

/* Timeline Section Styles */
.timelines-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.timelines-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="20" cy="20" r="2"/></g></svg>') repeat;
    pointer-events: none;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Timeline Column */
.timeline-container {
    position: relative;
    padding: 20px 0;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-progress-container {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #e9ecef;
    border-radius: 2px;
    z-index: 1;
}

.timeline-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #3498db, #2980b9);
    border-radius: 2px;
    transition: height 1s ease-in-out;
}

.timeline-wrapper {
    position: relative;
    z-index: 2;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 8px;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 4px solid #3498db;
    border-radius: 50%;
    z-index: 3;
    transition: all 0.3s ease;
}

.timeline-item.featured::before {
    background: #3498db;
    border-color: #2980b9;
    width: 24px;
    height: 24px;
    left: 20px;
    top: 6px;
}

.timeline-item-content {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.timeline-item-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.timeline-item-date {
    font-size: 0.9rem;
    color: #3498db;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 8px 0 12px;
}

.timeline-item-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.timeline-item-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 15px 0;
}

.panel-day {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
    border-left: 3px solid #3498db;
}

.panel-day .day {
    display: block;
    font-weight: 600;
    color: #3498db;
    font-size: 0.9rem;
}

.panel-day .topic {
    display: block;
    color: #495057;
    font-size: 0.85rem;
    margin-top: 2px;
}

.timeline-item-tag {
    display: inline-block;
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-item-tag.featured {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: #fff;
}

/* Countdown Column (Right) */
.timeline-countdown-container {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.countdown-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.countdown-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.countdown-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.countdown-festival-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.countdown-card:hover .countdown-festival-image {
    transform: scale(1.05);
}

.countdown-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
}

.countdown-content {
    padding: 25px;
}

.countdown-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.3;
}

.countdown-subtitle {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.countdown-info {
    margin-bottom: 25px;
}

.countdown-location,
.countdown-duration {
    display: flex;
    align-items: center;
    color: #495057;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.countdown-location i,
.countdown-duration i {
    color: #3498db;
    margin-right: 8px;
    width: 16px;
}

/* Countdown Timer */
.countdown-timer-container {
    margin-bottom: 25px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    border: 2px solid #e3f2fd;
}

.countdown-item {
    text-align: center;
    min-width: 50px;
}

.countdown-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 4px;
}

.countdown-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.countdown-separator {
    font-size: 1.5rem;
    color: #3498db;
    font-weight: 700;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Action Buttons */
.countdown-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.countdown-btn,
.countdown-btn-secondary {
    flex: 1;
    min-width: 120px;
    padding: 10px 16px;
    font-size: 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #3498db;
}

.countdown-btn {
    background: #3498db;
    color: #fff;
}

.countdown-btn:hover {
    background: #2980b9;
    border-color: #2980b9;
    transform: translateY(-1px);
    color: #fff;
}

.countdown-btn-secondary {
    background: transparent;
    color: #3498db;
}

.countdown-btn-secondary:hover {
    background: #3498db;
    color: #fff;
    transform: translateY(-1px);
}

/* Mobile Timeline */
.mobile-timeline {
    display: none;
}

/* Mobile Countdown in Timeline */
.mobile-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
}

.mobile-countdown-item {
    text-align: center;
}

.mobile-countdown-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.mobile-countdown-label {
    font-size: 0.7rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.mobile-countdown-actions {
    margin-top: 15px;
}

.countdown-slide {
    border-left: 4px solid #3498db !important;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .timeline-container {
        margin-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    .timelines-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline-container {
        padding: 15px 0;
    }
    
    .mobile-timeline {
        display: block;
    }
    
    .mobile-timeline-item {
        background: #fff;
        margin: 20px;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-left: 4px solid #3498db;
    }
    
    .mobile-timeline-item.featured {
        border-left-color: #2980b9;
        background: linear-gradient(135deg, #f8f9fa, #ffffff);
    }
    
    .date-marker {
        background: linear-gradient(45deg, #3498db, #2980b9);
        color: #fff;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        display: inline-block;
        margin-bottom: 15px;
    }
    
    .mobile-timeline-item h3 {
        font-size: 1.2rem;
        color: #2c3e50;
        margin-bottom: 10px;
    }
    
    .mobile-timeline-item p {
        color: #6c757d;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .panel-days {
        margin-top: 15px;
    }
    
    .panel-day {
        background: #f8f9fa;
        padding: 8px 12px;
        margin-bottom: 5px;
        border-radius: 4px;
        border-left: 3px solid #3498db;
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    /* Any small mobile styles needed */
}

/* Our Goal Section Styles */
.our-goal-section {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

/* Enhanced Background Styles */
.goal-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateZ(0);
    will-change: transform;
    z-index: 0;
    transition: transform 0.1s ease-out;
}

.goal-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.92) 30%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.8) 100%);
    z-index: 1;
}

.our-goal-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(233, 84, 32, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 2;
}

.our-goal-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(233, 84, 32, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 2;
}

.goal-content {
    position: relative;
    z-index: 3;
    padding-right: 2rem;
}

.goal-mission, .goal-vision {
    margin-bottom: 2rem;
}

.goal-mission h3, .goal-vision h3, .goal-values h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.goal-mission h3 i, .goal-vision h3 i, .goal-values h3 i {
    color: #E95420;
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.goal-mission p, .goal-vision p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-item {
    background-color: rgba(233, 84, 32, 0.05);
    border-radius: 8px;
    padding: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.value-title {
    display: block;
    font-weight: 600;
    color: #E95420;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.value-item p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.goal-cta {
    margin-top: 2.5rem;
}

.goal-cta .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.goal-cta .btn-primary {
    background-color: #E95420;
    border-color: #E95420;
}

.goal-cta .btn-primary:hover {
    background-color: #c13e0a;
    border-color: #c13e0a;
}

.goal-cta .btn-outline-secondary {
    color: #555;
    border-color: #ccc;
}

.goal-cta .btn-outline-secondary:hover {
    background-color: #f8f9fa;
    color: #333;
}

/* Goal Images Styling */
.goal-image-wrapper {
    position: relative;
    z-index: 2;
}

.goal-image-container {
    position: relative;
    height: 600px;
}

.goal-image {
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.goal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.goal-image:hover img {
    transform: scale(1.05);
}

.goal-image-1 {
    width: 65%;
    height: 50%;
    top: 0;
    left: 0;
    z-index: 3;
}

.goal-image-2 {
    width: 50%;
    height: 40%;
    top: 15%;
    right: 0;
    z-index: 2;
}

.goal-image-3 {
    width: 55%;
    height: 45%;
    bottom: 0;
    left: 20%;
    z-index: 1;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.goal-image:hover .image-caption {
    opacity: 1;
}

.goal-quote {
    position: absolute;
    bottom: 25%;
    right: 5%;
    width: 200px;
    background-color: white;
    border-left: 4px solid #E95420;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 4;
}

.goal-quote blockquote {
    font-style: italic;
    color: #333;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.goal-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #777;
    font-style: normal;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .goal-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .goal-image-container {
        height: 500px;
    }
    
    .goal-bg-overlay {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.8) 100%);
    }
}

@media (max-width: 767px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .goal-image-container {
        height: 450px;
    }
    
    .goal-image-1 {
        width: 70%;
        height: 45%;
    }
    
    .goal-image-2 {
        width: 60%;
        height: 40%;
    }
    
    .goal-image-3 {
        width: 65%;
        height: 40%;
        left: 15%;
    }
    
    .goal-quote {
        width: 180px;
        padding: 1.25rem;
        bottom: 20%;
    }
    
    .goal-bg-overlay {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.9) 100%);
    }
}

@media (max-width: 575px) {
    .goal-image-container {
        height: 400px;
    }
    
    .goal-image-1 {
        width: 75%;
        height: 45%;
    }
    
    .goal-image-2 {
        width: 65%;
        height: 40%;
    }
    
    .goal-image-3 {
        width: 70%;
        height: 40%;
        left: 10%;
    }
    
    .goal-quote {
        width: 160px;
        padding: 1rem;
        right: 0;
        bottom: 15%;
    }
    
    .goal-bg-parallax {
        background-position: 60% center;
    }
}

/* Artworks Section Styles */
.artworks-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
}

.artworks-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(249, 249, 249, 0) 0%, rgba(249, 249, 249, 1) 100%);
    pointer-events: none;
}

/* Artwork Filters */
.artwork-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2.5rem 0;
    gap: 0.5rem;
}

.filter-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    color: #555;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: rgba(233, 84, 32, 0.1);
    border-color: #E95420;
    color: #E95420;
}

.filter-btn.active {
    background-color: #E95420;
    border-color: #E95420;
    color: white;
}

/* Artworks Grid */
.artworks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.artwork-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
}

.artwork-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.artwork-item.hidden {
    display: none;
}

.artwork-item.fade-out {
    opacity: 0;
    transform: scale(0.8);
}

.artwork-item.fade-in {
    opacity: 1;
    transform: scale(1);
}

.artwork-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.artwork-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artwork-item:hover .artwork-image img {
    transform: scale(1.1);
}

.artwork-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artwork-item:hover .artwork-overlay {
    opacity: 1;
}

.artwork-overlay-content {
    text-align: center;
    padding: 1rem;
}

.artwork-category {
    display: inline-block;
    background-color: #E95420;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.view-artwork {
    display: inline-block;
    background-color: white;
    color: #333;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-artwork:hover {
    background-color: #E95420;
    color: white;
}

.artwork-info {
    padding: 1.5rem;
}

.artwork-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.artwork-artist {
    color: #E95420;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.artwork-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Artworks CTA */
.artworks-cta {
    margin-top: 3rem;
}

.artworks-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.artworks-cta .btn {
    margin: 0 0.5rem 1rem;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
}

.artworks-cta .btn-primary {
    background-color: #E95420;
    border-color: #E95420;
}

.artworks-cta .btn-primary:hover {
    background-color: #c13e0a;
    border-color: #c13e0a;
}

.artworks-cta .btn-outline-secondary {
    color: #555;
    border-color: #ccc;
}

.artworks-cta .btn-outline-secondary:hover {
    background-color: #f8f9fa;
    color: #333;
}

/* Artwork Modal */
.artwork-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.artwork-modal.show {
    display: block;
    opacity: 1;
}

.artwork-modal-content {
    position: relative;
    background-color: white;
    width: 90%;
    max-width: 1000px;
    margin: 5% auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(30px);
    transition: transform 0.5s ease;
}

.artwork-modal.show .artwork-modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #E95420;
}

.artwork-modal-body {
    padding: 2rem;
}

.modal-artwork-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.modal-artwork-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-artwork-details {
    padding: 1rem 0 0 1rem;
}

.modal-artwork-details h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.modal-artwork-details .artist {
    font-size: 1.1rem;
    color: #E95420;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.modal-artwork-details .category {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
}

.modal-artwork-details .divider {
    width: 60px;
    height: 3px;
    background-color: #E95420;
    margin-bottom: 1.5rem;
}

.modal-artwork-details .description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.artwork-meta {
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    margin-bottom: 0.5rem;
}

.meta-label {
    width: 100px;
    font-weight: 600;
    color: #333;
}

.meta-value {
    color: #555;
}

.artwork-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    background-color: #f0f0f0;
    color: #555;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .artworks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-artwork-image {
        height: 350px;
    }
    
    .modal-artwork-details {
        padding: 2rem 0 0 0;
    }
}

@media (max-width: 767px) {
    .artworks-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .artwork-image {
        height: 300px;
    }
    
    .artwork-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .artwork-modal-body {
        padding: 1.5rem;
    }
    
    .modal-artwork-image {
        height: 300px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575px) {
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .artwork-image {
        height: 250px;
    }
}

/* Festival Calendar Section Styles */
.festival-calendar-section {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
}

.festival-calendar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23e95420' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.7;
}

.calendar-container {
    position: relative;
    margin-top: 3rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    z-index: 2;
}

/* Calendar Navigation */
.calendar-nav {
    display: flex;
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
    padding: 0;
}

.calendar-nav-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 1rem 0.5rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.calendar-nav-btn:hover {
    background-color: rgba(233, 84, 32, 0.05);
    color: #E95420;
}

.calendar-nav-btn.active {
    color: #E95420;
    background-color: white;
}

.calendar-nav-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #E95420;
}

/* Calendar Days */
.calendar-content {
    padding: 2rem;
    position: relative;
}

.calendar-day {
    display: none;
    animation: fadeIn 0.5s ease;
}

.calendar-day.active {
    display: block;
}

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

.day-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.day-date {
    font-size: 1.2rem;
    font-weight: 700;
    color: #E95420;
    margin-bottom: 0.25rem;
}

.day-title {
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
}

/* Event Timeline */
.event-timeline {
    position: relative;
}

.timeline-hour {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-hour::before {
    content: '';
    position: absolute;
    top: 0;
    left: 70px;
    width: 1px;
    height: 100%;
    background-color: #eee;
    z-index: 1;
}

.timeline-hour:last-child::before {
    display: none;
}

.hour {
    width: 70px;
    padding-right: 1.5rem;
    color: #888;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.hour::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #E95420;
    z-index: 2;
}

.events {
    flex: 1;
    padding-left: 1.5rem;
}

.event {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-left: 3px solid #E95420;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.event:last-child {
    margin-bottom: 0;
}

.event:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.event-time {
    font-size: 0.85rem;
    color: #E95420;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-title {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.event-location {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.event-location::before {
    content: '\f3c5'; /* Font Awesome map marker icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    color: #888;
}

.event-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

.event-tag {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.05);
    color: #555;
}

.event-tag.featured {
    background-color: #E95420;
    color: white;
}

/* Calendar CTA */
.calendar-cta {
    margin-top: 3rem;
}

.calendar-cta .btn {
    margin: 0 0.5rem 1rem;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
}

.calendar-cta .btn-primary {
    background-color: #E95420;
    border-color: #E95420;
}

.calendar-cta .btn-primary:hover {
    background-color: #c13e0a;
    border-color: #c13e0a;
}

.calendar-cta .btn-outline-secondary {
    color: #555;
    border-color: #ccc;
}

.calendar-cta .btn-outline-secondary:hover {
    background-color: #f8f9fa;
    color: #333;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .calendar-nav-btn {
        padding: 0.8rem 0.5rem;
        font-size: 0.95rem;
    }
    
    .calendar-content {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .calendar-nav {
        flex-wrap: wrap;
    }
    
    .calendar-nav-btn {
        flex: 1 0 50%;
    }
    
    .hour {
        width: 60px;
        padding-right: 1rem;
    }
    
    .timeline-hour::before {
        left: 60px;
    }
    
    .events {
        padding-left: 1rem;
    }
    
    .event {
        padding: 1rem;
    }
    
    .event-tag {
        position: static;
        display: inline-block;
        margin-top: 0.5rem;
    }
}

@media (max-width: 575px) {
    .calendar-nav-btn {
        flex: 1 0 100%;
    }
    
    .day-date {
        font-size: 1.1rem;
    }
    
    .day-title {
        font-size: 1.3rem;
    }
    
    .hour {
        width: 50px;
    }
    
    .timeline-hour::before {
        left: 50px;
    }
    
    .events {
        padding-left: 0.75rem;
    }
} 