@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;600&display=swap');

:root {
    --bg-dark: #0a0a0a;
    --bg-surface: #161616;
    --gold: #d4af37;
    --gold-pale: #c5a028;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --text-main: #e0e0e0;
    --text-muted: #888888;
    --border: rgba(212, 175, 55, 0.2);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --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-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9), transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav ul li a:hover {
    color: var(--gold);
}

.nav-active {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #1b1b1b 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    padding: 0 10%;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--gold-glow);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 2rem;
}

.btn-gold {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--bg-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 0 15px var(--gold-glow);
}

/* Sections */
section {
    padding: 100px 5%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto;
}

/* Grid Layouts */
.grid-20 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2rem;
}

.grid-10 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2.5rem;
}

/* Movie Card */
.movie-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

.movie-card:hover .movie-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.movie-info {
    padding: 1rem;
}

.movie-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

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

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--bg-surface);
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.news-card:hover {
    border-left-color: var(--gold);
    background: #202020;
}

.news-date {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 0.9rem;
    min-width: 60px;
}

.news-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Members Section */
.membership {
    background: linear-gradient(45deg, #1a1a1a, #0a0a0a);
    text-align: center;
    border: 1px solid var(--border);
    padding: 60px;
    margin: 40px 0;
}

/* Floating Elements */
.floating-download {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 100;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 1rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Footer */
footer {
    padding: 80px 5% 40px;
    background: #050505;
    border-top: 1px solid var(--border);
}

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

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

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

/* Forms */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

input, textarea, select {
    width: 100%;
    padding: 1rem;
    background: #1a1a1a;
    border: 1px solid var(--border);
    color: #fff;
    outline: none;
}

input:focus, textarea:focus {
    border-color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }
    nav ul {
        display: none; /* Mobile menu can be added later */
    }
    .hero h1 {
        font-size: 3rem;
    }
    .footer-grid {
        gap: 2rem;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
