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

/* --------------------------------------------------
   MOBILE-SAFE FULLSCREEN BACKGROUND
-------------------------------------------------- */
body {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* FIXED BACKGROUND THAT WORKS ON MOBILE */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/img/levy-icon.jpg') center center / cover no-repeat;
  z-index: -2;
  pointer-events: none;
}

/* DARK CINEMATIC OVERLAY */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: -1;
  pointer-events: none;
}

/* --------------------------------------------------
   GLOBAL COLORS
-------------------------------------------------- */
:root {
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.25);
  --white: #ffffff;
  --glass-dark: rgba(0, 0, 0, 0.65);
  --glass-light: rgba(0, 0, 0, 0.35);
}

/* --------------------------------------------------
   GLASS BLOCKS
-------------------------------------------------- */
.glass-block {
  background: linear-gradient(
    to bottom right,
    var(--glass-dark),
    var(--glass-light)
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 40px;
  border-radius: 14px;
  border: 1px solid var(--gold-soft);
  margin-bottom: 40px;
}

/* --------------------------------------------------
   HEADER
-------------------------------------------------- */
.site-header {
  width: 100%;
  padding: 20px 40px;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-header .logo img {
  height: 55px;
  width: auto;
}

.main-nav a {
  color: var(--white);
  margin-left: 25px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.main-nav a:hover {
  color: var(--gold);
}

/* --------------------------------------------------
   HERO SECTIONS
-------------------------------------------------- */
.hero,
#home-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.hero-overlay {
  max-width: 900px;
}

.hero h1 {
  font-size: 60px;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero p {
  font-size: 22px;
  color: #ccc;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-gold {
  background: var(--gold);
  color: #000;
  font-weight: bold;
}

.btn-gold:hover {
  background: #f5d76e;
}

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

.btn-outline:hover {
  background: var(--gold);
  color: #000;
}

/* --------------------------------------------------
   SECTIONS
-------------------------------------------------- */
section {
  padding: 80px 40px;
}

section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--gold);
}

section p {
  max-width: 900px;
  font-size: 18px;
  color: #ccc;
}

/* --------------------------------------------------
   VIDEO WRAPPER
-------------------------------------------------- */
.video-wrapper iframe {
  width: 100%;
  max-width: 900px;
  height: 500px;
  border-radius: 12px;
  border: none;
  display: block;
  margin: 0 auto;
}

/* --------------------------------------------------
   PROJECTS GRID
-------------------------------------------------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.project-card {
  padding: 30px;
  border-radius: 12px;
  background: var(--glass-dark);
  border: 1px solid var(--gold-soft);
}

.project-card h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

/* --------------------------------------------------
   CHARACTER GRID
-------------------------------------------------- */
.character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.character-card {
  background: var(--glass-dark);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--gold-soft);
}

/* --------------------------------------------------
   BOOK CARDS
-------------------------------------------------- */
.book-card {
  background: var(--glass-dark);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--gold-soft);
  text-align: center;
}

.book-card img {
  width: 100%;
  max-width: 260px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.price {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 15px;
}

/* --------------------------------------------------
   CONTACT FORM
-------------------------------------------------- */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.contact-form textarea {
  height: 140px;
  resize: none;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.site-footer {
  text-align: center;
  padding: 30px;
  background: rgba(0,0,0,0.85);
  border-top: 1px solid #111;
  color: #777;
}

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }

  section {
    padding: 50px 20px;
  }

  .hero-actions {
    flex-direction: column;
  }
}
