/*
Theme Name: KLINE Custom Theme
Author: Your Name
Version: 1.0
*/

body {
  background: none !important;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.header, .footer {
  background-color: white;
  color: black;
  padding: 15px;
  border-bottom: 4px solid red;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .logo img {
  width: 253px;
  height: 31px;
  object-fit: contain;
}

.navbar {
  background-color: white;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.navbar a {
  display: block;
  padding: 16px 20px;
  color: red;
  text-decoration: none;
  background-color: white;
  font-weight: normal;
  transition: all 0.3s ease;
}

.navbar a:hover {
  background-color: red;
  color: white;
}

.navbar ul ul {
  display: none;
  position: absolute;
  background-color: white;
  flex-direction: column;
  margin-top: 1px;
  z-index: 999;
}

.navbar ul li:hover > ul {
  display: flex;
}

.navbar ul ul a {
  background-color: white;
  color: red;
}

.navbar ul ul a:hover {
  background-color: red;
  color: white;
}

.slider {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slider img {
  width: 100%;
  height: auto; /* ✅ Show full image height */
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* ✅ Center the image */
}

.slider img.active {
  display: block;
  z-index: 1;
}


.kline-footer {
  background-color: #1a1a1a;
  color: #ccc;
  font-size: 14px;
  text-align: center;
  padding: 60px 20px;
}

.kline-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links span {
  color: #666;
}

.footer-copy {
  font-size: 13px;
  color: #999;
}

/* Responsive stack (optional if more links added later) */
@media (max-width: 600px) {
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links span {
    display: none;
  }
}

html, body {
  height: 100%;
 
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1;
}

