/* Ana Sayfa CSS - Mevcut stiller */
.ad-container {
    min-height: 250px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

/* Mobil Reklam Modal Stilleri */
#mobileAdModal .modal-content {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

#mobileAdModal .modal-header {
    min-height: 20px;
    border: none;
    padding: 0;
    position: relative;
}

#mobileAdModal .btn-close {
    z-index: 3;
    font-size: 0.8rem;
}

#mobileAdModal .modal-body {
    padding-top: 20px;
    text-align: center;
}

/* CSS Animasyonları */
@keyframes womanWalk {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(2deg); }
    50% { transform: translateY(0px) rotate(0deg); }
    75% { transform: translateY(-3px) rotate(-2deg); }
}

@keyframes bagsSwing {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}

@keyframes footstep1 {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes footstep2 {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.shopping-woman-animation {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Genel Animasyon CSS'leri */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 5px rgba(195, 0, 47, 0.3); }
    50% { text-shadow: 0 0 20px rgba(195, 0, 47, 0.6); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideInLeft {
    0% { transform: translateX(-100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    0% { transform: translateX(100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Hover efektleri */
.system-box2:hover {
    animation: bounce 0.6s ease-in-out;
}

.store-card:hover img {
    animation: pulse 0.5s ease-in-out;
}

.hero-btn:hover {
    animation: pulse 0.3s ease-in-out;
}

/* Sürekli animasyonlar */
.hero-title {
    animation: glow 3s ease-in-out infinite;
}

.system-principles-title {
    animation: slideInLeft 1s ease-out;
}

.popular-stores-title {
    animation: slideInRight 1s ease-out;
}

/* Responsive animasyonlar */
@media (max-width: 768px) {
    .shopping-woman-animation {
        display: none;
    }
    
    .hero-section {
        min-height: 300px !important;
        max-height: 300px !important;
    }
}

/* Sistem Prensipleri Bölümü */
.system-principles {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
}

.system-principles-title {
    color: #c3002f;
    font-size: 2.5rem;
}

.system-box2 {
    background: linear-gradient(135deg, #ff6f61, #c3002f);
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(195, 0, 47, 0.2);
    transition: all .3s;
    cursor: pointer;
    padding: 1rem;
    height: 100%;
}

.system-box2:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(195, 0, 47, 0.3);
}

.system-box2 .fw-bold:first-child {
    font-size: 2.2rem;
    animation: pulse 2s ease-in-out infinite;
}

.system-box2 .fw-bold:nth-child(2) {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.system-box2 div:last-child {
    opacity: 0.92;
}

/* Popüler Mağazalar Bölümü */
.store-card {
    border: none;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(195, 0, 47, 0.1);
    background: #fff;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.store-card .card-img-top {
    height: 180px;
    object-fit: contain;
    background: #f8f9fa;
    border-radius: 18px 18px 0 0;
    aspect-ratio: 16/9;
}

.store-card .card-body {
    text-align: center;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.store-card .card-title {
    color: #c3002f;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.store-card .card-text {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.store-card .btn {
    background: linear-gradient(135deg, #ffb366, #ff8a50);
    color: #c3002f;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    padding: 0.5rem 1rem;
    margin-top: auto;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .system-principles-title {
        font-size: 2rem;
    }
    
    .system-box2 {
        margin-bottom: 1rem;
    }
    
    .store-card {
        min-height: 320px;
    }
    
    .store-card .card-img-top {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .system-principles-title {
        font-size: 1.5rem;
    }
    
    .system-box2 .fw-bold:first-child {
        font-size: 1.8rem;
    }
    
    .system-box2 .fw-bold:nth-child(2) {
        font-size: 1rem;
    }
    
    .store-card .card-title {
        font-size: 1rem;
    }
    
    .store-card .card-text {
        font-size: 0.85rem;
    }
} 

/* Hero Banner Styles */
.hero-banner {
    background: linear-gradient(135deg, #c3002f 0%, #ff512f 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-highlight {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffe082;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    display: block;
    margin-top: 1rem;
}

.hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-figures {
    position: relative;
    display: inline-block;
}

.hero-figure {
    position: absolute;
    transition: all 0.3s ease;
}

.hero-figure.boy {
    left: -20px;
    top: 0;
    z-index: 2;
}

.hero-figure.soldier {
    right: -20px;
    top: 20px;
    z-index: 1;
}

.figure-img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Avatar Figürleri */
.figure-avatar {
    width: 120px;
    height: 120px;
    position: relative;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.avatar-head {
    width: 40px;
    height: 40px;
    background: #ffe082;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #fff;
}

.avatar-body {
    width: 60px;
    height: 70px;
    background: #4a90e2;
    border-radius: 20px 20px 0 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #fff;
}

.avatar-hat {
    width: 50px;
    height: 25px;
    background: #2c3e50;
    border-radius: 25px 25px 0 0;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #fff;
}

/* Boy Avatar */
.boy-avatar .avatar-body {
    background: #4a90e2;
}

.boy-avatar .avatar-head {
    background: #ffe082;
}

/* Soldier Avatar */
.soldier-avatar .avatar-body {
    background: #2c3e50;
}

.soldier-avatar .avatar-head {
    background: #ffe082;
}

.soldier-avatar .avatar-hat {
    background: #2c3e50;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.turkish-flag {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    opacity: 0.2;
}

.crescent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 40px;
    border: 8px solid white;
    border-radius: 50%;
    border-right: none;
}

.star {
    position: absolute;
    top: 30%;
    right: 20%;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid white;
}

.hero-symbol {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.infinity-symbol {
    font-size: 2rem;
    color: #ffe082;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive Hero Banner */
@media (max-width: 991px) {
    .hero-banner {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-highlight {
        font-size: 2.8rem;
    }
    
    .hero-figures {
        margin-top: 2rem;
    }
    
    .figure-img {
        width: 100px;
    }
    
    .figure-avatar {
        width: 100px;
        height: 100px;
    }
    
    .avatar-head {
        width: 35px;
        height: 35px;
        top: 15px;
    }
    
    .avatar-body {
        width: 50px;
        height: 60px;
    }
    
    .avatar-hat {
        width: 40px;
        height: 20px;
        top: 8px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-highlight {
        font-size: 2.4rem;
    }
    
    .figure-img {
        width: 80px;
    }
    
    .figure-avatar {
        width: 80px;
        height: 80px;
    }
    
    .avatar-head {
        width: 30px;
        height: 30px;
        top: 12px;
    }
    
    .avatar-body {
        width: 45px;
        height: 50px;
    }
    
    .avatar-hat {
        width: 35px;
        height: 18px;
        top: 6px;
    }
    
    .turkish-flag {
        width: 150px;
        height: 150px;
        top: -30px;
        right: -30px;
    }
    
    .crescent {
        width: 60px;
        height: 30px;
        border-width: 6px;
    }
    
    .star {
        border-left-width: 12px;
        border-right-width: 12px;
        border-bottom-width: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-highlight {
        font-size: 2rem;
    }
    
    .figure-img {
        width: 70px;
    }
    
    .figure-avatar {
        width: 70px;
        height: 70px;
    }
    
    .avatar-head {
        width: 25px;
        height: 25px;
        top: 10px;
    }
    
    .avatar-body {
        width: 40px;
        height: 45px;
    }
    
    .avatar-hat {
        width: 30px;
        height: 15px;
        top: 5px;
    }
    
    .hero-figure.boy {
        left: -10px;
    }
    
    .hero-figure.soldier {
        right: -10px;
    }
} 