/* Kampanyalar Bölümü */
.honda-campaigns-section {
    background-color: #e9e9e9;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;    /* Üstten 10px boşluk eklendi */
    margin-bottom: 10px; /* Alttan 10px boşluk eklendi */
    padding: 20px 0;
    border-radius: 10px;
}

.campaigns-section-title {
    text-align: center;
    font-size: 2rem;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.campaigns-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #CC0000;
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Kampanya Kartı */
.campaign-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
    background-color: #f0f0f0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Kampanya Resmi */
.campaign-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Kampanya İçeriği - Görsel Üzerinde */
.campaign-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.8) 100%);
    color: white;
}

.campaign-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    max-width: 100%;
    line-height: 1.3;
    text-align: center;
    padding-bottom: 10px;
    position: relative;
}

/* Başlığın altına kırmızı çizgi ekle */
.campaign-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #CC0000;
}

.campaign-button-container {
    align-self: center;
    margin-top: 10px;
}

/* Oval beyaz buton */
.campaign-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333;
    background-color: white;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.campaign-button:hover {
    transform: translateY(-3px);
    box-shadow: 3px 3px 8px rgba(0,0,0,0.3);
}

/* Placeholder için */
.campaign-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #666;
    font-style: italic;
    font-size: 1.2rem;
    border-radius: 8px;
}

/* Responsive Styles */
@media (max-width: 1300px) {
    .honda-campaigns-section {
        max-width: 95%;
    }
    
    .campaigns-grid {
        max-width: 90%;
    }
}

@media (max-width: 991px) {
    .campaigns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .honda-campaigns-section {
        max-width: 100%;
        padding: 15px 0;
        border-radius: 0;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .campaigns-section-title {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }
    
    .campaigns-grid {
        grid-template-columns: 1fr;
        margin-top: 15px;
        max-width: 95%;
        gap: 20px;
    }
    
    .campaign-card {
        height: 180px;
    }
    
    .campaign-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .campaign-button {
        padding: 6px 16px;
        font-size: 0.9rem;
    }
}
