/* Premium Banner Carousel Styles */
:root {
    --banner-primary: #6A1BFF;
    --banner-dark: #4A0FCC;
    --banner-accent: #FF9E1B;
}

/* Standard Banner Styles */
.banner-wrapper {
    width: 100%;
    margin-bottom: 0;
}

.standard-banner {
    width: 100%;
}

.standard-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto 48px;
    overflow: hidden;
}

.banner-carousel {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 620px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

@media (min-width: 768px) {
    .banner-carousel {
        height: 720px;
    }
}

@media (min-width: 1024px) {
    .banner-carousel {
        height: 760px;
    }
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(1.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.banner-slide.prev {
    z-index: 1;
    transform: translateX(-100%);
}

.banner-slide.next {
    z-index: 1;
    transform: translateX(100%);
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(106, 27, 255, 0.85) 0%, rgba(74, 15, 204, 0.75) 50%, rgba(106, 27, 255, 0.85) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 48px 32px;
    color: white;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.banner-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.banner-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: white;
    color: var(--banner-primary);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.banner-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    background: var(--banner-accent);
    color: white;
}

.banner-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.banner-button:hover svg {
    transform: translateX(4px);
}

/* Navigation Arrows */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.banner-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.banner-nav.prev {
    left: 24px;
}

.banner-nav.next {
    right: 24px;
}

.banner-nav svg {
    width: 24px;
    height: 24px;
}

/* Dots Indicator */
.banner-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
    align-items: center;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active {
    width: 32px;
    border-radius: 6px;
    background: white;
    border-color: white;
}

.banner-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
/* Tablet: 100% × 720px */
@media (max-width: 1024px) {
    .banner-carousel-container {
        max-width: 100%;
    }
    
    .banner-carousel {
        max-width: 100%;
        height: 720px;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-description {
        font-size: 1.125rem;
    }
}

/* Mobile: 100% × 620px */
@media (max-width: 768px) {
    .banner-carousel-container {
        max-width: 100%;
    }
    
    .banner-carousel {
        max-width: 100%;
        height: 620px;
        border-radius: 16px;
    }
    
    .banner-content {
        padding: 32px 24px;
    }
    
    .banner-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .banner-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .banner-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .banner-nav {
        width: 44px;
        height: 44px;
    }
    
    .banner-nav.prev {
        left: 12px;
    }
    
    .banner-nav.next {
        right: 12px;
    }
    
    .banner-dots {
        bottom: 16px;
    }
}

@media (max-width: 480px) {
    .banner-carousel {
        height: 500px;
    }
    
    .banner-content {
        padding: 24px 16px;
    }
    
    .banner-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .banner-description {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }
    
    .banner-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        border-radius: 12px;
    }
    
    .banner-nav {
        width: 36px;
        height: 36px;
        display: none; /* Mobilde navigation arrow'ları gizle */
    }
    
    .banner-nav svg {
        width: 18px;
        height: 18px;
    }
    
    .banner-dots {
        bottom: 12px;
        gap: 8px;
    }
    
    .banner-dot {
        width: 8px;
        height: 8px;
    }
    
    .banner-dot.active {
        width: 24px;
    }
}

