/*
Theme Name: Cinema Lite
Theme URI: https://example.com/cinema-lite
Author: AdzVillage Marketing + ChatGPT
Author URI: https://adzvillage.com
Description: A clean, simple movie theatre theme with a Movies post type and showtimes.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cinema-lite
Tags: cinema, movie, theatre, simple, responsive
*/

/* Basic resets */
body { margin:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color:#eee; background:#111; line-height:1.6; }
a { color: #e50914; text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1100px, 92%); margin: 0 auto; }
.site-header, .site-footer { background:#000; color:#fff; }
.site-header .container, .site-footer .container { display:flex; align-items:center; justify-content:space-between; padding:16px 0; }
.site-title { font-size: 1.25rem; margin:0; }
.main-nav ul { list-style:none; display:flex; gap:16px; margin:0; padding:0; }
.hero { position:relative; color:#fff; text-align:center; padding:72px 16px; background: url('<?php echo get_template_directory_uri(); ?>/assets/img/hero.jpg') center/cover no-repeat; }
.hero h2 { font-size: clamp(1.75rem, 3vw, 3rem); margin: 0 0 8px; }
.hero p { margin: 0; opacity: .9; }
.section { padding: 36px 0; }
.grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap:20px; }
.card { background:#1c1c1c; border-radius:12px; overflow:hidden; box-shadow: 0 6px 16px rgba(0,0,0,.3); }
.card .content { padding:14px; }
.card h3 { margin:0 0 6px; font-size:1.1rem; }
.btn { display:inline-block; background:#e50914; color:#fff; padding:10px 14px; border-radius:8px; font-weight:600; }
.btn:hover { filter: brightness(1.1); }
.movie-meta { margin-top:10px; font-size:.95rem; color:#ccc; }
.table { width:100%; border-collapse: collapse; }
.table th, .table td { border-bottom:1px solid #333; padding:10px; text-align:left; }
.notice { background:#141414; padding:12px 14px; border:1px dashed #333; border-radius:8px; }
img { max-width:100%; height:auto; display:block; }
.wp-post-image { width:100%; aspect-ratio: 2/3; object-fit: cover; }
*/