/* Tatil Harita - Özel CSS Dosyası */

/* Logo Stilleri */
.site-logo {
    max-height: 40px;
    width: auto;
    transition: all 0.3s ease;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.site-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

/* SVG Logo Özel Stilleri */
.site-logo[src$=".svg"] {
    fill: currentColor;
    object-fit: contain;
}

/* Responsive Logo Ayarları */
@media (max-width: 768px) {
    .site-logo {
        max-height: 32px;
    }
}

/* Logo Renk Paleti - Kategori Renkleri */
.bg-kamp {
    background-color: #60d6c2 !important;
}

.bg-plaj {
    background-color: #91c8e4 !important;
}

.bg-koy {
    background-color: #cbaacb !important;
}

.bg-route {
    background-color: #ff9b85 !important;
}

/* Text renkleri */
.text-kamp {
    color: #60d6c2 !important;
}

.text-plaj {
    color: #91c8e4 !important;
}

.text-koy {
    color: #cbaacb !important;
}

.text-route {
    color: #ff9b85 !important;
}

/* Border renkleri */
.border-kamp {
    border-color: #60d6c2 !important;
}

.border-plaj {
    border-color: #91c8e4 !important;
}

.border-koy {
    border-color: #cbaacb !important;
}

.border-route {
    border-color: #ff9b85 !important;
}

/* Filter Button Aktif Durumları */
.filter-btn.active[onclick*="kamp"] {
    background-color: #60d6c2 !important;
    color: white !important;
}

.filter-btn.active[onclick*="plaj"] {
    background-color: #91c8e4 !important;
    color: white !important;
}

.filter-btn.active[onclick*="koy"] {
    background-color: #cbaacb !important;
    color: white !important;
}

/* Filter Button Hover Durumları */
.filter-btn[onclick*="kamp"]:hover {
    background-color: rgba(96, 214, 194, 0.1) !important;
    color: #60d6c2 !important;
}

.filter-btn[onclick*="plaj"]:hover {
    background-color: rgba(145, 200, 228, 0.1) !important;
    color: #91c8e4 !important;
}

.filter-btn[onclick*="koy"]:hover {
    background-color: rgba(203, 170, 203, 0.1) !important;
    color: #cbaacb !important;
}

/* Focus States for Route Forms */
.focus\:ring-route:focus {
    --tw-ring-color: rgba(255, 155, 133, 0.5) !important;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}

/* Route Stop Marker Styles */
.route-stop-marker {
    animation: stopPulse 2s infinite;
    transition: transform 0.2s ease;
}

.route-stop-marker:hover {
    transform: scale(1.1);
}

@keyframes stopPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 155, 133, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(255, 155, 133, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 155, 133, 0);
    }
}

/* Route Marker Pulse */
.route-marker-pulse {
    animation: routePulse 2s infinite;
}

@keyframes routePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 155, 133, 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(255, 155, 133, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 155, 133, 0);
    }
}

/* Özel Buton Stilleri */
.btn-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Özel Kart Stilleri */
.custom-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Navbar Özel Stilleri */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Özel Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .site-logo {
        max-height: 32px;
    }
    
    .custom-card {
        margin: 8px;
        border-radius: 12px;
    }
}

/* Dark Mode Support (isteğe bağlı) */
@media (prefers-color-scheme: dark) {
    .custom-card {
        background: rgba(30, 30, 30, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}