/* global variables */
:root {
  --bg-color: #0a0a0a;
  --surface-color: #141414;
  --primary-gold: #c5a059;
  --accent-gold: #d4af37;
  --dark-gold: #8e734a;
  --text-main: #e5e5e5;
  --text-muted: #a0a0a0;
  --border-color: rgba(197, 160, 89, 0.2);
  --glass-bg: rgba(20, 20, 20, 0.8);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .serif {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: 0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--dark-gold);
  border-radius: 4px;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.flex { display: flex; }
.grid { display: grid; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }

/* Components */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}

.btn:hover {
  background: var(--primary-gold);
  color: var(--bg-color);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

.card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  padding: 24px;
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
}

/* Header */
header {
  height: 80px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 4px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

nav ul a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

nav ul a:hover, nav ul a.active {
  color: var(--primary-gold);
}

/* Hero Section */
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.9)), 
              url('https://tse-mm.bing.com/th?q=luxury+film+studio');
  background-size: cover;
  background-position: center;
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(40px, 8vw, 80px);
  margin-bottom: 24px;
  color: #fff;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Section Headlines */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  color: var(--primary-gold);
  margin-bottom: 16px;
}

.section-header .subtitle {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
}

/* Grid Layouts */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

.dynamic-item {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  transition: 0.3s;
}

.dynamic-item:hover {
  background: rgba(197, 160, 89, 0.05);
}

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

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

.footer-col h4 {
  color: var(--primary-gold);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul a {
  color: var(--text-muted);
  font-size: 14px;
}

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

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

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Maps Embbed placeholder */
.map-container {
  width: 100%;
  height: 400px;
  background: #1a1a1a;
  position: relative;
  border: 1px solid var(--border-color);
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    display: none; /* simple version */
  }
  .section-padding {
    padding: 60px 0;
  }
}
