@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,900;1,900&display=swap');

:root {
    --bg-deep: #0a0a0a;
    --bg-card: #141414;
    --gold: #d4af37;
    --gold-dim: #c7a008;
    --text-primary: #ffffff;
    --text-muted: #a0a0a0;
    --accent: #d4af37;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .brand-font {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
}

/* --- Layout --- */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* --- Header & Navigation --- */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    opacity: 0.7;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
    opacity: 1;
}

/* --- Buttons --- */

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--bg-deep);
}

.btn-primary:hover {
    background-color: var(--gold-dim);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--bg-deep);
}

/* --- Hero Section --- */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.9), transparent), url('https://tse-mm.bing.com/th?q=cinematic+movie+theater') center/cover no-repeat;
}

.hero-content {
    max-width: 600px;
}

.hero-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 30px;
}

/* --- Movie Cards --- */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.movie-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

.movie-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.movie-poster {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    transition: var(--transition);
}

.movie-card:hover .movie-poster {
    transform: scale(1.05);
}

.movie-info {
    padding: 15px;
}

.movie-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.movie-meta {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}

.movie-rating {
    color: var(--gold);
}

.movie-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold);
    color: var(--bg-deep);
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 800;
    border-radius: 2px;
}

/* --- News & Updates --- */

.news-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.news-item {
    display: flex;
    gap: 20px;
    padding: 15px;
    background: var(--bg-card);
    border-radius: 4px;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.news-item:hover {
    background: rgba(212, 175, 55, 0.05);
}

.news-date {
    font-size: 12px;
    color: var(--gold);
    min-width: 80px;
}

.news-title {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- Floating Button --- */

.floating-app {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: var(--gold);
    color: var(--bg-deep);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.floating-app:hover {
    transform: scale(1.1) rotate(10deg);
}

/* --- Footer --- */

footer {
    background: #050505;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 20px;
}

.footer-title {
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 12px;
}

/* --- Responsive --- */

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-title {
        font-size: 48px;
    }
    .news-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-title {
        font-size: 36px;
    }
    .section {
        padding: 60px 0;
    }
}

/* Feature Grid for Product Page */
.filter-bar {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.filter-label {
    color: var(--gold);
    font-size: 14px;
    width: 60px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex: 1;
}

.filter-option {
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.filter-option:hover, .filter-option.active {
    color: var(--gold);
}

/* About Us Page */
.about-hero {
    height: 400px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://tse-mm.bing.com/th?q=corporate+office') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.culture-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.culture-card i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Contact Us Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background: #1e1e1e;
    border: 1px solid #333;
    color: white;
    border-radius: 4px;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold);
    outline: none;
}

.contact-info-card {
    margin-bottom: 30px;
}

.contact-info-card h4 {
    color: var(--gold);
    margin-bottom: 10px;
}

.map-container {
    width: 100%;
    height: 300px;
    background: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
}
