/* navigate */
.main-navigation ul {
    background: none;
}
.main-navigation a {
    color: #fffnone;
    background-color: transparent;
}


/* Backgorund Images */
 
.slide:first-child {
  background: url('https://khuonstudio.art/wp-content/uploads/2025/09/TVU07867-1-1.jpg') no-repeat
    center center/cover;
}
.slide:nth-child(2) {
  background: url('https://khuonstudio.art/wp-content/uploads/2025/09/TVU08331-copy.jpg') no-repeat
    center center/cover;
}
.slide:nth-child(3) {
  background: url('https://khuonstudio.art/wp-content/uploads/2025/09/TVU07883.jpg') no-repeat
    center center/cover;
}
.slide:nth-child(4) {
  background: url('') no-repeat
    center center/cover;
}
.slide:nth-child(5) {
  background: url('') no-repeat
    center center/cover;
} 
.slide:nth-child(6)  {
  background: url('') no-repeat
    center center/cover;
}


/* hide some componnet's theme*/
.site {
    background-color: transparent;
}
.entry-title {
    display: none;
}
.site-footer {
    display: none;
}

.entry-content h1, .entry-content h2, .comment-content h1, .comment-content h2 {
    margin-top: 0.5em;
    margin-bottom: 0;
}



@import url('https://fonts.googleapis.com/css?family=Roboto');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #333;
  color: #fff;
  line-height: 1.6;
}

.slider {
  position: fixed;
    top: 0;
    left: 0;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
	z-index: -1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: -1;
}

.slide.current {
  opacity: 1;
}
.slide .content {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: none;
  color: #fff;
  padding: 0 20px 0 20px;
	border-start-end-radius: 10px;
  border-end-end-radius: 10px;
}

.slide .content h1 {
	color: #fff;
}

.slide.current .content {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.7s ease-in-out 0.3s;
}

.buttons button#next {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.buttons button#prev {
  position: absolute;
  bottom: 10px;
  right: 70px;
}

.buttons button {
	display: none;
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  padding: 13px 15px;
  border-radius: 50%;
  outline: none;
}

.buttons button:hover {
  background-color: #fff;
  color: #333;
}

@media (max-width: 500px) {
  .slide .content {
		display: none;
    bottom: 60px;
    left: 0;
  }

  .slide.current .content {
		display: none;
    transform: translateY(0);
  }
}



