
html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: sans-serif;
  height: 100%;
}

.fullscreen-slider {
  display: flex;
  flex-direction: row;
  width: 300vw;
  height: 100vh;
  transition: transform 0.5s ease;
}

.slide {
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}

.slide-content {
  position: absolute;
  bottom: 15px;
  left: 80px;
  background: rgba(0,0,0,0.5);
  padding: 30px;
  border-radius: 10px;
  max-width: 700px;
}

.slide-content h2 {
  color: white;
  font-size: 1.8rem;
  margin: 0 0 10px 0;
}

.cta-button {
  display: inline-block;
  margin-top: 5px;
  background-color: #FFD700;
  color: #000;
  font-weight: bold;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 4px;
}

.nav-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  box-sizing: border-box;
}

.nav-buttons button {
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 20px;
}
