
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* نوار بالایی */
.header {
    background: linear-gradient(135deg, #1a237e, #4a148c);
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff4081;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-right: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.nav-links a:hover {
    background-color: rgba(255,255,255,0.1);
}

/* بخش اصلی */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/cinema-bg.jpg');
    background-size: cover;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color:#ff4081 ;
}

/* بخش فیلم‌ها */
.shows-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a237e;
    font-size: 2rem;
}

/* کارت فیلم‌ها */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.shows-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.shows-card:hover {
    transform: translateY(-10px);
}

.shows-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.shows-info {
    padding: 1.5rem;
}

.shows-title {
    font-size: 1.3rem;
    color: #1a237e;
    margin-bottom: 0.5rem;
}

.shows-desc {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.shows-meta {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.book-btn {
    background: linear-gradient(135deg, #ff4081, #f50057);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: background 0.3s;
}

.book-btn:hover {
    background: linear-gradient(135deg, #f50057, #c51162);
}

/* فوتر */
.footer {
    background: #1a237e;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

/* برای موبایل */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .shows-grid {
        grid-template-columns: 1fr;
    }
}















