/*
Theme Name: Cinerama Clone
Author: Grok
Description: A WordPress theme inspired by Cinerama for movie studios and filmmakers.
Version: 1.0
*/

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
}

.hero-section {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
    z-index: 1;
}

.hero-section > div {
    z-index: 2;
}

.portfolio-section {
    padding: 4rem 0;
}

.portfolio-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #222;
    padding: 1rem;
    border-radius: 8px;
}

.portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

footer {
    background-color: #111;
    padding: 2rem 0;
    text-align: center;
}