/* VARIABLES */
:root {
  --green: #00FF1A;
  --black: #000000;
  --white: #F5F5F5;
  --gray: #1A1A1A;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.4;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  position: fixed;
  width: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
}

.logo {
  font-weight: 600;
  letter-spacing: 2px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu a {
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
}

.menu a:hover {
  color: var(--green);
}

/* HERO */
.hero {
  height: 100vh;
  padding: 120px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: 64px;
  letter-spacing: 4px;
}

.hero p {
  margin-top: 20px;
  color: var(--green);
}

/* SECTIONS */
.section {
  padding: 120px 40px;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

/* MIX */
.mix-item {
  margin-bottom: 30px;
}

.mix-number {
  color: var(--green);
  font-weight: 600;
}

/* GALERIE */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  height: 200px;
  background: var(--gray);
  transition: border 0.2s ease;
}

.gallery-item:hover {
  border: 2px solid var(--green);
}

/* CONTACT */
#contact p {
  color: var(--green);
}
