/* Stories Page - Minimal Design */

/* Stories Header */
.stories-header {
    background: rgba(90, 24, 154, 0.95);
    padding: 120px 0 60px;
    text-align: center;
    color: white;
}

.stories-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stories-header p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Search Container */
.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-box {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

.search-box input {
    width: 100%;
    padding: 20px 20px 20px 50px;
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    outline: none;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Stories Section */
.stories-section {
    padding: 4rem 0;
    background: #f8f9fa;
    min-height: 60vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Stories Grid - Sinema Bilet Tasarımı */
.stories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
    justify-content: center;
}

.stories-grid.list-view {
    flex-direction: column;
    align-items: center;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.btn-primary {
    background: rgba(90, 24, 154, 0.9);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(90, 24, 154, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(90, 24, 154, 0.4);
    background: rgba(90, 24, 154, 1);
}

/* Loading State */
.loading-state {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(90, 24, 154, 0.8);
    font-size: 1.2rem;
    font-weight: 500;
}

.loading-state i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(90, 24, 154, 0.2);
    margin: 2rem auto;
    max-width: 500px;
}

.empty-icon {
    font-size: 4rem;
    color: rgba(90, 24, 154, 0.8);
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #718096;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: rgba(90, 24, 154, 0.9);
}

.footer-section a {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: rgba(90, 24, 154, 0.9);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #4a5568;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(90, 24, 154, 0.9);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stories-header {
        padding: 100px 0 40px;
    }
    
    .stories-header h1 {
        font-size: 2rem;
    }
    
    .stories-header p {
        font-size: 1rem;
    }
    
    .search-container {
        padding: 0 1rem;
    }
    
    .stories-grid {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
        padding: 0.25rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stories-header h1 {
        font-size: 1.5rem;
    }
    
    .search-box input {
        padding: 16px 16px 16px 40px;
        font-size: 14px;
    }
    
    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}