.location-card {
    @apply bg-gray-800 p-6 rounded-lg cursor-pointer transition-all duration-300 hover:bg-gray-700 hover:transform hover:scale-105;
}

.listing-card {
    @apply bg-gray-800 rounded-lg overflow-hidden transition-all duration-300 hover:bg-gray-700 hover:transform hover:scale-105;
}

.social-link {
    @apply flex items-center gap-2 bg-gray-800 px-6 py-3 rounded-full transition-all duration-300 hover:bg-gray-700 hover:transform hover:scale-105;
}

.social-link i {
    @apply text-xl;
}

.glass-card {
    @apply bg-white bg-opacity-10 backdrop-blur-lg border border-white border-opacity-20 rounded-2xl shadow-lg;
    transition: all 0.3s ease;
}

.glass-card:hover {
    @apply bg-white bg-opacity-15 border-opacity-30;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.location-link {
    @apply block overflow-hidden;
}

.location-link:hover i {
    transform: scale(1.2) rotate(5deg);
}

.listing-link {
    @apply block overflow-hidden;
}

.listing-link img {
    transition: transform 0.5s ease;
}

.social-link {
    @apply block overflow-hidden;
}

.social-link i {
    transition: all 0.3s ease;
}

/* Animasyonlar */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.glass-card {
    animation: float 6s ease-in-out infinite;
}

/* Her kart için farklı animasyon gecikmesi */
.location-link:nth-child(1) { animation-delay: 0s; }
.location-link:nth-child(2) { animation-delay: 0.2s; }
.location-link:nth-child(3) { animation-delay: 0.4s; }

/* Responsive düzenlemeler */
@media (max-width: 640px) {
    .container {
        @apply px-2;
    }
    
    .location-card {
        @apply p-4;
    }
    
    .social-link {
        @apply px-4 py-2;
    }
    
    .glass-card {
        @apply p-4;
    }
    
    .social-link {
        @apply w-full;
    }
}

/* Switch Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E5E7EB;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input:checked + .slider {
    background-color: #84CC16;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Genel Stiller */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Animasyonlar */
@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

main > * {
    animation: slideUp 0.5s ease-out forwards;
}

main > *:nth-child(1) { animation-delay: 0.1s; }
main > *:nth-child(2) { animation-delay: 0.2s; }
main > *:nth-child(3) { animation-delay: 0.3s; }
main > *:nth-child(4) { animation-delay: 0.4s; }

/* Link Kartları */
.location-link, .listing-link, .social-link {
    display: block;
    transition: all 0.3s ease;
}

.location-link:hover, .listing-link:hover, .social-link:hover {
    transform: translateY(-2px);
}

.location-link > div, .listing-link > div, .social-link > div {
    transition: all 0.3s ease;
}

.location-link:hover > div, .listing-link:hover > div, .social-link:hover > div {
    background-color: #F3F4F6;
}

.location-link:active > div, .listing-link:active > div, .social-link:active > div {
    transform: scale(0.98);
}

/* İkon Animasyonları */
.location-link i, .social-link i {
    transition: all 0.3s ease;
}

.location-link:hover i.fa-chevron-right {
    transform: translateX(4px);
}

.social-link:hover i {
    transform: scale(1.1);
}

/* Responsive Düzenlemeler */
@media (max-width: 640px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
} 