@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&family=Josefin+Sans:wght@400;600;700;800&display=swap');

:root {
  --bg:      #000000;
  --surface: #323232;
  --accent1: #FF1E56;
  --accent2: #FFAC41;
  --text:    #ffffff;
  --font: 'Montserrat', sans-serif;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#nebula-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
}

header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px 40px;
  border-bottom: 0.5px solid var(--surface);
  
}
.logo {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
}

.right-info {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}

.fi {
  font-size: 18px;
}

.fa-instagram {
  font-size: 24px;
}

.social, .lang {
  display: flex;
  align-items: center;
}

.social a:hover,
.lang-switch:hover {
  color: var(--accent2);
}

nav {
  display: flex;
  gap: 8px;
  justify-content: center;
}

nav a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 0.5px solid transparent;
  transition: all 0.2s ease;
}

nav a:hover {
  color: var(--accent2);
  border-color: var(--accent2);

}

a {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
}

a:hover {
  color: var(--accent1);
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  
  font-size: 17vw;
  font-weight: 600;
  line-height: 1;
  color: var(--text);
}

.lang-switch {
  font-size: 18px;
  color: var(--text);
  background: transparent;
  border: none;
  padding: 5px 10px;
  letter-spacing: 1px;
  cursor: pointer;
  
  transition: all 0.2s ease;
}

.lang-switch:hover {
  border-color: var(--accent2);
  color: var(--accent2);
}


@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  nav {
    gap: 4px;
  }

  nav a {
    font-size: 12px;
    padding: 6px 12px;
    letter-spacing: 2px;
  }
}