/* =========================
   ROOT BRAND VARIABLES
========================= */
:root {
  --bg-dark: #0a0a0a;
  --bg-soft: #111111;
  --text-main: #f5f5f5;
  --text-muted: #b8b8b8;

  --gold-main: #d4af37;
  --gold-soft: #f1d27a;
  --gold-glow: rgba(212, 175, 55, 0.6);

  --accent: #1a1a1a;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --radius: 12px;
  --transition: all 0.4s ease;
}

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

body {
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--gold-main);
  letter-spacing: 0.5px;
}

h1 {
  font-size: 3rem;
  text-shadow: 0 0 15px var(--gold-glow);
}

h2 {
  font-size: 2.2rem;
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.9)),
    url('your-image.jpg') center/cover no-repeat;
  position: relative;
}

.hero h1 {
  font-size: 3.5rem;
  animation: fadeInUp 1.5s ease;
}

.hero p {
  max-width: 600px;
  margin: 20px auto;
}

/* =========================
   GOLD GLOW TEXT EFFECT
========================= */
.gold-text {
  color: var(--gold-main);
  text-shadow:
    0 0 5px var(--gold-glow),
    0 0 10px var(--gold-glow),
    0 0 20px var(--gold-glow);
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  padding: 14px 30px;
  margin-top: 20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #d4af37, #f1d27a);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 0 10px var(--gold-glow);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px var(--gold-glow);
}

/* =========================
   SECTION LAYOUT
========================= */
.section {
  padding: 100px 20px;
  max-width: 1100px;
  margin: auto;
}

.section-dark {
  background: var(--bg-soft);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

/* =========================
   CARD DESIGN
========================= */
.card {
  background: #111;
  padding: 25px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid #1f1f1f;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-main);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* =========================
   IMAGE STYLE
========================= */
img {
  max-width: 100%;
  border-radius: var(--radius);
}

.image-glow {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

/* =========================
   NAVIGATION
========================= */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.navbar a {
  color: var(--text-main);
  text-decoration: none;
  margin: 0 15px;
  transition: var(--transition);
}

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

/* =========================
   SCROLL ANIMATIONS
========================= */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

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

/* =========================
   PARALLAX EFFECT
========================= */
.parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* =========================
   EMAIL SIGNUP
========================= */
.email-box {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.email-box input {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius);
  border: none;
  background: #1a1a1a;
  color: white;
}

.email-box button {
  padding: 12px 20px;
  border-radius: var(--radius);
  border: none;
  background: var(--gold-main);
  color: black;
  font-weight: bold;
}

/* =========================
   FOOTER
========================= */
.footer {
  padding: 40px;
  text-align: center;
  background: #050505;
  border-top: 1px solid #222;
}

.footer p {
  font-size: 0.9rem;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}