/* Font Classes */
.orbitron { font-family: 'Orbitron', sans-serif; }
.kanit { font-family: 'Kanit', sans-serif; font-weight: 200; }

/* Header Styles */

header {
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  margin: 0 auto;
  padding: 15px 0;
  border-bottom: 2px solid #000000;
  align-items: center;
  justify-content: space-between;
}

.orbitron {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-right: 15px;
}

#right {
  display: flex;
  margin-left: auto;
  padding-top: 0;
}

/* Updated Button Styles with Hover Effect */
.btn-underline {
  background: transparent;
  border: none;
  font-family: 'Kanit', sans-serif;
  padding: 10px 20px;
  position: relative;
  cursor: pointer;
  font-weight: 300;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  white-space: nowrap;
  color: black;
  transition: all 0.3s ease;
  transform: scale(1);
}

.btn-underline:hover {
  color: #333;
  transform: scale(1.05);
}

.btn-underline::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 5px;
  left: 50%;
  background: black;
  transition: all 0.3s ease;
}

.btn-underline:hover::after {
  width: 100%;
  left: 0;
}

.get-started-btn {
  background-color: black;
  color: white;
  padding: 8px 16px;
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  font-family: sans-serif;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-left: 15px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.get-started-btn:hover {
  background-color: #fffbfb09;
  color: black;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.arrow {
  margin-left: 8px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.get-started-btn:hover .arrow {
  transform: translateX(3px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px 10px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  header {
    padding: 10px 0;
  }
  
  #right {
    display: none;
    width: 100%;
    margin: 10px 0 0 0;
    flex-direction: column;
    align-items: flex-start;
  }
  
  #right.active {
    display: flex;
  }
  
  .btn-underline {
    padding: 10px 0;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #eee;
  }
  
  .btn-underline:hover {
    transform: none;
  }
  
  .get-started-btn {
    margin: 10px 0 0 0;
    width: 100%;
    justify-content: center;
  }
  
  .mobile-menu-btn {
    display: block;
    order: 1;
  }
  
  .orbitron {
    order: 0;
    margin-right: auto;
  }
  
  .get-started-btn {
    order: 2;
    margin-left: 0;
  }
}
.arrow {
  margin-left: 8px;
  font-size: 18px;
}

#banner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 95%;
  background-color: black;
  margin: 0 auto;
  padding: 20px 0;
  align-items: center;
  justify-content: center;
}

#banner h2 {
  color: white;
  font-size: clamp(2rem, 8vw, 4rem); /* Responsive font size */
  margin: 0 5%;
  order: 1;
  width: 100%;
  text-align: center;
}

#bannerporsche {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  order: 2;
  margin: 20px auto;
  width: 80%;
}

#beside {
  object-fit: contain;
  max-width: 100%;
  height: auto;
  order: 3;
  margin: 20px auto;
  width: 80%;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  #banner {
    flex-wrap: nowrap;
    justify-content: space-between;
    height: auto;
    padding: 40px 0;
  }
  
  #banner h2 {
    width: auto;
    order: 0;
    text-align: left;
    margin-left: 5%;
    margin-right: auto;
  }
  
  #bannerporsche {
    width: 50%;
    max-width: 600px;
    margin: 0 auto;
    order: 1;
  }
  
  #beside {
    width: 21%;
    max-width: 300px;
    margin: 0 5% 0 auto;
    order: 2;
  }
}

@media (max-width: 480px) {
  #banner {
    padding: 15px 0;
  }
  
  #bannerporsche,
  #beside {
    width: 95%;
  }
}

#beside {
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
  max-width: 21%;
}

/* Content Styles */
h3 {
  font-size: 250%;
  text-align: center;
  margin: 4.5%;
}

/* Slider Styles */
.slider-container {
  width: 95%;
  margin: 50px auto;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  animation: scroll 20s linear infinite;
  width: calc(250px * 10);
}

.slide {
  width: 250px;
  height: 160px;
  flex-shrink: 0;
  margin-right: 20px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 5)); }
}




/* Footer Styles */
footer {
  border-top: 2px solid #535353;
  display: flex;
  flex-direction: row;
}

footer p {
  padding-top:2%;
  padding-left:1.25%;
}

footer a {
  padding-top:2.9%;
  padding-left:1.25%;
  font-size: 125%;
  color: black;
  text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .slide {
    width: 200px;
    height: 130px;
  }
  .slider-track {
    width: calc(200px * 10);
    animation-duration: 15s;
  }
  @keyframes scroll {
    100% { transform: translateX(calc(-200px * 5)); }
  }
}

a {
  text-decoration: none;
  color: #000000; /* For Example */
}

.combined-spec-cta {
  --matte-black:rgb(0, 0, 0);
  --matte-dark: #000000;
  --matte-border: #333333;
  --matte-text: #E6E6E6;
  --matte-secondary: #A3A3A3;
  --matte-accent:rgb(255, 255, 255);
  
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  font-family: "Times New Roman", Times, serif;
  margin-bottom:2%;
}

/* Specification Column */
.spec-column {
  flex: 1.5;
  background: var(--matte-black);
  padding: 40px;
  border-right: 1px solid var(--matte-border);
}

.spec-header {
  border-bottom: 1px solid var(--matte-border);
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.spec-header h2 {
  font-weight: 600;
  font-size: 26px;
  color: white;
  margin: 0 0 8px 0;
}

.model-subtitle {
  font-size: 13px;
  color: var(--matte-secondary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-family: 'JetBrains Mono', monospace;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
}

.spec-item {
  margin-bottom: 15px;
}

.spec-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--matte-secondary);
  margin-bottom: 6px;
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
}

.spec-value {
  font-size: 15px;
  font-weight: 400;
  color: var(--matte-text);
  line-height: 1.6;
}

.highlight {
  color: var(--matte-accent);
  font-weight: 500;
}

.price-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--matte-border);
}

.price-label {
  font-size: 13px;
  color: var(--matte-secondary);
  margin-bottom: 6px;
  font-family: 'JetBrains Mono', monospace;
}

.price-value {
  font-size: 22px;
  font-weight: 600;
  color: white;
}

.currency {
  font-size: 15px;
  color: var(--matte-secondary);
  font-weight: 400;
}

/* CTA Column */
.cta-column {
  flex: 1;
  background: linear-gradient(98deg, var(--matte-black) 0%, var(--matte-dark) 100%);
  padding: 50px;
  display: flex;
  align-items: center;
}

.cta-content {
  width: 100%;
}

.cta-column h3 {
  font-size: 28px;
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.cta-column p {
  color: var(--matte-secondary);
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-button-container {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.cta-button {
  background: var(--matte-accent);
  
  border: none;
  padding: 16px 40px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background:rgb(0, 0, 0);
  color:white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(93, 138, 168, 0.3);
}

.disclaimer {
  font-size: 12px;
  color: #666;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 900px) {
  .combined-spec-cta {
      flex-direction: column;
  }
  
  .spec-column {
      border-right: none;
      border-bottom: 1px solid var(--matte-border);
  }
  
  .cta-column {
      padding: 40px;
  }
}

@media (max-width: 600px) {
  .spec-grid {
      grid-template-columns: 1fr;
  }
  
  .spec-column, .cta-column {
      padding: 30px;
  }
  
  .cta-column h3 {
      font-size: 24px;
  }
}


.performance-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  gap: 60px;
  align-items: center;

}

.image-column {
  flex: 0 0 45%;
}

.text-column {
  flex: 1;
}

.performance-image {
  width: 100%;
  height: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.performance-heading {
 font-size: clamp(1.5rem, 4vw, 2.5rem) 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  color: #000;
  line-height: 1.3;
}

.performance-body {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0;
}

.performance-body sup {
  font-size: 0.7rem;
  vertical-align: super;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .performance-container {
    flex-direction: column;
    padding: 20px;
    gap: 30px;
  }
  
  .image-column {
    flex: 1;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .performance-heading {
    font-size: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .performance-heading {
    font-size: 1.3rem;
  }
  
  .performance-body {
    font-size: 1rem;
  }
}

.feature-content-right-image {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  gap: 60px;
  align-items: center;
}

.feature-image-wrapper {
  order: 2;
  flex: 0 0 48%;
}

.feature-text-content {
  order: 1;
  flex: 1;
}

.feature-right-image {
  width: 100%;
  height: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  object-fit: cover;
  min-height: 320px;
}

.feature-main-heading {
  font-size: clamp(1.5rem, 4vw, 2.5rem) 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  color: #000;
  line-height: 1.3;
}

.feature-description {
 font-family: "Times New Roman", Times, serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0;
}

.feature-description sup {
  font-size: 0.7rem;
  vertical-align: super;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .feature-content-right-image {
    flex-direction: column;
  }
  
  .feature-image-wrapper {
    order: 1;
    width: 100%;
    max-width: 500px;
    margin-bottom: 25px;
  }
  
  .feature-text-content {
    order: 2;
  }
  
  .feature-right-image {
    min-height: 250px;
  }
}

@media (max-width: 480px) {
  .feature-content-right-image {
    padding: 20px 15px;
    gap: 20px;
  }
  
  .feature-main-heading {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .feature-description {
    font-size: 1rem;
  }
}

body{
  font-family: "Times New Roman", Times, serif;
}