:root {
    --ktm-orange: #ef3e36; /* A slightly brighter orange like in the image */
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #1a1a1a;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    background-color: #000;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
    animation: fadeIn 1s ease-in-out;
}

.logo-container {
    background-color: transparent;
    padding: 0;
    margin-left: 0;
}

.logo {
    height: 90px;
    width: auto;
    display: block;
}

/* New Right-Side Navigation */
.right-nav {
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    align-items: center;
    background-color: #ef3e36; /* Red color from screenshot */
    border-radius: 50px;
    padding: 8px 15px;
}

.nav-container a {
    color: black;
    text-decoration: none;
    font-family: 'DotGothic16', sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin: 0 15px;
    letter-spacing: 1px;
}

.nav-lines {
    margin-right: 15px;
}

.nav-lines span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: white;
    margin: 4px 0;
}

.nav-icon {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.nav-icon svg {
    stroke: white;
    fill: white;
}

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

.main-nav ul li {
    margin: 0 15px;
}

.main-nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.arrow-down {
    border: solid white;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    margin-left: 8px;
}

.header-buttons {
    display: flex;
}

.btn {
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 20px;
    margin-left: 10px;
    text-align: center;
}

.btn-outline {
    background-color: var(--ktm-orange);
    color: var(--text-light);
}

/* HERO SECTION REDESIGN */
.hero-section {
  height: 100vh;
  position: relative;
  z-index: 1;
}

.hero-box {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-bike-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.hero-info {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, rgba(0,0,0,0.6) 80%, rgba(0,0,0,0.0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 48px;
  z-index: 2;
}

.hero-info h1 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.hero-info h2 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.hero-info h3 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 24px 0;
}

.hero-info .btn-primary {
  background: var(--ktm-orange);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 32px;
  border-radius: 2px;
  border: none;
  letter-spacing: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.2s;
  text-decoration: none;
}

.hero-info .btn-primary:hover {
  background: #ff9800;
}

@media (max-width: 900px) {
  .hero-box { height: 50vh; }
  .hero-info { width: 60%; padding-left: 24px; }
  .hero-info h1 { font-size: 32px; }
  .hero-info h2 { font-size: 20px; }
  .hero-info h3 { font-size: 16px; }
}

@media (max-width: 600px) {
  .main-header {
    left: 0;
    right: 0;
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0 0 0 0;
    border-radius: 0;
    height: 60px;
  }
  .hero-section {
    min-height: unset;
    height: auto;
    padding-bottom: 0;
    margin-top: 0;
  }
  .hero-box {
    flex-direction: column;
    height: auto;
    min-height: unset;
    position: relative;
  }
  .hero-bike-img {
    width: 100vw;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
  }
  .hero-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 80%, rgba(0,0,0,0.0) 100%);
    padding: 16px 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .hero-info h1 {
    font-size: 20px;
    word-break: break-word;
  }
  .hero-info h2 {
    font-size: 14px;
    word-break: break-word;
  }
  .hero-info h3 {
    font-size: 12px;
    word-break: break-word;
  }
  .hero-info .btn-primary {
    font-size: 12px;
    padding: 8px 16px;
  }
  .overlay-menu {
    top: 0;
    right: 0;
    left: 0;
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    border-radius: 0;
    padding: 16px 0 32px 0;
    box-sizing: border-box;
  }
  .overlay-header {
    padding: 0 16px;
  }
  .overlay-main-nav {
    width: 100%;
    padding: 0 0 0 0;
    margin: 0;
  }
  .overlay-main-nav a {
    font-size: 22px;
    margin: 18px 0;
    width: 100vw;
    max-width: 100vw;
    text-align: center;
    padding: 18px 0;
    box-sizing: border-box;
    border-radius: 0;
  }
  .demands-container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 0;
  }
  .demands-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 24px 0 0 0;
  }
  .rotating-sunflower {
    max-width: 420px;
    width: 90vw;
    margin: 0 auto;
    display: block;
  }
  .demands-content-wrapper {
    padding-left: 0;
    width: 100%;
  }
  .demands-header,
  .demands-description,
  .demands-footer {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 400px) {
  .hero-bike-img {
    height: 120px;
  }
  .hero-info {
    padding: 10px 4px;
  }
  .hero-info h1 {
    font-size: 16px;
  }
  .hero-info h2 {
    font-size: 12px;
  }
}

/* Remove old slider styles if not needed */
.slide, .slider-indicators { display: none !important; }

.side-feedback {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left top;
    background-color: var(--ktm-orange);
    padding: 10px 20px;
    cursor: pointer;
    z-index: 1000;
    margin-top: -60px; /* Manual adjustment */
}

.side-feedback span {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: var(--text-light);
    font-size: 16px;
    letter-spacing: 1px;
}

.side-actions {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--ktm-orange);
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.action-icon {
    color: var(--text-light);
    padding: 15px 10px;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
}

.action-icon svg {
    stroke: white;
}

.chatbot-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

.chatbot-icon img {
    width: 40px;
    height: 40px;
}

/* Configure Section */
.configure-section {
    padding: 200px 0;
    background-image: url('/images/ko-reads.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    text-align: center;
    position: relative;
}

.configure-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.configure-content {
    position: relative;
    z-index: 2;
}

.configure-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    letter-spacing: 2px;
}

.configure-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    color: var(--text-light);
    margin: 0 0 20px;
    font-weight: 400;
}

.btn-dark {
    display: inline-block;
    margin-top: 20px;
    background-color: rgba(68, 68, 68, 0.8);
    color: var(--text-light);
    padding: 15px 60px;
    letter-spacing: 2px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

/* Remove old menu styles */
.menu-toggle,
.main-nav {
    display: none !important;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .main-nav ul li {
        margin: 0 10px;
    }
    .main-nav ul li a {
        font-size: 14px;
    }
    .btn {
        font-size: 14px;
        padding: 8px 15px;
    }
}

@media (max-width: 992px) {
    .main-header {
        padding: 0 20px;
        width: calc(100% - 40px);
    }
    .logo-container {
        padding: 0;
        margin-left: 0;
    }

    .nav-container a {
        display: none; /* Hide text links on smaller screens */
    }

    .nav-container {
        padding: 8px;
    }
    
    .side-feedback, .side-actions {
        display: none;
    }
    .configure-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .slide, .slide.text-left {
        padding: 0 20px;
        justify-content: center;
    }
    .slide.text-left {
        text-align: center;
        padding-left: 20px;
    }
    .logo-container {
        padding: 10px 20px;
        margin-left: -20px;
    }
    .logo {
        height: 30px;
    }
    .configure-section {
        padding: 100px 20px;
    }
    .right-nav {
        margin-right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content h2 {
        font-size: 24px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .btn {
        font-size: 14px;
        padding: 10px 15px;
    }
    .chatbot-icon {
        width: 50px;
        height: 50px;
    }
    .chatbot-icon img {
        width: 30px;
        height: 30px;
    }
    .configure-content h2 {
        font-size: 28px;
    }
    .btn-dark {
        padding: 12px 40px;
    }
}

/* Review Section */
.review-section {
    padding: 100px 20px;
    background-color: white;
    text-align: center;
}

.review-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 50px 0;
}

.review-grid {
    column-count: 4;
    column-gap: 20px;
}

.review-item {
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.review-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.review-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.review-item:hover .review-overlay {
    opacity: 1;
}

.review-overlay p {
    font-family: 'Roboto', sans-serif;
    margin: 0 0 10px 0;
}

.star-rating {
    font-size: 24px;
    color: #ffd700;
}

.see-all-container {
    margin-top: 40px;
    text-align: center;
}

.btn-outline-dark {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: var(--text-dark);
    color: white;
}

@media (max-width: 1200px) {
    .review-grid {
        column-count: 3;
    }
}

@media (max-width: 992px) {
    .review-grid {
        column-count: 2;
    }
    .review-section h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .review-grid {
        column-count: 1;
    }
}

/* Footer */
.main-footer-container {
    background-color: #000;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a,
.footer-social a {
    color: white;
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    margin: 0 15px;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.3); /* Subtle glow to mimic screenshot */
}

.footer-links a:first-child,
.footer-social a:first-child {
    margin-left: 0;
}

.footer-links a:last-child,
.footer-social a:last-child {
    margin-right: 0;
}

@media (max-width: 992px) {
    .main-footer-container {
        flex-direction: column;
        padding: 30px 20px;
    }
    .footer-links, .footer-social {
        margin-bottom: 20px;
        text-align: center;
    }
     .footer-social {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .footer-links, .footer-social {
        display: flex;
        flex-direction: column;
    }
    .footer-links a, .footer-social a {
        margin: 10px 0;
    }
}

/* Features Section */
.features-section {
    display: flex;
    width: 100%;
    height: 100vh;
    background-color: #000;
}

.feature-panel {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: flex 0.4s ease-in-out;
}

.feature-panel:not(:last-child) {
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
}

.feature-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}

.feature-panel:hover {
    flex: 1.5;
}

#feature-performance { background-image: url('/images/kommute.jpg'); }
#feature-suspension { background-image: url('/images/konnect.jpg'); }
#feature-design { background-image: url('/images/kreate.jpg'); }
#feature-technology { background-image: url('/images/ko-reads.jpg'); }

.feature-panel .feature-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: white;
}

.feature-panel#feature-suspension .feature-content {
    top: 0;
    bottom: auto;
    padding: 50px 40px 0 20px;
}

.feature-panel#feature-suspension h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.feature-panel#feature-suspension p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    max-width: 300px;
}

.suspension-icon {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
}

.suspension-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ef3e36;
    margin-bottom: 5px;
    transform: skewX(-20deg);
}

.vertical-text {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 8px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    position: absolute;
    left: 30px;
    bottom: 30px;
}

.menu-toggle {
    display: none;
}

/* Overlay Menu */
.overlay-menu {
    position: fixed;
    top: 90px;
    right: 50px;
    width: 380px;
    background: #e9e9e9;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transform-origin: top right;
    transition: opacity 0.3s ease, visibility 0s 0.3s, transform 0.3s ease;
}

.overlay-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition: opacity 0.3s ease, visibility 0s 0s, transform 0.3s ease;
}

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

.overlay-close-btn {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #333;
}

.overlay-title, .overlay-main-nav a, .overlay-footer a {
    font-family: 'DotGothic16', sans-serif;
    color: #333;
    text-decoration: none;
}

.overlay-title {
    font-size: 18px;
}

.overlay-bag-icon {
    cursor: pointer;
}

.overlay-main-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    margin: 20px 0;
}

.overlay-main-nav a {
    font-size: 28px;
    margin: 10px 0;
    text-align: center;
    font-family: 'DotGothic16', cursive;
}

.overlay-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    border-top: 1px solid #ccc;
    margin-top: 10px;
}

.overlay-footer a {
    font-size: 14px;
    margin: 0 12px;
}

/* Make menu trigger clickable */
.nav-lines {
    cursor: pointer;
}

.footer-links a:first-child,
.footer-social a:first-child {
    margin-left: 0;
}

@media (max-width: 768px) {
    .footer-links, .footer-social {
        display: flex;
        flex-direction: column;
    }
    .footer-links a, .footer-social a {
        margin: 10px 0;
    }
    .overlay-main-nav a {
        font-size: 24px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Demands Section */
.demands-section {
    background-color: #63c5d6;
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
    font-family: 'Oswald', sans-serif;
}

.demands-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
}

.demands-content-wrapper {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 60px;
}

.demands-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rotating-sunflower {
    width: 100%;
    max-width: 350px;
    animation: rotate 20s linear infinite;
}

.demands-header,
.demands-description,
.demands-footer {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    text-align: left;
}

.demands-header p,
.demands-header h2 {
    margin-left: 0;
    padding-left: 0;
}

.demands-header p {
    font-weight: 700;
    font-size: 18px;
    color: #0d2c4f;
    margin: 0;
}

.demands-header h2 {
    font-size: 90px;
    font-weight: 700;
    color: white;
    margin: 0 0 40px 0;
    line-height: 1;
    letter-spacing: 1px;
}

.demands-grid {
    color: #0d2c4f;
    padding: 20px 0;
}

.demands-description {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    line-height: 1.6;
    font-weight: 500;
    max-width: 800px;
    margin: 0;
    text-align: left;
}

.demands-footer {
    margin-top: 40px;
    text-align: left;
}

.btn-who-we-are {
    background-color: #000;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
}

.demands-bg-symbol {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 650px;
    height: 650px;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/3/34/Extinction_Rebellion_symbol.svg/600px-Extinction_Rebellion_symbol.svg.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
}

@media (max-width: 992px) {
    .demands-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .demands-header h2 {
        font-size: 70px;
    }
    .demands-bg-symbol {
        right: -200px;
    }
}

@media (max-width: 768px) {
    .demands-section {
        padding: 80px 20px;
    }
    .demands-header h2 {
        font-size: 50px;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.what-you-can-do-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    border-radius: 24px;
    padding: 8px 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
    z-index: 10;
    letter-spacing: 1px;
    margin: 0 auto;
}

.features-section-bg {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #000;
    min-height: 80px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
} 