/* Page Hero */
.page-hero {
    height: 50vh;
    min-height: 400px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 4rem;
}

.page-hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 2rem;
    max-width: 800px;
}

.page-hero-content h1 {
    margin-bottom: 1rem;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Introduction Section */
.intro-section {
    margin-bottom: 4rem;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Suppliers Categories */
.suppliers-categories {
    margin-bottom: 3rem;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.category-tab {
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    border: 1px solid var(--orange-primary);
    color: var(--orange-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.category-tab:hover, .category-tab.active {
    background-color: var(--orange-primary);
    color: white;
}

/* Suppliers Grid */
.suppliers-grid {
    margin-bottom: 4rem;
}

.supplier-item {
    display: flex;
    background-color: white;
    margin-bottom: 2rem;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.supplier-content {
    flex: 0 0 65%;
    padding: 2rem;
}

.supplier-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.supplier-location {
    color: var(--orange-primary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.supplier-location i {
    margin-right: 0.5rem;
    color: var(--orange-primary);
}

.supplier-products {
    margin-top: 1rem;
    color: var(--orange-primary);
}

.supplier-link {
    margin-top: 1.5rem;
    display: inline-block;
}

.supplier-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.supplier-link:hover i {
    transform: translateX(5px);
}

/* Become a Supplier */
.become-supplier {
    margin-bottom: 4rem;
}

.supplier-callout {
    display: flex;
    background-color: var(--light-color);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.callout-content {
    flex: 0 0 50%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.callout-content h2 {
    color: var(--orange-primary);
    margin-bottom: 1.5rem;
}

.callout-content .btn-primary {
    margin-top: 1.5rem;
    align-self: flex-start;
}

.callout-image {
    flex: 0 0 50%;
    background-size: cover;
    background-position: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .supplier-item {
        flex-direction: column;
    }
    
    .supplier-image {
        flex: 0 0 200px;
        width: 100%;
    }
    
    .supplier-content {
        flex: 0 0 auto;
    }
    
    .supplier-callout {
        flex-direction: column;
    }
    
    .callout-content, .callout-image {
        flex: 0 0 auto;
    }
    
    .callout-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .category-tab {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .page-hero {
        min-height: 300px;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .category-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .callout-content {
        padding: 2rem 1.5rem;
    }
}

.page-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    background-image: url('../images/banniere.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.page-hero:after { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background-color: rgba(0,0,0,0.3); z-index:1; }
.page-hero-content { position: relative; text-align:center; color:white; z-index:2; max-width:800px; padding:0 2rem; }
.page-hero-content h1 { font-size:3.5rem; margin-bottom:1rem; font-family: 'Playfair Display', serif; }
.page-hero-content p { font-size:1.2rem; margin-bottom:2rem; }
.page-content { 
    margin-top:61vh !important;
    background-color:white; 
    max-width:var(--container-width); 
    margin:0 auto; padding:4rem 2rem; 
    border:4px solid var(--orange-primary); 
    border-radius:10px; 
    box-sizing:border-box; 
}