/* Ana Sayfa CSS */
body {
    font-family: 'Inter', sans-serif;
}

.logo-font {
    font-family: 'Pacifico', serif;
}

.hero-bg {
    background-image: url('/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.scroll-smooth {
    scroll-behavior: smooth;
}

.language-dropdown {
    position: relative;
}

.language-dropdown-content {
    position: absolute;
    right: 0;
    top: 100%;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
    border: 1px solid #e5e7eb;
    max-height: 300px;
    overflow-y: auto;
}

.language-option {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s;
}

.language-option:hover {
    background-color: #f9fafb;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option.active {
    background-color: #fdf2f8;
    color: #ec4899;
    font-weight: 500;
}

.flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    border-radius: 2px;
}