/**
 * City Gallery - B2B Widget Styles
 */

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

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

.city-gallery-b2b-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-b2b-main-heading {
    color: #fff;
    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 Container */
.city-gallery-b2b-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Individual Sections */
.city-gallery-b2b-section {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.city-gallery-b2b-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Section Headings */
.city-gallery-b2b-section-heading {
    color: #F78C25;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.3;
    text-transform: uppercase;
}

/* Section Text */
.city-gallery-b2b-section-text {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Contact Information */
.city-gallery-b2b-contact {
    margin-top: 20px;
}

.city-gallery-b2b-contact-heading {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.city-gallery-b2b-contact-name {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.5;
}

.city-gallery-b2b-contact-position {
    color: #333;
    font-size: 16px;
    margin: 0 0 5px 0;
    line-height: 1.5;
}

.city-gallery-b2b-contact-department {
    color: #333;
    font-size: 16px;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.city-gallery-b2b-contact-phone,
.city-gallery-b2b-contact-email {
    color: #333;
    font-size: 16px;
    margin: 0 0 5px 0;
    line-height: 1.5;
}

/* Contact Links - Using orange color as per user preference */
.city-gallery-b2b-contact-link {
    color: #F78C25;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Ensure clickable contact information */
.city-gallery-b2b-contact-link {
    cursor: pointer;
}

.city-gallery-b2b-contact-link[href^="tel:"] {
    color: #F78C25;
}

.city-gallery-b2b-contact-link[href^="mailto:"] {
    color: #F78C25;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .city-gallery-b2b-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .city-gallery-b2b-main-heading {
        font-size: 42px;
    }

    .city-gallery-b2b-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .city-gallery-b2b-widget {
        padding: 0 15px;
    }

    .city-gallery-b2b-header {
        height: 250px;
        margin-bottom: 30px;
        border-radius: 12px;
    }

    .city-gallery-b2b-main-heading {
        font-size: 36px;
    }

    .city-gallery-b2b-content {
        gap: 25px;
    }

    .city-gallery-b2b-section {
        padding: 25px;
        border-radius: 12px;
    }
    
    .city-gallery-b2b-section-heading {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .city-gallery-b2b-section-text {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .city-gallery-b2b-contact-heading,
    .city-gallery-b2b-contact-name,
    .city-gallery-b2b-contact-position,
    .city-gallery-b2b-contact-department,
    .city-gallery-b2b-contact-phone,
    .city-gallery-b2b-contact-email {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .city-gallery-b2b-header {
        height: 200px;
        margin-bottom: 25px;
        border-radius: 10px;
    }

    .city-gallery-b2b-main-heading {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .city-gallery-b2b-content {
        gap: 20px;
    }

    .city-gallery-b2b-section {
        padding: 20px;
        border-radius: 10px;
    }
    
    .city-gallery-b2b-section-heading {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .city-gallery-b2b-section-text {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .city-gallery-b2b-contact-heading,
    .city-gallery-b2b-contact-name,
    .city-gallery-b2b-contact-position,
    .city-gallery-b2b-contact-department,
    .city-gallery-b2b-contact-phone,
    .city-gallery-b2b-contact-email {
        font-size: 14px;
    }
}

/* 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;
}
