/*
Theme Name: Astra Burned
Description: Custom theme for Burned Story
Author: Michele
Version: 1.2
*/

/* ========= RESET ========= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #000;
  color: #d6c6a0;
  overflow-x: hidden;
}

/* ========= HERO SECTION ========= */

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('assets/images/hero.webp') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}

.hero h1 {
  font-size: 5rem;
  color: #d6c6a0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.1;
}

.hero p {
  font-size: 1.3rem;
  color: #bcae83;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.hero a {
  background: #8b0000;
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 2.4rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.hero a:hover {
  background: #a30000;
}

/* ========= SECTION BELOW HERO ========= */
.section-drop {
  background: #000;
  color: #d6c6a0;
  text-align: center;
  padding: 6rem 1rem;
}

.section-drop h2 {
  font-size: 2.2rem;
  color: #d6c6a0;
  margin-bottom: 1rem;
}

.section-drop p {
  font-size: 1.1rem;
  color: #bcae83;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
/* ========= NAVBAR ========= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.navbar-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo a {
  font-size: 1.4rem;
  font-weight: 800;
  color: #d6c6a0;
  text-decoration: none;
  letter-spacing: 1px;
}

.navbar-menu a {
  color: #d6c6a0;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar-menu a:hover {
  color: #8b0000;
}
