/* Distribution Page Styles */
#distribution-hero {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    background-image: url('../img/banner-distribucion.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
}

/* Dark overlay for better text readability */
#distribution-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

#distribution-hero .yellow-flower {
    max-width: 80px;
    margin-bottom: 20px;
    position: relative;
    z-index: 20;
}

#distribution-hero h1 {
    font-weight: 800;
    /* margin-bottom: 40px; */
    font-family: 'Proxima Nova Extra Condensed', sans-serif;
    color: #fff;
    position: relative;
    z-index: 20;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#distribution-hero .hero-layer-green-container {
    position: absolute;
    top: 75%;
    right: 2.5%;
    transform: translateY(-50%);
    width: 270px;
    z-index: 20;
}

#distribution-hero .hero-layer-green {
    width: 100%;
    height: auto;
    z-index: 20;
}

.content-section {
    padding: 80px 0;
    background-color: #FBF5ED;
}

.distribution-section {
    background-color: #FBF5ED;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: 'Proxima Nova Extra Condensed', sans-serif;
}

.section-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.0 !important;
}

.section-title-alt {
    font-weight: 700;
    margin-bottom: 50px;
}

#production-types .production-item img {
    max-height: 100px;
    margin-bottom: 20px;
}

#production-types .production-item p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.4;
}

.professional-clients {
    background-color: #00AEA6;
    color: #fff;
    padding: 60px 0;
}

.professional-clients .quote-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #16a085;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.professional-clients .clients-text {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.restaurant-logos-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    flex-wrap: wrap;
}

.restaurant-logo {
    height: 80px;
    width: auto;
    max-width: 150px;
    -o-object-fit: contain;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Convert logos to white */
    transition: transform 0.3s ease;
}

/* Special filter for logos with dark backgrounds (Gun Club and Los Lagartos) */
.restaurant-logo[alt="Gun Club"],
.restaurant-logo[alt="Club Los Lagartos"] {
    filter: grayscale(1); /* Convert to black and white */
    opacity: 0.8; /* Slightly reduce opacity for better integration */
}

.restaurant-logo:hover {
    transform: scale(1.1);
}

/* Responsive styles for restaurant logos */
@media (max-width: 768px) {
    .logo-row {
        gap: 35px;
    }
    
    .restaurant-logo {
        height: 65px;
        max-width: 130px;
    }
}

@media (max-width: 480px) {
    .logo-row {
        gap: 25px;
        flex-direction: column;
    }
    
    .restaurant-logo {
        height: 60px;
        max-width: 120px;
    }
}

.cta-section {
    padding: 125px 0;
}

.cta-section .cta-flower {
    max-height: 60px;
    margin-bottom: 30px;
}

.cta-section h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.cta-section .btn-contact {
    background-color: #00AEA6;
    color: #fff;
    border: 2px solid #000;
    border-radius: 0px;
    padding: 10px 30px;
    font-weight: bold;
}
/*# sourceMappingURL=distribution.css.map */