
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  color: #333;
  background: #f0ede8;
  overflow-x: hidden;
}

.top-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #f0ede8;
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hamburger {
  font-size: 28px;
  cursor: pointer;
  user-select: none;
}

.nav-links {
  display: none;
}

.fullscreen-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: #f0ede8;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  text-align: center;
}

.fullscreen-menu a {
  font-size: 2em;
  margin: 20px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.fullscreen-menu.active {
  display: flex;
}

.section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.big-logo {
  max-width: 220px;
  margin-bottom: 30px;
}

.section-content {
  max-width: 700px;
  background: #f0ede8;
  padding: 20px;
  border-radius: 12px;
}

h1 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

p {
  font-size: 1.2em;
}

.vinted-button {
  margin-top: 20px;
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
}

.divider {
  position: absolute;
  bottom: 20px;
  font-size: 2em;
  color: #ccc;
}

.reviews-container {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 5px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.review {
  background: #f0ede8;
  padding: 16px;
  border-radius: 10px;
  min-width: 85%;
  flex-shrink: 0;
  scroll-snap-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-size: 1em;
  line-height: 1.5;
}



footer {
  text-align: center;
  padding: 20px;
  background-color: #f0ede8;
  font-size: 0.9em;
}
