/* Kampanya Detay Sayfası Stilleri */
.campaign-detail-wrapper {
    padding: 60px 0;
    font-family: 'Roboto', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Başlık Bölümü - Yeni Stil */
.campaign-title-section {
    text-align: center;
    margin-top: 80px; /* Başlığı aşağı kaydırmak için üstten boşluk ekledik */
    margin-bottom: 30px;
    padding-bottom: 20px;
    position: relative;
    max-width: 800px; /* Başlık genişliğini sınırla */
    margin-left: auto; /* Ortalamak için */
    margin-right: auto; /* Ortalamak için */
}

.campaign-main-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}

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

.campaign-date {
    display: inline-block;
    background-color: #f8f8f8;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

.days-left {
    font-weight: bold;
    color: #CC0000;
}

.campaign-date.expired {
    background-color: #f0f0f0;
    color: #999;
}

/* Öne Çıkan Görsel */
.campaign-featured-image {
    margin-bottom: 60px; /* Resim ile içerik arasında daha fazla boşluk */
    border-radius: 8px;
    overflow: hidden;
    max-height: 400px; /* Maksimum yükseklik sınırı */
    text-align: center; /* Resmi ortala */
}

.campaign-featured-image img {
    max-width: 100%;
    max-height: 400px; /* Maksimum yükseklik sınırı */
    height: auto;
    display: inline-block; /* Ortalama için */
    object-fit: contain; /* Resmi orantılı şekilde sığdır */
}

/* İçerik */
.campaign-content {
    margin-bottom: 40px;
    line-height: 1.7;
    color: #333;
}

.campaign-content h2 {
    font-size: 1.8rem;
    margin: 30px 0 20px;
}

.campaign-content h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
}

.campaign-content p {
    margin-bottom: 20px;
}

.campaign-content ul, 
.campaign-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.campaign-content li {
    margin-bottom: 10px;
}

/* CTA Bölümü */
.campaign-cta {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.campaign-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.campaign-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.step {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #CC0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.95rem;
    color: #666;
}

.campaign-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #CC0000;
    color: white;
}

.btn-primary:hover {
    background-color: #AA0000;
}

.btn-secondary {
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
}

/* İlgili Motosiklet */
.related-model {
    margin-bottom: 40px;
}

.related-model h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.model-card {
    display: flex;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
}

.model-image {
    width: 40%;
    max-width: 300px;
}

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

.model-info {
    padding: 25px;
    flex-grow: 1;
}

.model-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.model-slogan {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

.model-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #CC0000;
    margin-bottom: 20px;
}

.model-button {
    display: inline-block;
    background-color: #CC0000;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.model-button:hover {
    background-color: #AA0000;
}

/* Meta Bilgileri */
.campaign-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.campaign-info, .campaign-share {
    flex: 1;
    min-width: 250px;
}

.campaign-meta h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.campaign-info ul {
    list-style: none;
    padding: 0;
}

.campaign-info li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.campaign-info li:last-child {
    border-bottom: none;
}

.campaign-info li span:first-child {
    font-weight: 500;
    color: #555;
}

/* Paylaşım Butonları */
.share-buttons {
    display: flex;
    gap: 10px;
}

.share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
}

.facebook { background-color: #3b5998; }
.twitter { background-color: #1da1f2; }
.whatsapp { background-color: #25d366; }
.email { background-color: #848484; }

/* Diğer Kampanyalar */
.other-campaigns {
    margin-top: 40px;
}

.other-campaigns h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.other-campaigns-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.other-campaign {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.other-campaign-image {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
}

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

.other-campaign-info h4 {
    margin: 0 0 5px;
    font-size: 1rem;
}

.other-campaign-info h4 a {
    color: #333;
    text-decoration: none;
}

.other-campaign-info h4 a:hover {
    color: #CC0000;
}

.other-campaign-info .date {
    font-size: 0.85rem;
    color: #777;
}

/* Responsive */
@media (max-width: 768px) {
    .campaign-title-section {
        margin-bottom: 50px; /* Mobilde daha az boşluk */
    }
    
    .campaign-main-title {
        font-size: 2rem;
    }
    
    .campaign-featured-image {
        margin-bottom: 40px; /* Mobilde daha az boşluk */
    }
    
    .campaign-steps {
        flex-direction: column;
    }
    
    .campaign-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .model-card {
        flex-direction: column;
    }
    
    .model-image {
        width: 100%;
        max-width: none;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .campaign-detail-wrapper {
        padding: 30px 0;
    }
    
    .campaign-title-section {
        margin-bottom: 40px; /* Mobilde daha da az boşluk */
    }
    
    .campaign-main-title {
        font-size: 1.8rem;
    }
    
    .campaign-date {
        display: block;
        width: 100%;
        text-align: center;
    }
}
