/* ==========================================================
   HERO — homepage slider / banner
   Part of the CiaoCity modular stylesheet system.
   Design tokens live in base.css — do not redefine colors here.
   ========================================================== */

/* ===================== */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    margin-left: 24px;
    margin-right: 24px;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.slide-content {
    position: absolute;
    bottom: 25%;
    left: 10%;
    color: white;
    z-index: 2;
    max-width: 600px;
}

.slide-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 12px;
}

.slide-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 24px;
}

/* Slider Butonu */
.slide-btn {
    display: inline-block;
    text-decoration: none;
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}

.slide-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

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

.slider-dots .dot.active {
    background: white;
    border-color: rgba(255,255,255,0.5);
    transform: scale(1.2);
}

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