@font-face {
  font-family: 'Montserrat';
  src: url('assets/Montserrat/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('assets/Montserrat/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('assets/Montserrat/Montserrat-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Montserrat';
  src: url('assets/Montserrat/Montserrat-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #000;
  box-sizing: border-box;
  color: #fff;
}

.navbar {
  width: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 40px;
  height: 64px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  box-sizing: border-box;
  border-bottom: 1px solid #1a1a1a;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #c9a14a;
}

.navbar-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.navbar-logo-text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: #c9a14a;
  margin-left: 4px;
}

.navbar-brand:visited,
.navbar-brand:hover,
.navbar-brand:focus-visible {
  color: #f0c980;
  text-decoration: none;
}

.navbar-logo {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #c9a14a;
}

.navbar-links-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-left: auto;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-menu span {
  width: 24px;
  height: 2px;
  background: #f0c980;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.navbar-links li {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a14a;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.navbar-links li a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.navbar-links li a:visited {
  color: inherit;
  text-decoration: none;
}

.navbar-links li a:hover {
  color: #f0c980;
}

.navbar-version {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.navbar-links li.active {
  border-bottom: 2px solid #fff;
  color: #fff;
}

.upload-btn {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 20px;
  padding: 6px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}
.upload-btn:hover {
  background: #ccc;
}

.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 120px;
  box-sizing: border-box;
  width: 100%;
}

.hero.hero--compact {
  min-height: auto;
  display: block;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  padding-top: 48px;
}

.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 40px;
  margin-top: 0;
}

.hero-upload-btn, .hero-signup-btn {
  appearance: none;
  box-shadow: none;
  outline: none;
}

.hero-upload-btn {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 20px;
  padding: 8px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.hero-upload-btn:hover {
  background: #ccc;
}

.hero-signup-btn {
  background: transparent;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.2s, color 0.2s;
  box-shadow: inset 0 0 0 2px #fff;
}
.hero-signup-btn:hover {
  background: #fff;
  color: #000;
}

.hero-btn-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}

.mobile-menu-btn {
  display: none;
}
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 48px;
  }
  .navbar {
    padding: 0 16px;
    height: 60px;
  }
  .navbar-logo-text {
    letter-spacing: 0.24em;
  }
  .navbar-links {
    gap: 16px;
  }
  .navbar-links-wrapper {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: calc(90vh - 60px);
  }
  .navbar {
    height: 60px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 0 16px;
  }
  .navbar-links-wrapper {
    width: auto;
    justify-content: flex-end;
    align-items: center;
    margin-left: 0;
    order: 3;
  }
  .navbar-links {
    gap: 16px;
  }
  .hamburger-menu {
    display: flex;
    margin-left: auto;
    order: 2;
  }
} 