/* === FONTS === */
@font-face {
  font-family: 'Inter Tight';
  src: url('../fonts/inter/InterTight-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter Tight';
  src: url('../fonts/inter/InterTight-Italic-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* FontAwesome */
@import url('../fonts/fontawesome/css/all.min.css');

:root {
  --bg: #1F1A16;
  --text: #F8F4EF;
}

[data-theme="light"] {
  --bg: #F8F4EF;
  --text: #1F1A16;
}

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

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  background-image: url('../img/hero-bg_dark.jpg');   
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

[data-theme="light"] body {
   background-image: url('../img/hero-bg_light.jpg'); 
}

body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

nav {
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

.logo {
  width: 280px;
}

.burger {
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text);
}

.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--bg);
  transition: 0.4s;
  padding: 6rem 2rem 2rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.menu.open {
  right: 0;
}

.menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--text);
  text-decoration: none;
}

.toggle {
  font-size: 1.6rem;
  cursor: pointer;
  margin-left: 1rem;
}

section {
  padding: 4rem 5%;
  position: relative;
  z-index: 2;
}

h1, h2 {
  margin-bottom: 1rem;
}

.gig-card {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1rem 0;
}
