/**
 * Astro Elementor Single Post Template Styles
 */

/* Ana konteyner */
.astro-single-post {
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Banner */
.astro-single-banner {
    position: relative;
    width: 100vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    max-width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
    box-sizing: border-box;
}

/* Tam genişlik banner sınıfı */
.astro-full-width-banner {
    width: 100vw;
    max-width: 100vw;
}

/* Overlay */
.astro-single-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3 !important; /* Sabit opacity değeri */
}

/* Başlık konteyneri */
.astro-single-title-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 800px;
}

/* Başlık */
.astro-single-title {
    margin: 0 0 15px 0;
    padding: 0;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Meta bilgileri */
.astro-single-meta {
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.astro-single-author,
.astro-single-date,
.astro-single-categories {
    display: inline-block;
    margin-right: 15px;
}

.astro-single-categories a {
    color: #fff;
    text-decoration: underline;
}

.astro-single-categories a:hover {
    text-decoration: none;
}

/* İçerik konteyneri */
.astro-single-content-container {
    margin: 0 auto;
    padding: 0 20px;
}

/* Öne çıkan görsel */
.astro-single-featured-image {
    margin-bottom: 30px;
}

.astro-single-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* İçerik */
.astro-single-content {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.astro-single-content h1,
.astro-single-content h2,
.astro-single-content h3,
.astro-single-content h4,
.astro-single-content h5,
.astro-single-content h6 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.astro-single-content img {
    max-width: 100%;
    height: auto;
}

.astro-single-content blockquote {
    border-left: 4px solid #0073aa;
    padding-left: 20px;
    margin-left: 0;
    font-style: italic;
    color: #666;
}

/* Sayfa linkleri */
.page-links {
    margin: 20px 0;
    clear: both;
}

/* Footer */
.astro-single-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Etiketler */
.astro-single-tags {
    margin-bottom: 20px;
    font-size: 14px;
}

/* Önceki/Sonraki yazı linkleri */
.post-navigation {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    width: 48%;
}

.post-navigation .nav-next {
    text-align: right;
}

.post-navigation .nav-subtitle {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
}

.post-navigation .nav-title {
    font-weight: 600;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .astro-single-title {
        font-size: 28px;
    }
    
    /* Banner yüksekliği mobil için data-mobile-height değerini kullan */
    .astro-single-banner {
        height: var(--mobile-height) !important;
    }
}

/* Mobil için ek ayarlar */
@media (max-width: 480px) {
    .astro-single-title {
        font-size: 24px;
    }
    
    .astro-single-meta {
        display: flex;
        flex-direction: column;
    }
    
    .astro-single-author,
    .astro-single-date,
    .astro-single-categories {
        margin-right: 0;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .astro-single-title {
        font-size: 24px;
    }
    
    .astro-single-banner {
        height: 200px !important;
    }
    
    .astro-single-meta {
        display: flex;
        flex-direction: column;
    }
    
    .astro-single-author,
    .astro-single-date,
    .astro-single-categories {
        margin-right: 0;
        margin-bottom: 5px;
    }
}
