﻿/*
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #000;
    overflow: hidden;
    cursor: default;
}
*/
.hero-container {
    position: relative;
    /*width: 100vw;*/
    height: 100vh;
    overflow: hidden;
}

/* Base Image (Right Image - Anime World) */
.base-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #45b7d1 100%);
    background-image: url(../img/slider-two.png);
    background-size: cover;
    background-position: center;
}

/* Overlay Image (Left Image - Without Anime) */
.overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #7f8c8d 100%);
    background-image: url(../img/slider-one.png);
    background-size: cover;
    background-position: center;
    clip-path: inset(0 20.2604% 0 0);
    will-change: clip-path;
    transform: translateZ(0);
}

/* Content Overlays */
.content-overlay {
    background-blend-mode: overlay;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.1);*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    padding: 2rem;
    z-index: 5;
}

.left-content {
    clip-path: inset(0 20.2604% 0 0);
}

.right-content {
    clip-path: inset(0 0 0 79.7396%);
}

.content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
    font-family: "Montserrat", sans-serif !important;
}

.content p {
    font-size: 2rem;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.8s forwards;
    font-family: "Montserrat", sans-serif !important;
    color:black;
}

.content .cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 1.1s forwards;
}

    .content .cta-button:hover {
        background: white;
        color: #333;
        transform: translateY(-2px);
    }

/* Slider Control */
.slider-divider {
    position: absolute;
    top: 0;
    left: 89.7396%;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(-1px);
    z-index: 10;
    cursor: ew-resize;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-image: url(../img/wheel.jpg);
    background-size: cover;
    background-position: center;
}

    .slider-handle:hover {
        transform: translate(-50%, -50%) scale(1.1);
        background: rgba(255, 255, 255, 1);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    }

    .slider-handle:active {
        transform: translate(-50%, -50%) scale(0.95);
    }

.slider-icon {
    background-image: url(../img/wheel.jpg);
    background-size: cover;
    background-position: center;
    width:100%;
    height:100%;
    /*font-size: 24px;*/
    color: #333;
    font-weight: bold;
    -webkit-user-select: none;
    user-select: none;
}

/* Left Pointer with Pulse Effect */
.left-pointer {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: white;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: pulse 2s infinite;
    z-index: 11;
    -webkit-user-select: none;
    user-select: none;
}

    .left-pointer::before {
        content: '««';
    }

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: translateY(-50%) scale(1) translateX(0);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(255, 255, 255, 0.8);
    }

    50% {
        transform: translateY(-50%) scale(1.1) translateX(-8px);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7), 0 0 15px rgba(255, 255, 255, 0.6);
    }

    100% {
        transform: translateY(-50%) scale(1) translateX(0);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0);
    }
}

/* Hide pointer when approaching left side */
.left-pointer.hide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Speech Bubble */
.speech-bubble {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #333;
    padding: 15px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 15;
    opacity: 1;
    transition: opacity 0.3s ease;
    border: 2px solid #f0f0f0;
}

    .speech-bubble::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid white;
    }

    .speech-bubble::before {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 12px solid #f0f0f0;
    }

    /* Hide speech bubble when dragging */
    .speech-bubble.hide {
        opacity: 0;
        pointer-events: none;
    }

/* Labels */
.image-label {
    position: absolute;
    top: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 6;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease;
}

.left-label {
    left: 50px;
    clip-path: inset(0 1% 0 0);
}

.right-label {
    right: 50px;
    clip-path: inset(0 0 0 99%);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content styling */
.left-content .content h1 {
    background: linear-gradient(135deg, #d1b200, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /*text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.7);*/
    font-size:60px;
}

.right-content .content h1 {
    background: linear-gradient(135deg, red, black);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2.5rem;
    }

    .content p {
        font-size: 2rem;
    }

    .slider-handle {
        width: 50px;
        height: 50px;
    }

    .slider-icon {
        font-size: 20px;
    }

    .image-label {
        font-size: 1.2rem;
        top: 30px;
    }

    .left-label {
        left: 30px;
    }

    .right-label {
        right: 30px;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 2rem;
    }

    .content-overlay {
        padding: 1rem;
    }

    .slider-handle {
        width: 40px;
        height: 40px;
    }

    .slider-icon {
        font-size: 16px;
    }

    .left-pointer {
        font-size: 18px;
        right: 55px;
    }

    .speech-bubble {
        font-size: 12px;
        padding: 10px 15px;
        top: -70px;
    }
}

/* Prevent text selection during drag */
.slider-divider,
.slider-handle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Additional Anime-themed styles */

/* Create anime-style background patterns */
.base-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 2px, transparent 2px), radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 1px, transparent 1px), radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
    background-size: 100px 100px, 150px 150px, 80px 80px;
    animation: sparkle 3s infinite ease-in-out;
    pointer-events: none;
}

.overlay-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(0, 0, 0, 0.1) 50%, transparent 52%), linear-gradient(-45deg, transparent 48%, rgba(0, 0, 0, 0.1) 50%, transparent 52%);
    background-size: 20px 20px;
    pointer-events: none;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

/* Anime-style button effects */
.cta-button {
    position: relative;
    overflow: hidden;
}

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s;
    }

    .cta-button:hover::before {
        left: 100%;
    }

/* Enhanced slider handle for anime theme */
.slider-handle {
    /*background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);*/
    border: 3px solid #ff6b6b;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

    .slider-handle:hover {
        background-image: url(../img/wheel.jpg);
        background-size: cover;
        background-position: center;
        border-color: #4ecdc4;
        box-shadow: 0 6px 25px rgba(78, 205, 196, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

.slider-icon {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* Social Media Icons */
.social-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .social-icon svg {
        width: 24px;
        height: 24px;
        transition: all 0.3s ease;
    }

.website-icon svg {
    color: #ff6b6b;
}

.instagram-icon svg {
    color: #e4405f;
}

.personal-icon svg {
    color: #4ecdc4;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

    .social-icon:hover svg {
        transform: scale(1.1);
    }

.website-icon:hover {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

    .website-icon:hover svg {
        color: white;
    }

.instagram-icon:hover {
    background: linear-gradient(135deg, #e4405f, #f093fb);
}

    .instagram-icon:hover svg {
        color: white;
    }

.personal-icon:hover {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

    .personal-icon:hover svg {
        color: white;
    }

/* Mobile responsive for social icons */
@media (max-width: 768px) {
    .social-icons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

        .social-icon svg {
            width: 20px;
            height: 20px;
        }
}

@media (max-width: 480px) {
    .social-icons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

        .social-icon svg {
            width: 18px;
            height: 18px;
        }
}

.overlay-image::before {
    content: none !important;
}

/* Parıltı tanelerini kapatmak istersen */
.base-image::before {
    content: none !important;
}
