@charset "UTF-8";

        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }
		
		.h-screen {
		height: 80vh !important;
		}

        .gradient-text {
            background: linear-gradient(45deg, #FFD700, #FFA500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .neon-button {
            background: linear-gradient(45deg, #FF1493, #9400D3);
            color: white;
            text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
            box-shadow: 0 0 15px rgba(255, 20, 147, 0.3);
            transition: all 0.3s ease;
        }

        .neon-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 25px rgba(255, 20, 147, 0.5);
        }

        /* Header ve Hero Stilleri */
        .hero-section {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }

        /* Profil Kartları */
        .container {
            width: 100%;
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .profile-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .profile-card {
            position: relative;
        }

        .profile-image {
            position: relative;
            width: 100%;
            height: 580px;
            overflow: hidden;
        }

        .before-image,
        .after-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.3s ease;
        }

        .after-image {
            opacity: 0;
        }

        .profile-card.light-on .after-image {
            opacity: 1;
        }

        /* Switch Stili */
        .checkbox {
            opacity: 0;
            position: absolute;
        }

        .checkbox-label {
            background-color: #111;
            width: 50px;
            height: 26px;
            border-radius: 50px;
            position: absolute;
            left: 20px;
            top: 20px;
            padding: 5px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 10;
        }

        .fa-moon { color: #f1c40f; }
        .fa-sun { color: #f39c12; }

        .checkbox-label .ball {
            background-color: #fff;
            width: 22px;
            height: 22px;
            position: absolute;
            left: 2px;
            top: 2px;
            border-radius: 50%;
            transition: transform 0.2s linear;
        }

        .checkbox:checked + .checkbox-label .ball {
            transform: translateX(24px);
        }

        /* Başlık Kartı */
        .profile-title {
            padding: 20px;
            text-align: center;
            background: white;
            margin-top: 15px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .profile-title:hover {
            transform: translateY(-5px);
        }

        .profile-title h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 5px;
            background: linear-gradient(45deg, #ff0000, #880808);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .profile-title p {
            color: #666;
            font-size: 1rem;
        }

        /* Responsive */
        @media (max-width: 1600px) {
            .profile-image {
                height: calc(580px * 0.75);
            }
        }

        @media (max-width: 1400px) {
            .profile-cards-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .profile-image {
                height: calc(580px * 0.8);
            }
        }

        @media (max-width: 1024px) {
            .profile-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .profile-image {
                height: calc(580px * 0.75);
            }
        }

        @media (max-width: 768px) {
            .profile-cards-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 40px auto 0;
            }
            .profile-image {
                height: calc(580px * 0.65);
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .profile-image {
                height: calc(580px * 0.55);
            }
        }