/*
Theme Name: M87 Films
Theme URI: https://m87.com.br
Description: Tema exclusivo M87 Films.
Version: 1.2.0
Author: M87 Creative Studios
Author URI: https://m87films.com
License: GPL v2 or later
Text Domain: m87-admin
*/

:root {
  --bg-color: #000000;
  --text-primary: #ffffff;
  --text-subtle: #888888;
  --color-accent: #d5d5d5;
  /* Replaced red with grey */
  --color-accent-dim: rgba(213, 213, 213, 0.1);
  --border-color: #333333;

  --nav-height: 6rem;
  --header-height: var(--nav-height);
  --spacing-sm: 1rem;
  --spacing-lg: 2rem;
  --text-color: var(--text-primary);
  --spring: cubic-bezier(0.19, 1, 0.22, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: 'Archivo', sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
  /* Prevent scrolling when menu is open */
}