/* === PILNAI ATNAUJINTAS ORANŽINIS DIZAINAS (Sutvarkytas) === */

/* Pagrindinis fonas ir tekstas */
body {
  color: #e8e8e8;
  background-color: #0c0f14;
  font-size: 15px;
  line-height: 1.8;
}

/* Nuorodos - Oranžinės, be pabraukimo */
a {
  color: #f39c12;
  text-decoration: none !important;
  transition: 0.3s;
}
a:hover {
  color: #ffffff !important;
}

/* Antraštės */
h1 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}
h2 {
  font-size: 24px;
  font-weight: 600;
  color: #f0f0f0;
  margin-bottom: 15px;
}
h3 {
  font-size: 20px;
  font-weight: 600;
  color: #dddddd;
  margin-bottom: 10px;
}

/* Filmų kortelių hover efektas - Švelnus oranžinis švytėjimas */
.th-in {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.th-in:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 24px rgba(243, 156, 18, 0.25);
}

/* Mygtukai - Oranžiniai su baltu tekstu */
.button, .btn, .slice-btn span {
  background-color: #f39c12 !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  transition: 0.3s ease;
  cursor: pointer;
}
.button:hover, .btn:hover, .slice-btn span:hover {
  background-color: #e67e22 !important;
  color: #ffffff !important;
}

/* SEO tekstas */
.desc-text {
  font-size: 15px;
  color: #dcdcdc;
  background-color: #11161d;
  line-height: 1.8;
  border-left: 4px solid #f39c12;
  padding-left: 20px;
}
.desc-text p {
  margin-bottom: 10px;
}

/* PAIEŠKA - Čia panaikinama mėlyna spalva */
.search-box input, .search-wrap input, #searchinput {
  background-color: #1a1f26 !important;
  border: 1px solid #333 !important;
  color: #ffffff !important;
  padding: 10px 15px;
  border-radius: 4px;
  outline: none !important; /* Šita eilutė panaikina mėlyną apvadą Chrome/Edge */
  transition: border-color 0.3s;
}

.search-box input:focus, .search-wrap input:focus, #searchinput:focus {
  border-color: #f39c12 !important; /* Fokusuojant tampa oranžinis */
  box-shadow: 0 0 8px rgba(243, 156, 18, 0.3) !important;
}

/* Logotipas */
.logo {
  width: auto;
  height: auto;
}

/* "Grįžti į viršų" - Oranžinis */
#gotop, .go-up {
  background-color: #f39c12 !important;
  color: #ffffff !important;
  border-radius: 50%;
  transition: 0.3s;
}
#gotop:hover, .go-up:hover {
  background-color: #e67e22 !important;
  transform: translateY(-3px);
}

/* Meniu elementų fiksas, kad derėtų spalvos */
.hmenu > li > a:hover, .hmenu > li > a.is-active {
  color: #f39c12 !important;
  box-shadow: inset 0 -3px #f39c12;
}

.menu-title {
  color: #f39c12 !important;
}