/**
 * City Gallery - Parking Info Widget Styles
 */

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

/* Map Section */
.city-gallery-parking-map-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

.city-gallery-parking-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.city-gallery-parking-map iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 10px;
}

/* Contact Information */
.city-gallery-parking-contact {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.city-gallery-parking-contact h3 {
    color: #333333;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.city-gallery-parking-contact p {
    margin: 8px 0;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

.city-gallery-parking-management {
    font-weight: 600;
    color: #555;
}

.city-gallery-parking-contact a {
    color: #F78C25;
    text-decoration: none;
    transition: color 0.3s ease;
}

.city-gallery-parking-contact a:hover {
    color: #e67a14;
    text-decoration: underline;
}

/* Parking Information Section */
.city-gallery-parking-info-section {
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.city-gallery-parking-info-content {
    padding: 20px 0;
}

.city-gallery-parking-info-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.city-gallery-parking-info-image img {
    width: 100%;
    height: auto;
    display: block;
}

.city-gallery-parking-heading-orange {
    color: #333333;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.city-gallery-parking-heading-blue {
    color: #333333;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.city-gallery-parking-description {
    color: #333;
    font-size: 18px;
    line-height: 1.6;
}

/* Opening Hours Section */
.city-gallery-parking-hours-section {
    background-color: #F78C25;
    color: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.city-gallery-parking-hours-heading {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.city-gallery-parking-hours-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.city-gallery-parking-hours-item {
    font-size: 16px;
    line-height: 1.5;
}

.city-gallery-parking-hours-item strong {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Pricing Section */
.city-gallery-parking-pricing-section {
    margin-bottom: 50px;
}

.city-gallery-parking-pricing-table {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

.city-gallery-parking-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #f8f9fa;
    font-weight: 700;
    color: #333;
}

.city-gallery-parking-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
}

.city-gallery-parking-table-row:last-child {
    border-bottom: none;
}

.city-gallery-parking-table-cell {
    padding: 15px 20px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.city-gallery-parking-table-header .city-gallery-parking-table-cell {
    background-color: #f8f9fa;
    font-weight: 700;
    border-bottom: 2px solid #dee2e6;
}

.city-gallery-parking-special-note {
    background-color: #fff3e6;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    border-left: 4px solid #F78C25;
}

/* Online Payment Section */
.city-gallery-parking-payment-section {
    text-align: center;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.city-gallery-parking-payment-description {
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Styles */
.city-gallery-parking-button {
    display: inline-block;
    background-color: #F78C25;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.city-gallery-parking-button:hover {
    background-color: #e67a14;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}

/* Container-Begrenzung für einheitliche Breite */
.city-gallery-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

/* Responsive Styling */
@media (max-width: 1024px) {
    .city-gallery-parking-map-section {
        gap: 30px;
    }
    
    .city-gallery-parking-info-section {
        gap: 30px;
    }
    
    .city-gallery-parking-heading-orange,
    .city-gallery-parking-heading-blue {
        font-size: 28px;
    }
    
    .city-gallery-parking-hours-heading {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .city-gallery-parking-map-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .city-gallery-parking-info-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .city-gallery-parking-hours-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .city-gallery-parking-table-header,
    .city-gallery-parking-table-row {
        grid-template-columns: 1fr;
    }
    
    .city-gallery-parking-table-cell {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .city-gallery-parking-heading-orange,
    .city-gallery-parking-heading-blue {
        font-size: 24px;
    }
    
    .city-gallery-parking-hours-heading {
        font-size: 24px;
    }
    
    .city-gallery-parking-contact {
        padding: 20px;
    }
    
    .city-gallery-parking-hours-section {
        padding: 30px 20px;
    }
    
    .city-gallery-parking-payment-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .city-gallery-parking-widget {
        padding: 0 15px;
    }
    
    .city-gallery-parking-heading-orange,
    .city-gallery-parking-heading-blue {
        font-size: 22px;
    }
    
    .city-gallery-parking-hours-heading {
        font-size: 22px;
    }
    
    .city-gallery-parking-description,
    .city-gallery-parking-payment-description {
        font-size: 16px;
    }
    
    .city-gallery-parking-contact h3 {
        font-size: 20px;
    }
    
    .city-gallery-parking-contact p {
        font-size: 15px;
    }
    
    .city-gallery-parking-button {
        padding: 12px 25px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }
    
    .city-gallery-parking-table-cell {
        padding: 10px 12px;
        font-size: 14px;
    }
}
