/* ============================================
   Lens Optik - Ana Stil Dosyası
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

/* ============================================
   Genel Ayarlar
   ============================================ */
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* ============================================
   Renk Paleti
   ============================================ */
/* Deep Teal - Koyu Deniz Yeşili/Mavi: #004d40 */
.primary-color { 
    background-color: #004d40; 
} 
.primary-text { 
    color: #004d40; 
}
.primary-dark { 
    background-color: #6ba082; /* Daha koyu açık tatlı yeşil arka plan rengi */ 
}

/* Deep Indigo - Koyu Mavi/Mor Aksan: #303f9f */
.secondary-color { 
    color: #303f9f; 
} 

/* ============================================
   Gölge Efektleri
   ============================================ */
.shadow-primary { 
    box-shadow: 0 15px 30px -10px rgba(0, 77, 64, 0.35); 
}
.shadow-soft { 
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1); 
}

/* ============================================
   Hero Bölümü
   ============================================ */
.hero-bg {
    background-color: #f7fafc; /* Tailwind gray-50 */
    background-image: radial-gradient(#d1d5db 1px, transparent 1px);
    background-size: 30px 30px;
}

/* ============================================
   Mobil Uygulama İndirme Butonları
   ============================================ */
.app-download-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #374151;
}

.app-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.2);
}

/* ============================================
   Mobil Menü
   ============================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 40;
    padding: 1.5rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    display: block;
    transform: translateY(0);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background-color: #f3f4f6;
    color: #004d40;
}

/* ============================================
   Form Stilleri
   ============================================ */
input:focus,
textarea:focus {
    outline: none;
    border-color: #004d40;
    box-shadow: 0 0 0 3px rgba(0, 77, 64, 0.1);
}

/* ============================================
   Animasyonlar
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ============================================
   Scroll to Top Button
   ============================================ */
#scrollToTop {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollToTop.visible {
    opacity: 1;
    pointer-events: auto;
}

#scrollToTop:hover {
    transform: translateY(-5px);
}

/* ============================================
   Phone Search Button
   ============================================ */
#phoneSearch {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#phoneSearch:hover {
    transform: translateY(-5px) scale(1.05);
}

/* ============================================
   Phone Search Modal
   ============================================ */
#phoneSearchModal {
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

#phoneSearchModal .bg-white {
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.phone-highlight {
    animation: highlightPulse 2s ease-in-out;
}

@keyframes highlightPulse {
    0%, 100% {
        background-color: #fef08a;
    }
    50% {
        background-color: #fbbf24;
    }
}

/* ============================================
   Responsive Ayarlar
   ============================================ */
@media (max-width: 768px) {
    .hero-bg {
        background-size: 20px 20px;
    }
    
    #scrollToTop {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3rem;
        height: 3rem;
    }
    
    #phoneSearch {
        bottom: 5.5rem;
        right: 1.5rem;
        width: 3rem;
        height: 3rem;
    }
}

