/**
 * City Gallery - About Us Widget Styles
 */

/* About Us Widget Container */
.city-gallery-about-us-widget {
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Header Section */
.city-gallery-about-header {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.city-gallery-about-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-gallery-about-main-heading {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

/* Content Section */
.city-gallery-about-content {
    margin-bottom: 50px;
}

.city-gallery-about-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Section Headings */
.city-gallery-about-section-heading {
    color: #333333;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: 1px;
}

/* Geschichte Section */
.city-gallery-about-geschichte {
    padding-right: 20px;
}

.city-gallery-about-text {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Kontakt Section */
.city-gallery-about-kontakt {
    padding-left: 20px;
    border-left: 3px solid #F78C25;
}

.city-gallery-about-contact-info {
    margin-top: 20px;
}

.city-gallery-about-person {
    margin-bottom: 25px;
}

.city-gallery-about-person-name {
    color: #333333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.city-gallery-about-person-title {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.city-gallery-about-contact-hours {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #F78C25;
}

/* Statistics Section */
.city-gallery-about-statistics {
    background-color: #f8f9fa;
    padding: 40px 0;
    border-radius: 10px;
    margin-top: 30px;
}

.city-gallery-about-statistics-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.city-gallery-about-stat-item {
    text-align: center;
    padding: 20px 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-gallery-about-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.city-gallery-about-stat-icon {
    margin-bottom: 15px;
}

.city-gallery-about-stat-icon i {
    font-size: 40px;
    color: #333333;
}

.city-gallery-about-stat-label {
    color: #333333;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.city-gallery-about-stat-value {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .city-gallery-about-content-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .city-gallery-about-geschichte {
        padding-right: 0;
    }
    
    .city-gallery-about-kontakt {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid #F78C25;
        padding-top: 30px;
    }
    
    .city-gallery-about-statistics-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .city-gallery-about-us-widget {
        padding: 0 15px;
    }
    
    .city-gallery-about-header {
        height: 250px;
        margin-bottom: 40px;
    }
    
    .city-gallery-about-main-heading {
        font-size: 36px;
    }
    
    .city-gallery-about-section-heading {
        font-size: 24px;
    }
    
    .city-gallery-about-statistics-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .city-gallery-about-stat-item {
        padding: 15px 10px;
    }
    
    .city-gallery-about-stat-icon i {
        font-size: 32px;
    }
    
    .city-gallery-about-stat-label {
        font-size: 11px;
    }
    
    .city-gallery-about-stat-value {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .city-gallery-about-header {
        height: 200px;
        margin-bottom: 30px;
    }
    
    .city-gallery-about-main-heading {
        font-size: 28px;
    }
    
    .city-gallery-about-section-heading {
        font-size: 20px;
    }
    
    .city-gallery-about-statistics-inner {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .city-gallery-about-stat-item {
        padding: 20px 15px;
    }
    
    .city-gallery-about-stat-icon i {
        font-size: 36px;
    }
    
    .city-gallery-about-stat-label {
        font-size: 12px;
    }
    
    .city-gallery-about-stat-value {
        font-size: 15px;
    }
    
    .city-gallery-about-contact-hours {
        padding: 15px;
        font-size: 15px;
    }
    
    .city-gallery-about-text {
        font-size: 15px;
    }
}
