/**
 * Gemeinsame Widget-Styles für City Gallery Theme
 */

/* Allgemeine Button-Styles */
.city-gallery-button {
    display: inline-block;
    background-color: #F78C25;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.city-gallery-button:hover {
    background-color: #e67a14;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #fff;
}

/* Allgemeine Überschriften-Styles */
.city-gallery-heading-blue {
    color: #333333;
    font-weight: 700;
}

.city-gallery-heading-orange {
    color: #F78C25;
    font-weight: 700;
}

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

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

/* Responsive Hilfsklassen */
@media (max-width: 1024px) {
    .city-gallery-hide-tablet {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .city-gallery-hide-mobile {
        display: none !important;
    }
} 