* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body, html {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}

/* unvisited link */
a:link {
  color: cyan;
}

/* visited link */
a:visited {
  color: red;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: white;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  z-index: 10;
}

.nav-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

nav .logo {
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #f0c040;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 20;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
}

.hamburger.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
}

.hamburger.active div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  nav ul {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(0,0,0,0.9);
    flex-direction: column;
    gap: 1rem;
    width: 200px;
    padding: 1rem;
    transform: translateX(100%);
    opacity: 0;
  }

  nav ul.open {
    transform: translateX(0);
    opacity: 1;
  }

  .hamburger {
    display: flex;
  }
}

section {
  width: 100%;
  height: 100vh;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  scroll-snap-align: start;
  position: relative;
}

#vcorp {
  background: url('../images/VCORP-STUDIOS.jpg') center/cover no-repeat;
}

#rbr2 {
  background: url('../images/VCORP-RBR2-MOD.jpg') center/cover no-repeat;
}

#mattoni {
  background: url('../images/vcorp_mattoni_soulslike_brick_breaker.jpg') center/cover no-repeat;
}

h1 {
  font-size: 4rem;
  background: rgba(0,0,0,0.5);
  padding: 1rem 2rem;
  border-radius: 10px;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
    padding: 0.5rem 1rem;
  }
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.85);
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  z-index: 100;
}

#cookie-banner p {
  margin: 0;
}

#cookie-banner button {
  margin-left: 1rem;
  padding: 0.2rem 0.6rem;
  background: #f0c040;
  border: none;
  color: black;
  cursor: pointer;
  font-weight: bold;
}

