/* Home Slider - Cantas.com Tasarımı */

#home-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

#home-slider .carousel-item.full-screen {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

#home-slider .carousel-item.full-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(1px);
    z-index: 1;
}


#home-slider .carousel-caption {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    padding: 0;
    text-align: left;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 100px;
    padding-right: 100px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

#home-slider .carousel-caption .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    z-index: 3;
    width: 50%;
    max-width: 600px;
    min-height: 100%;
    padding: 0;
}

#home-slider .carousel-caption .subText {
    font-size: 28px;
    font-weight: 400;
    color: #555;
    line-height: 1.5;
    margin-bottom: 12px;
    margin-top: 0;
    text-transform: none;
    letter-spacing: 0;
    padding-top: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

#home-slider .carousel-caption .text span {
    font-size: 56px;
    font-weight: 800;
    color: #222;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin-top: 5px;
}

#home-slider .carousel-caption .image {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 500px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 3;
    margin-left: auto;
}

#home-slider .carousel-caption .text .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(200, 200, 200, 0.7);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 25px;
    position: relative;
    z-index: 3;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

#home-slider .carousel-caption .text .button:hover {
    background: #fff;
    border-color: #999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

#home-slider .carousel-caption .text .button .rightIcon {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    position: relative;
}

#home-slider .carousel-caption .text .button .rightIcon::after {
    content: '>';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-left: 2px;
}

#home-slider .carousel-caption .text a {
    text-decoration: none;
    display: inline-block;
}

/* Carousel Indicators */
#home-slider .carousel-indicators {
    bottom: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

#home-slider .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    text-indent: 0;
    opacity: 1;
}

#home-slider .carousel-indicators li:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

#home-slider .carousel-indicators li.active {
    background: #fff;
    border-color: #fff;
    width: 40px;
    border-radius: 6px;
}

/* Carousel Controls */
#home-slider .carousel-control-prev,
#home-slider .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 10;
}

#home-slider .carousel-control-prev {
    left: 30px;
}

#home-slider .carousel-control-next {
    right: 30px;
}

#home-slider .carousel-control-prev:hover,
#home-slider .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

#home-slider .carousel-control-prev-icon,
#home-slider .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    #home-slider .carousel-caption {
        padding-left: 60px;
        padding-right: 60px;
    }
    
    #home-slider .carousel-caption .text {
        width: 48%;
        max-width: 500px;
    }
    
    #home-slider .carousel-caption .subText {
        font-size: 22px;
    }
    
    #home-slider .carousel-caption .text span {
        font-size: 48px;
    }
    
    #home-slider .carousel-caption .image {
        right: 60px;
        width: 480px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    #home-slider .carousel-item.full-screen::before {
        background: linear-gradient(to right, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.6) 35%, rgba(255, 255, 255, 0.3) 60%, transparent 100%);
    }
    
    #home-slider .carousel-caption {
        padding-left: 30px;
        padding-right: 30px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    
    #home-slider .carousel-caption .text {
        width: 55%;
        max-width: none;
        margin-bottom: 0;
        justify-content: center;
        align-items: flex-start;
        padding: 0;
        min-height: 100%;
        position: relative;
        z-index: 3;
    }
    
    #home-slider .carousel-caption .subText {
        font-size: 18px;
        margin-bottom: 10px;
        line-height: 1.4;
        color: #666;
    }
    
    #home-slider .carousel-caption .text span {
        font-size: 36px;
        letter-spacing: 0.3px;
        line-height: 1.2;
        margin-top: 0;
    }
    
    #home-slider .carousel-caption .image {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 60%;
        max-width: 400px;
        height: 70%;
        max-height: 400px;
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        margin: 0;
        opacity: 0.35;
        z-index: 0;
        filter: blur(1px);
    }
    
    #home-slider .carousel-caption .text .button {
        padding: 10px 20px;
        font-size: 12px;
        margin-top: 20px;
        position: relative;
        z-index: 4;
    }
    
    #home-slider .carousel-control-prev,
    #home-slider .carousel-control-next {
        width: 36px;
        height: 36px;
        opacity: 0.7;
        z-index: 10;
    }
    
    #home-slider .carousel-control-prev {
        left: 10px;
    }
    
    #home-slider .carousel-control-next {
        right: 10px;
    }
    
    #home-slider .carousel-indicators {
        bottom: 20px;
        z-index: 10;
    }
    
    #home-slider .carousel-indicators li {
        width: 8px;
        height: 8px;
    }
    
    #home-slider .carousel-indicators li.active {
        width: 24px;
    }
}

@media (max-width: 480px) {
    #home-slider .carousel-caption {
        padding-left: 20px;
        padding-right: 20px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    
    #home-slider .carousel-caption .text {
        width: 60%;
        max-width: none;
        justify-content: center;
        align-items: flex-start;
        padding: 0;
        position: relative;
        z-index: 3;
    }
    
    #home-slider .carousel-caption .subText {
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 1.4;
        color: #666;
    }
    
    #home-slider .carousel-caption .text span {
        font-size: 28px;
        letter-spacing: 0.2px;
        line-height: 1.15;
        margin-top: 0;
    }
    
    #home-slider .carousel-caption .image {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 55%;
        max-width: 300px;
        height: 65%;
        max-height: 350px;
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        margin: 0;
        opacity: 0.3;
        z-index: 0;
        filter: blur(1px);
    }
    
    #home-slider .carousel-caption .text .button {
        padding: 9px 18px;
        font-size: 11px;
        margin-top: 18px;
        position: relative;
        z-index: 4;
        letter-spacing: 0.5px;
    }
    
    #home-slider .carousel-indicators {
        bottom: 15px;
        gap: 8px;
        z-index: 10;
    }
    
    #home-slider .carousel-indicators li {
        width: 6px;
        height: 6px;
    }
    
    #home-slider .carousel-indicators li.active {
        width: 20px;
    }
    
    #home-slider .carousel-control-prev,
    #home-slider .carousel-control-next {
        width: 32px;
        height: 32px;
        opacity: 0.6;
        z-index: 10;
    }
    
    #home-slider .carousel-control-prev {
        left: 8px;
    }
    
    #home-slider .carousel-control-next {
        right: 8px;
    }
    
    #home-slider .carousel-control-prev-icon,
    #home-slider .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }
}
