@font-face {
    font-family: 'Korataki';
    src: url('../Korataki/korataki.otf') format('opentype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
:root {
    --font-family: 'Korataki', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --black: #0a0a0a;
    --white: #ffffff;
    --accent: #00aba2;
    --gray: #bfbfbf;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: var(--font-family);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.7;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(5px);
    z-index: 1000;
}

nav {
    max-width: 1700px;
    margin: auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
}

.logo:visited,
.logo:hover,
.logo:active {
    color: var(--white);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    font-size: 0.8rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 300;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent);
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links .dropdown > a.active::after,
.nav-links .nav-item.dropdown > a.active::after {
    width: 0;
}

.nav-links .dropdown:hover > a::after,
.nav-links .nav-item.dropdown:hover > a::after,
.nav-links .dropdown:focus-within > a::after,
.nav-links .nav-item.dropdown:focus-within > a::after {
    width: 100%;
}

.nav-links .dropdown {
    position: relative;
    padding-bottom: 10px;
}

.dropdown-menu {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid var(--accent);
    border-radius: 4px;
    list-style: none;
    min-width: 220px;
    backdrop-filter: blur(5px);
    z-index: 1001;
    padding: 8px 0;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.8rem;
    position: relative;
    transition: 0.3s;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(0, 171, 162, 0.1);
    color: var(--accent);
}

.dropdown-menu a::after {
    display: none;
}

.nav-links .dropdown:hover .dropdown-menu,
.nav-links .dropdown:focus-within .dropdown-menu,
.nav-links .nav-item.dropdown:hover .dropdown-menu,
.nav-links .nav-item.dropdown:focus-within .dropdown-menu {
    display: flex;
}

.logo img {
    max-width: 80px;
    max-height: 40px;
    width: auto;
    height: auto;
    margin-right: 0;
    padding-top: 0;
}

.hero {
    height: 100vh;
    background: linear-gradient(black),
    url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20%;
}

.hero h1 {
    font-size: 2.5rem;
    max-width: 1000px;
    text-shadow: 0 8px 5px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 1rem;
    color: var(--gray);
    margin: 20px 0 40px;
    max-width: 600px;
}

.btn {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 800px;
    font-weight: 600; /* numeric, no px */
    display: inline-block;
    padding: 15px 32px;
    border: 2px solid var(--white);
    font-size: 17px;
    color: var(--white);
    text-decoration:none;
    transition: 0.6s;
    width: fit-content;
}

.btn:hover {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
}
section {
    padding: 90px 8%;
}

.container {
    max-width: 1300px;
    margin: auto;
}

h1, h2 {
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}
h3{
    font-size: 2.6rem;
    margin-bottom: 20px;
    scroll-margin-top: 100px;
}
.about-preview,

.about-page {
    background: var(--white);
    color: rgb(255, 255, 255);
    background-image:
    linear-gradient(
      rgb(0, 0, 0),
      rgb(0, 0, 0),
      rgba(0, 171, 162, 0.6)
    ),
    url('../images/logo1.png');
    transition: background 0.9s ease;
}

.about-page p {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
    max-width: 1300px;
    margin: 20px 0;
    font-size: 1.2rem;
    text-align: justify;
}
.about-page h2 {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
    text-shadow: #0a0a0a 5px 5px 5px;
    scroll-margin-top: 100px;
} 
.about-page h1 {
    text-align: left;
    margin-bottom: 20px;
    margin-top: 40px;
    font-size: 20px;
    font-weight: 300;
    text-shadow: #919191 5px 5px 5px;
    scroll-margin-top: 100px;
}
.about-image {
    width: 50%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    border-radius: 12px;
    box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.6);
}

.first h2{
    text-align: center;
    margin-bottom: 5px;
    margin-top: 75px;
    font-size: 27px;
    font-weight: 100;
    text-shadow: #767575 5px 5px 5px;
}
.third h1{
    text-align: center;
    margin-bottom: 5px;
    margin-top: 75px;
    font-size: 27px;
    font-weight: 100;
    text-shadow: #000000 5px 5px 5px;
}
.second h1{
    text-align: center;
    margin-bottom: 5px;
    margin-top: 75px;
    font-size: 27px;
    font-weight: 100;
    text-shadow: #767575 5px 5px 5px;
}
.third h1{
    text-align: center;
    margin-bottom: 5px;
    margin-top: 75px;
    font-size: 27px;
    font-weight: 100;
    text-shadow: #989898 5px 5px 5px;
}
.fourth h1{
    text-align: center;
    margin-bottom: 5px;
    margin-top: 75px;
    font-size: 27px;
    font-weight: 100;
    text-shadow: #767575 5px 5px 5px;
}
/* Categories Layout - Vertical alternating design */
.categories-container {
    margin: 60px 0;
    max-width: 1200px;
}

.category-item {
    margin: 50px 0;
    padding: 40px;
    position: relative;
}

.category-item:nth-child(1) {
    text-align: left;
    padding-left: 60px;
    border-left: 5px solid var(--accent);
}

.category-item:nth-child(2) {
    text-align: right;
    padding-right: 60px;
    border-right: 5px solid var(--accent);
}

.category-item:nth-child(3) {
    text-align: left;
    padding-left: 60px;
    border-left: 5px solid var(--accent);
}

.category-abbr {
    font-size: 6rem;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 30px rgba(0, 171, 162, 0.5);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 5px;
}

.category-full {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.category-item p {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 700px;
    margin: 0;
}

.category-item:nth-child(2) p {
    margin-left: auto;
}

@media (max-width: 900px) {
    .category-item,
    .category-item:nth-child(2) {
        text-align: left;
        padding-left: 30px;
        padding-right: 20px;
        border-left: 3px solid var(--accent);
        border-right: none;
    }
    
    .category-abbr {
        font-size: 4rem;
    }
    
    .category-item p,
    .category-item:nth-child(2) p {
        margin: 0;
    }
}

/* Static Events Cards Design */
.static-events {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin: 60px 0;
    max-width: 1300px;
}
.dinamic-events {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin: 60px 0;
    max-width: 1300px;
}

.dinamic-events .event-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.event-card {
    background: rgba(10, 10, 10, 0.6);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 171, 162, 0.2);
}

.static-events .event-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 171, 162, 0.3);
}

.event-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.event-card:hover .event-image {
    transform: scale(1.1);
}

.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 25px 20px;
}

.event-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.event-content {
    padding: 25px;
}

.event-list {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin: 10px 0 20px 20px;
    text-align: left;
}
.event-content p {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white);
    margin: 0;
    text-align: left;
}

@media (max-width: 900px) {
    .static-events {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .event-title {
        font-size: 1.4rem;
    }
}

/* Timeline Achievements */
.timeline-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 20px auto 60px auto;
    padding: 60px 20px;
}

.timeline-line {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), rgba(5, 114, 109, 0.526));
    z-index: 1;
}

.timeline-year {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.year-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.year-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--black);
    border: 4px solid var(--accent);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.year-label {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

.year-results {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 171, 162, 0.95);
    padding: 15px 18px;
    border-radius: 8px;
    min-width: 300px;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 10;
    margin-bottom: 15px;
}

.year-results::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(0, 171, 162, 0.95);
}

.year-results h3 {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 700;
}

.year-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.year-results ul li {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    padding: 5px 0;
    padding-left: 16px;
    color: var(--white);
    position: relative;
    font-size: 0.85rem;
    line-height: 1.4;
}

.year-results ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
}

.timeline-year:hover .year-results {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.timeline-year:hover .year-dot {
    transform: scale(1.3);
    background: var(--accent);
    box-shadow: 0 0 20px rgba(0, 171, 162, 0.6);
}

.timeline-year:hover .year-label {
    color: var(--accent);
    transform: scale(1.1);
}

.timeline-year.active .year-dot {
    box-shadow: 0 0 30px rgba(0, 171, 162, 0.8);
    animation: pulse 2s infinite;
}

.timeline-year.active .year-label {
    color: var(--accent);
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@media (max-width: 900px) {
    .timeline-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .timeline-line {
        top: 0;
        left: 20px;
        bottom: 0;
        right: auto;
        width: 4px;
        height: auto;
        background: linear-gradient(180deg, var(--accent), rgba(0, 171, 162, 0.3));
    }
    
    .timeline-year {
        flex-direction: row;
        margin-bottom: 40px;
    }
    
    .year-marker {
        flex-direction: row;
        margin-right: 20px;
    }
    
    .year-label {
        margin-top: 0;
        margin-left: 15px;
    }
    
    .year-results {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        margin-left: 80px;
    }
    
    .year-results::before {
        left: -10px;
        top: 20px;
        border-right-color: rgba(0, 171, 162, 0.95);
        border-bottom-color: transparent;
    }
}

.team-page {
    padding: 120px 8%;
    align-content: center;
    margin: auto;
}
.team-page h1 {
    text-align: center;
    margin-bottom: 60px;
}
.team-page h3 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
    padding-top: 25px;
    
}
.team-page h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 20px;
    padding-top: 40px;
    text-shadow: #aaaaa9 5px 5px 5px;
    cursor: pointer;
}
.team-page h2:after {
    box-sizing: border-box;
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.team-page p {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-align: center;
    margin-bottom: 30px;
}
.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}
.vaz-members {
   display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.motor-members {
   display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.aero-members {
   display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.futomu-members {
   display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.elektro-members {
   display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.hybrid-members {
   display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.marketing-members {
   display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.penzugy-members {
   display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.member-card {
    background: #111;
    border: 1px solid #222;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}

.member-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.member-card img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    cursor: pointer;
}

.member-card h3 {
    margin-bottom: 5px;
}

.member-card p {
    color: var(--accent);
}

.member-card .role-desc {
    color: var(--gray);
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 10px;
}

.leader-card {
    background: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
}

.leader-card:hover {
    transform: none;
    border-color: transparent;
}

.leader-card .role-desc {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.leader-card img:hover ~ .role-desc {
    opacity: 1;
    max-height: 320px;
}

/* =========================
   CAR PAGE
========================= */

.car-page ul {
    list-style: none;
    margin-top: 20px;
}

.car-page ul li {
    padding: 10px 0;
    border-bottom: 1px solid #222;
}

.car-gallery {
    background: #0b0b0b;
}

.car-hero {
    padding-top: 160px;
    background: radial-gradient(circle at top, rgba(0, 171, 162, 0.2), transparent 55%);
}

.car-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 50px;
}

.car-hero-text h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.car-hero-text p {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
    color: #d9d9d9;
    max-width: 600px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.car-hero-media img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.car-selector {
    background: #0f0f0f;
}

.section-lead {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
    color: #cfcfcf;
    max-width: 700px;
    margin-bottom: 25px;
}

.car-selector-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.car-chip {
    border: 1px solid #2a2a2a;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--white);
    font-size: 0.85rem;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.02);
}

.car-chip:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.car-story {
    background: linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
}

.car-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.story-text p {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
    color: #d6d6d6;
    margin-bottom: 18px;
}

.story-media img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.car-profile {
    border-top: 1px solid #1a1a1a;
}

.car-profile-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.car-profile.reverse .car-profile-inner {
    direction: rtl;
}

.car-profile.reverse .car-profile-text,
.car-profile.reverse .car-profile-media {
    direction: ltr;
}

.car-profile-text p {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
    color: #d9d9d9;
}

.car-highlights {
    margin-top: 20px;
}

.car-highlights li {
    padding: 8px 0 8px 20px;
    position: relative;
}

.car-highlights li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 16px;
}

.car-profile-media img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.car-gallery .container h2 {
    text-align: center;
    margin-bottom: 30px;
}

.car-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.car-gallery-grid img {
    width: 100%;
    border-radius: 12px;
    transition: 0.3s;
}

.car-gallery-grid img:hover {
    transform: scale(1.03);
}

.car-catalog {
    background: #0b0b0b;
}

.car-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
    margin-top: 30px;
}

.car-card {
    display: grid;
    grid-template-rows: auto 1fr;
    text-decoration: none;
    color: var(--white);
    border: 1px solid #1f1f1f;
    border-radius: 16px;
    overflow: hidden;
    background: #101010;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.car-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.car-card-body {
    padding: 18px 20px 22px;
}

.car-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.car-card-body p {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
    color: #cfcfcf;
}

.car-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 900px) {
    .car-hero-grid,
    .car-story-grid,
    .car-profile-inner {
        grid-template-columns: 1fr;
    }

    .car-hero {
        padding-top: 140px;
    }
}

/* =========================
   CONTACT PAGE
========================= */

.contact-page form {
    max-width: 1150px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
}

.contact-page input,
.contact-page textarea {
    background: transparent;
    border: 1px solid #333;
    padding: 14px;
    color: var(--white);
    font-size: 1rem;
}

.contact-page input:focus,
.contact-page textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.contact-container
{
    margin-top: 50px;
    max-width: 1300px;
   
}
.contact-container h1
{
    max-width: 1200px;
    margin: auto;
    font-size: 35px;
    text-align: center;
    font-weight: 300;
    padding-bottom: 5px;

}
.contact-container p
{
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    max-width: 1300px;
    margin: auto;
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    
}

.contact-page input,
.contact-page textarea {
    width: 1150px;
    background: transparent;
    border: 1px solid #333;
    padding: 14px;
    color: var(--white);
    font-size: 1rem; 
    
}
.contact-page button {
    width: 200px;
    align-self: center;
    margin-top: 20px;
    background-color: transparent;
}
footer {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #050505;
    text-align: center;
    padding: 20px 20px;
    color: #d6d5d5;
    font-size: 0.8rem;
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    nav {
        padding: 15px 20px;
    }
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 120px 10%;
 background: linear-gradient(black,black,#00aba328);
 text-align: center;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: 20px;
  background: linear-gradient(black,black,#00aba2);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 30px rgba(0,171,162,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(0,171,162,0.4);
  text-align: center;
}

.stat-number {
  font-size: 4rem;
  font-weight: 800;
  color: #00aba2;
  display: block;
  margin-bottom: 10px;
  text-align: center;
}

.stat-card p {
  color: #ddd;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-align: center;
}
.team-contacts {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.member-card {
    background: #111;
    color: #fff;
    padding: 20px;
    width: 270px;
    text-align: center;
    border-radius: 10px;
}

.member-card img {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}

.members-card {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.782), rgba(0, 0, 0, 0.355), #00aba2);
    color: #fff;
    padding: 20px;
    width: 270px;
    text-align: center;
    border-radius: 10px;
}

.members-card img {
   width: 170px;
    object-fit: cover;
    
    margin-bottom: 10px;
}
.member-card h3 {
    margin-bottom: 5px;
    font-size: 21px;
}
.member-card p {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin-bottom: 5px;
    font-size: 21px;
}
.linkedin-icon {

    width: 40px;
    height: 40px; 
    max-width: 40px; 
    max-height: 40px; 
    object-fit: contain;
    margin-top: 8px;
    transition: transform 0.2s ease;
}

.linkedin-icon:hover {
    transform: scale(1.15);
}
.email 
{
    font-size: 15px;
    color: var(--accent);
    text-align: center;
    margin-bottom: 30px;
}
.email:after
{
    color:#00aba2
}
.email h2{
    font-size: 21px;
    margin-bottom: 5px;
}
.email a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 300;
    font-size: 16px;
    transition: 0.3s;
    display: inline-block;
    position: relative;
    cursor: pointer;
}
.email a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent);
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}
.email a:hover {
    color: var(--white);
}
.email a:hover::after {
    width: 100%;
}
.email-copy-tip {
    font-size: 12px;
    color: var(--gray);
    margin-top: 10px;
    font-style: italic;
}
/* Map */
.map-container {
    margin-top: 60px;
    text-align: center;
}

.map-container iframe {
    width: 90%;
    max-width: 800px;
    height: 400px;
    border: none;
    border-radius: 12px;
}
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    align-items: center;
}

.split-section.light {
    background: var(--white);
    color: var(--black);
}

.split-section.dark {
    background: var(--black);
}

.split-text {
    padding: 50px;
    

}
.split-text h2 {
    max-width: 455px;
    text-shadow: #00aba2 5px 5px 5px;
}
.split-text p {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 800px;
    font-weight: 600; /* numeric, no px */
    max-width: 600px;
    margin: 30px 0;
    font-size: 1.2rem;
    text-align: justify;
    ;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-align: center;
    box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.6);
}

/* Dark button variant */
.btn.dark {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 800px;
    font-weight: 600; /* numeric, no px */
    border-color: var(--black);
    border-width: 2px;
    color: var(--black);
    font-size: 16px;
}

.btn.dark:hover {
    background: var(--black);
    color: var(--white);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .split-section {
        grid-template-columns: 1fr;
    }

    .split-text {
        padding: 40px;
    }
}

.sponsors {
    background: var(--black);
    color: var(--white);
    padding: 120px 8%;
}

.sponsors h2 {
    text-align: center;
}

.sponsors-intro {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 800px;
    font-weight: 600;
    max-width: 900px;
    font-size: 1.2rem;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 60px;
}

.sponsor-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 80px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
}

.sponsor-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 2px;
}       

.sponsors-grid {
   display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.sponsor-card {
    max-width: 220px;
    background: transparent;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: 0.3s;
}

.sponsor-card img {

    max-width: 140px;
    max-height: 80px;
    filter: grayscale(100%);
    transition: 0.3s;
   
}

.sponsor-card:hover {
    border-color: transparent;
}

.sponsor-card:hover img {
    filter: grayscale(0%);
}

.sponsor-card.diamond {
    position: relative;
    border-radius: 8px;
    transition: 0.3s;
    padding: 35px;
}

.sponsor-card.diamond img {
     max-width: 170px;
  filter:
   drop-shadow(0 0 20px #00aba2)
    drop-shadow(0 0 25px rgba(0, 171, 162, 0.5))
    drop-shadow(0 0 50px rgba(0, 171, 162, 0.25));
  transition: transform 0.5s ease, filter 0.5s ease;
}

.sponsor-card.diamond:hover {
    box-shadow: 0 0 35px rgba(0, 171, 162, 0.7), 0 0 70px rgba(0, 171, 162, 0.4);
}

.sponsor-card.diamond:hover img {
    filter: grayscale(0%) brightness(1.2);
}
.sponsor-card.gold {
    position: relative;
    border-radius: 8px;
    transition: 0.3s;
    padding: 35px;
}

.sponsor-card.gold img {
     max-width: 170px;
  filter:
   drop-shadow(0 0 20px #abab00)
    drop-shadow(0 0 25px rgba(168, 171, 0, 0.5))
    drop-shadow(0 0 50px rgba(168, 171, 0, 0.25));
  transition: transform 0.5s ease, filter 0.5s ease;
}
.sponsor-card.gold:hover {
    box-shadow: 0 0 35px rgba(168, 171, 0, 0.7), 0 0 70px rgba(168, 171, 0, 0.4);
}

.sponsor-card.gold:hover img {
    filter: grayscale(0%) brightness(1.2);
}
.sponsor-card.silver img {
    max-width: 160px;
}
.sponsor-card img.sponsor-large {
  max-width: none;    
  width: 180px;       
  height: auto;
}
.sponsor-card.silver {
    position: relative;
    border-radius: 8px;
    transition: 0.3s;
    padding: 35px;
}

.sponsor-card.silver img {
     max-width: 170px;
  filter:
   drop-shadow(0 0 20px #aaaaa9)
    drop-shadow(0 0 25px rgba(161, 161, 161, 0.5))
    drop-shadow(0 0 50px rgba(161, 161, 161, 0.25));
  transition: transform 0.5s ease, filter 0.5s ease;
}
.sponsor-card.silver:hover {
    box-shadow: 0 0 35px rgba(161, 161, 161, 0.7), 0 0 70px rgba(161, 161, 161, 0.4);
}

.sponsor-card.silver:hover img {
    filter: grayscale(0%) brightness(1.2);
}
.sponsor-card.bronze {
    position: relative;
    border-radius: 8px;
    transition: 0.3s;
    padding: 35px;
}

.sponsor-card.bronze img {
     max-width: 170px;
  filter:
   drop-shadow(0 0 20px #8a4504)
    drop-shadow(0 0 25px rgba(155, 95, 11, 0.5))
    drop-shadow(0 0 50px rgba(155, 95, 11, 0.25));
  transition: transform 0.5s ease, filter 0.5s ease;
}

.sponsor-card.bronze:hover {
    box-shadow: 0 0 35px rgba(155, 95, 11, 0.7), 0 0 70px rgba(155, 95, 11, 0.4);
}

.sponsor-card.bronze:hover img {
    filter: grayscale(0%) brightness(1.2);
}
.sponsor-card.other {
    position: relative;
    border-radius: 8px;
    transition: 0.3s;
    padding: 35px;
}

.sponsor-card.other img {
     max-width: 170px;
  filter:
   drop-shadow(0 0 20px #09681f)
    drop-shadow(0 0 25px rgba(18, 104, 35, 0.5))
    drop-shadow(0 0 50px rgba(18, 104, 35, 0.25));
  transition: transform 0.5s ease, filter 0.5s ease;
}

.sponsor-card.other:hover {
    box-shadow: 0 0 35px rgba(18, 104, 35, 0.7), 0 0 70px rgba(18, 104, 35, 0.4);
}

.sponsor-card.other:hover img {
    filter: grayscale(0%) brightness(1.2);
}
.sponsor-card.university {
    position: relative;
    border-radius: 8px;
    transition: 0.3s;
    padding: 35px;
}

.sponsor-card.university img {
     max-width: 170px;
  filter:
   drop-shadow(0 0 20px #8d152f)
    drop-shadow(0 0 25px rgba(141, 21, 47, 0.5))
    drop-shadow(0 0 50px rgba(141, 21, 47, 0.25));
  transition: transform 0.5s ease, filter 0.5s ease;
}

.sponsor-card.university:hover {
    box-shadow: 0 0 35px rgba(141, 21, 47, 0.7), 0 0 70px rgba(141, 21, 47, 0.4);
}

.sponsor-card.university:hover img {
    filter: grayscale(0%) brightness(1.2);
}
/* =========================
   CAR TECHNICAL STATS
========================= */

.tech-stats {
    margin-top: 80px;
}

.tech-stats h2 {
    text-align: center;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.stat-card {
    background: #111;
    border: 1px solid #222;
    padding: 40px 30px;
    transition: 0.3s;
    position: relative;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    opacity: 0;
    transition: 0.3s;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card span {
    font-size: 0.9rem;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-card h3 {
    font-size: 1.6rem;
    margin-top: 10px;
}
/* =========================
   JOIN PAGE
========================= */

.join-hero {
    background: linear-gradient(
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.7)
    ),
    url('../images/join-bg.jpg') center/cover no-repeat;
}

/* WHY JOIN */
.join-why {
    padding: 120px 8%;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.why-card {
    background: #111;
    border: 1px solid #222;
    padding: 40px;
    transition: 0.3s;
}

.why-card:hover {
    border-color: var(--accent);
}

.why-card h3 {
    margin-bottom: 15px;
}

/* POSITIONS */
.positions {
    background: #050505;
    padding: 120px 8%;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.position-card {
    background: #111;
    padding: 40px;
    border-left: 4px solid var(--accent);
    transition: 0.3s;
}

.position-card:hover {
    transform: translateY(-10px);
}

.position-card h3 {
    margin-bottom: 10px;
}

/* APPLY */
.join-apply {
    text-align: center;
    padding: 120px 8%;
}

.join-apply p {
    max-width: 600px;
    margin: 30px auto;
}
/* =========================
   SCROLL REVEAL ANIMATIONS
========================= */

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Optional variations */
.reveal.left {
    transform: translateX(-60px);
}

.reveal.right {
    transform: translateX(60px);
}

.reveal.left.active,
.reveal.right.active {
    transform: translateX(0);
}
/* =========================
   VIDEO HERO
========================= */

/* HERO VIDEO CONTAINER */
.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;       /* full viewport height */
    overflow: hidden;
    background: black;    /* fallback color if video doesn't fill */
}
.video-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 35vh; /* change to make vignette taller/shorter */
    background: linear-gradient(transparent, black);
    pointer-events: none;
    z-index: 2; /* sits above video (z-index:1) */
}
/* VIDEO ITSELF */
.video-hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;    /* fills entire hero without empty spaces */
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* OVERLAY (BLACK BLUR) */
.hero-overlay {
    position: absolute;   /* absolute so it fully covers video */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* black blur */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    text-align: left;
    z-index: 3;           /* above video */
    padding: 0 8%;
}

@media (max-width: 768px) {
    .video-hero video {
        display: none;
    }

    .video-hero {
        background: url('../images/hero-bg.jpg') center/cover no-repeat;
    }
}
@media (max-width: 900px) {
    .logo {
        font-size: 1.2rem;
    }

    .logo img {
        max-width: 80px;
        max-height: 40px;
    }
}
.status-timeline {
    position: relative; /* stacking context for the ribbon pseudos */
    z-index: 0;
    text-align: center;
    overflow: visible;
    background-color: black;
}

.status-timeline h2 {
    position: relative;   /* needed for z-index to work */
    display: inline-block;
    padding: 18px 36px;
    margin: 0 auto 28px;
    z-index: 2;         /* make heading sit above ribbon pseudos */
    font-size: 2.4rem;
    letter-spacing: 1px;
    background: transparent;
    color: black;
}

/* ribbon behind the heading (low z-index) */
.status-timeline h2::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 64px;
    background: linear-gradient(90deg,black, #00aba2, black); /* adjust color */
    border-radius: 8px;
    z-index: -1; /* behind the heading */
    pointer-events: none;
    box-shadow: black;
}

/* subtle overlay - still below the heading */
.status-timeline h2::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(680px, 90vw);
    height: 64px;
    background-image:
        linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.02) 25%, transparent 25%);
    background-size: 28px 28px;
    opacity: 0.08;
    z-index: 1; /* between ribbon base and heading */
    pointer-events: none;
}


.track {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
    min-height: 84px;
}

/* visible horizontal line */
.track::before {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    height: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 171, 163, 0.288); /* change color here */
    border-radius: 4px;
    z-index: 1;
}

/* each segment stretches, whole area clickable (labels included) */
.point-wrap {
    position: relative;
    flex: 1 1 0;
    text-align: center;
    z-index: 3;
    cursor: pointer; /* makes labels clickable */
    padding: 6px 0;  /* gives a larger hit area */
}

/* tiny invisible dot sits on the line (not required for clicking) */
.point {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    width: 18px;
    height: 18px;
    background: transparent;
    border: none;
    pointer-events: none; /* clicks handled by .point-wrap so labels are clickable */
}

/* label sits under the line and is part of the clickable area */
.point-label {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 800px;
    font-weight: 800; /* numeric, no px */
    display: block;
    margin-top: 18px;
    color: var(--gray);
    font-size: 1rem;
    pointer-events: none; /* avoid double events; wrap handles clicks */
}

/* active label style */
.point-label.active {
    color: var(--accent);
    font-weight: 700;
}

/* single movable car: bottom of image sits on the line */
.car {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(-50%, -100%); /* bottom on the center line */
    z-index: 5;
    pointer-events: none;

    /* smooth horizontal transition */
    transition: left 600ms cubic-bezier(.22,.9,.28,1), transform 200ms ease;
    will-change: left;
}

.car img {
    width: 120px; /* change size to taste */
    height: auto;
    transition: transform .18s ease, filter .18s ease;
}
.news{
        position: relative; /* stacking context for the ribbon pseudos */
    z-index: 0;
    text-align: center;
    overflow: visible;
    background-image: url('../images/news1.png');
}
.news-text
{
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      font-style:italic;
    font-weight: 800px;
    font-weight: 600; /* numeric, no px */
    font-size: 0.8rem;
    color: var(--white);
    text-align: left;
    
}
.news-preview {
  
  text-align: center;
  color: white;
}

.news-preview h2 {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 30px;
  text-transform: uppercase;
  text-align: left;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.news-card {
  text-decoration: none;
  color: white;
  transition: transform 0.3s ease;
}

.news-card img {
  width: 100%;
  border-radius: 12px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  border: #ffffff 2px solid;
}

.news-card h3 {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin-top: 15px;
  font-size: 1.1rem;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card:hover img {
  opacity: 1;
}

.news-button {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 800;
  display: inline-block;
  padding: 14px 30px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.news-button:hover {
  background: #00aba2;
  color: black;
}
/* Team Title Tooltips */
.team-title {
    position: relative;
    display: block;
    text-align: center;
    cursor: help;
    transition: color 0.3s ease;
}

.team-title:hover {
    color: var(--accent);
}

.team-title.no-tooltip {
    cursor: default;
}

.team-title.no-tooltip:hover {
    color: inherit;
}

.team-title.no-tooltip::before,
.team-title.no-tooltip::after {
    display: none;
}

.team-title::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: linear-gradient(135deg, rgba(0, 171, 162, 0.98) 0%, rgba(0, 140, 133, 0.98) 50%, rgba(0, 100, 95, 0.98) 100%);
    color: var(--white);
    padding: 20px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    white-space: normal;
    max-width: 450px;
    min-width: 280px;
    width: max-content;
    text-align: center;
    line-height: 1.6;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 12px 40px rgba(0, 171, 162, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.team-title::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    border: 8px solid transparent;
    border-top-color: rgba(0, 171, 162, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

.team-title:hover::before,
.team-title:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.team-title:hover::after {
    transform: translateX(-50%) translateY(0px);
}

/* responsive tweaks */
@media (max-width:700px) {
    .status-timeline h2 { font-size: 1.6rem; padding: 12px 24px; }
    .status-timeline h2::before,
    .status-timeline h2::after { height: 48px; }
}
@media (max-width:700px) {
    .track { padding: 14px 4%; min-height: 68px; }
    .track::before { left: 4%; right: 4%; height: 3px; }
    .point { width: 14px; height: 14px; }
    .car img { width: 48px; }
    .point-label { margin-top: 12px; font-size: 0.88rem; }
}
@media (max-width:700px) {
    .team-title::before {
        max-width: 250px;
        font-size: 0.75rem;
        padding: 10px 14px;
    }
}

.hero-simple h1 {
    margin-top: 40px;
    font-size: 3rem;
    margin-bottom: 10px;
    text-align: center;
}
.hero-simple p {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 800px;
    font-weight: 600; /* numeric, no px */
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
/* News Page - Newspaper Style */
.newspaper-section {
    background: var(--black);
    padding: 60px 20px;
    min-height: 100vh;
}

.newspaper-container {
    max-width: 1200px;
    margin: 0 auto;
}


.news-article {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 171, 162, 0.2);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.news-article:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(0, 171, 162, 0.15);
}

.news-article.featured {
    border: 2px solid var(--accent);
    margin-bottom: 60px;
}

.article-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 171, 162, 0.3);
}

.article-category {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    background: rgba(0, 171, 162, 0.15);
    padding: 5px 15px;
    border-radius: 20px;
}

.article-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.article-title {
    font-family: 'Korataki', serif;
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

.news-article.featured .article-title {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.article-image {
    width: 100%;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 8px;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.news-article:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 18px;
    text-align: justify;
}

.article-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    margin-bottom: 25px !important;
}

.news-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.news-grid-layout .article-title {
    font-size: 1.4rem;
}

/* Event Article Styling */
.event-info {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 171, 162, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.event-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.event-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.event-detail strong {
    font-family: 'Montserrat', sans-serif;
    color: var(--accent);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-detail p {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    margin: 0;
    font-size: 1rem;
}

.add-to-calendar {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 35px;
    background: var(--accent);
    color: var(--black);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-calendar:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 171, 162, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
    .news-grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .article-title {
        font-size: 1.6rem;
    }
    
    .news-article.featured .article-title {
        font-size: 2rem;
    }
    
    .newspaper-section {
        padding: 40px 15px;
    }
    
    .news-article {
        padding: 20px;
    }
    
    .event-info {
        flex-direction: column;
        gap: 15px;
    }
}