@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ========= THEME VARIABLES ========= */
:root {
  /* Background Colors */
  --bg: #131718;
  --bg-secondary: #141922;
  --header-bg: #1c2123;
  --sidebar-bg: #1c2123;
  --panel: #1f1c1a;
  --panel-hover: #2a2622;
  --card: #1c2330;
  --border: rgba(165,130,100,.1);
  --ring: rgba(255,255,255,.08);

  /* Text Colors */
  --txt: #ffffff;
  --txt-2: #b8b8b8;
  --txt-muted: #6b6866;
  --text-primary: #e8efff;
  --text-secondary: #c2cbe0;
  --sub: #c2cbe0;

  /* Accent Colors */
  --gold: #d4a574;
  --gold-hover: #e6b885;
  --gold-dark: #b08d5a;
  --accent: #e6c46a;
  --accent-2: #7bc6ff;
  --green: #00d4aa;
  --green-hover: #00e6bb;
  --orange: #ff6b35;
  --orange-hover: #ff8055;

  /* Gold Gradient */
  --gold-a: #f9e7bf;
  --gold-b: #f6d49d;
  --gold-c: #d4a574;
  --gold-d: #a67c45;
  --gold-e: #8c6b3f;
  --gold-f: #5e472a;
  
  /* Blue Theme */
  --blue-1: #2b5f86;
  --blue-2: #1c3f59;
  --blue-3: #0f2a3b;

  /* Layout */
  --radius: 6px;
  --shadow: 0 4px 12px rgba(0,0,0,.6);
  --shadow-lg: 0 14px 38px rgba(0,0,0,.45);
}

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

html, body {
  height: 100%;
}

body {
  font-family: "Cinzel", "BeaufortforLOL", Georgia, serif;
  color: var(--txt);
  background: radial-gradient(1200px 600px at 50% -10%, #212a3a 0%, #141922 60%);
  line-height: 1.5;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
}

img, svg {
  display: block;
  max-width: 100%;
}

/* ========= LAYOUT ========= */
.app-wrapper {
  display: flex;
  min-height: 100vh;
  padding-top: 64px;
}

.main-content {
  flex: 1;
  margin-left: 260px;
  padding: 2px 5px 0px 5px;
  transition: margin-left .3s ease;
  min-width: 0;
}

.main-content.expanded {
  margin-left: 60px;
}

.content-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  min-width: 0;
}

/* ========= UTILITY CLASSES ========= */
.hidden {
  display: none !important;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  pointer-events: auto;
}


.astro-slider__slide:nth-child(1) {
    background-image: url('../img/astromania-back-3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.astro-slider__slide:nth-child(2) {
    background-image: url('../img/astromania-back-4.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.astro-slider__slide:nth-child(3) {
    background-image: url('../img/astromania-back-3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.astro-slider__slide:nth-child(4) {
    background-image: url('../img/astromania-back-4.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}