/* Eker Hero Başlık Widget Stili */
:root {
    --eker-primary: #d1292e;
    --eker-primary-dark: #b12229;
    --eker-gold: #f3cc6e;
    --eker-gold-dark: #e5b956;
    --eker-white: #ffffff;
    --eker-gray: #f7f7f7;
    --eker-text: #333333;
}

.eker-hero-container {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
}

/* Gradient overlay - varsayılan */
.eker-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 2;
}

/* Özel overlay - solid renk */
.eker-hero-overlay-custom {
    background: rgba(0, 0, 0, 0.6) !important;
    background-image: none !important;
}

/* Overlay yok */
.eker-hero-overlay-none {
    background: transparent !important;
    background-image: none !important;
}

/* Altın çizgiler - alt ve üst */
.eker-hero-overlay::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--eker-gold);
    z-index: 3;
}

.eker-hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--eker-gold);
    opacity: 0.6;
    z-index: 3;
}

.eker-hero-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.eker-hero-title {
    font-family: 'Arial', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--eker-white);
    margin: 0;
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.eker-hero-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--eker-gold);
    margin: 0 0 10px 0;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.eker-hero-divider {
    width: 80px;
    height: 3px;
    background-color: var(--eker-gold);
    margin: 20px auto;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.eker-hero-divider::before,
.eker-hero-divider::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--eker-gold);
}

.eker-hero-divider::before {
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    height: 10px;
}

.eker-hero-divider::after {
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    height: 10px;
}

/* Alternatif stil - paralaks efekti */
.eker-hero-container.eker-parallax {
    background-attachment: fixed;
}

/* Alternatif stil - altın sınır */
.eker-hero-container.eker-gold-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 6px solid var(--eker-gold);
    opacity: 0.3;
    z-index: 3;
    pointer-events: none;
    margin: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
}

/* Red theme rengi ile header aynı olduğu için kaldırıldı */
.eker-hero-red-theme .eker-hero-overlay {
    background: rgba(209, 41, 46, 0.8);
}

/* Black theme - şık minimal */
.eker-hero-black-theme .eker-hero-overlay {
    background: rgba(0, 0, 0, 0.75);
}

/* Gold theme - altın detaylarla zengin */
.eker-hero-gold-theme .eker-hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(243, 204, 110, 0.3));
}

.eker-hero-gold-theme .eker-hero-title {
    color: var(--eker-white);
}

.eker-hero-gold-theme .eker-hero-subtitle {
    color: var(--eker-gold);
}

.eker-hero-gold-theme .eker-hero-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--eker-gold);
    opacity: 0.7;
    z-index: 3;
}

/* Responsive tasarım */
@media screen and (max-width: 1024px) {
    .eker-hero-title {
        font-size: 36px;
    }
    
    .eker-hero-subtitle {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    .eker-hero-container {
        height: 250px;
    }
    
    .eker-hero-title {
        font-size: 28px;
    }
    
    .eker-hero-subtitle {
        font-size: 18px;
    }
    
    .eker-hero-divider {
        width: 60px;
        margin: 15px auto;
    }
}

@media screen and (max-width: 479px) {
    .eker-hero-container {
        height: 200px;
    }
    
    .eker-hero-title {
        font-size: 24px;
    }
    
    .eker-hero-subtitle {
        font-size: 16px;
    }
} 