
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url('nakamura_supra.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #333;
}


.header {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    background-color: #1a1a1a;
    color: white;
    padding: 20px 40px;
    border-bottom: 3px solid #e63946;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px; 
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e63946;
}


.main-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
    padding: 40px;
    gap: 50px; 
}


.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #2c2c35;
    color: white;
    padding: 80px 20px;
    border-radius: 12px;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero h1 {
    font-size: 2.8rem;
    color: #e63946;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    color: white;
}


.categories {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 30px;
}

.card {
    display: flex;
    flex-direction: column;
    background: #333;
    padding: 30px;
    border-radius: 10px;
    width: 320px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    gap: 15px;
}

.card h2 {
    font-size: 1.4rem;
    color: white;
}

.card p {
    color: white;
    line-height: 1.5;
}

.card .btn {
    margin-top: auto;
    align-self: flex-start;
    background-color: #1a1a1a;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.card .btn:hover {
    background-color: #e63946;
}

.confi{
    width: 100%;
    height: 200px;
}


.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a1a1a;
    color: white;
    padding: 20px;
    margin-top: auto;
}


.hero-alt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #1a1a1a;
    color: white;
    padding: 50px;
    border-radius: 12px;
    border-left: 6px solid #e63946;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero-alt h1 {
    font-size: 2.5rem;
    color: #ffffff;
}

.hero-alt p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 700px;
}

.aesthetic-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.aesthetic-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.aesthetic-box {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    gap: 15px;
    border-top: 4px solid #e63946;
}

.aesthetic-box h2 {
    font-size: 1.3rem;
    color: #1a1a1a;
}

.aesthetic-box p {
    color: #555;
    line-height: 1.5;
}

.aesthetic-box.wide {
    flex: 100%;
}




.hero-motor, 
.hero-aesthetic {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 60px 20px;
    border-radius: 12px;
    gap: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


.hero-motor {
    background-color: #e63946;
}

.hero-aesthetic {
    background-color: #2b2b36;
    border-bottom: 4px solid #e63946;
}

.hero-motor h1, 
.hero-aesthetic h1 {
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-motor p, 
.hero-aesthetic p {
    font-size: 1.2rem;
    font-weight: 500;
}


.stages-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stage-row {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    overflow: hidden; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.stage-row.reverse {
    flex-direction: row-reverse;
}

.stage-level {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #1a1a1a;
    color: white;
    padding: 40px;
    min-width: 180px;
}

.stage-level span {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #e63946;
}

.stage-level strong {
    font-size: 3.5rem;
    line-height: 1;
}

.stage-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 15px;
    flex-grow: 1;
}

.stage-details h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
}

.stage-details p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
}

.power-gain {
    align-self: flex-start;
    background-color: #1a1a1a;
    color: #e63946;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px;
    border: 1px solid #e63946;
}


.hero-suspension {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: #1a1a1a;
    color: white;
    padding: 50px;
    border-radius: 12px;
    border-left: 6px solid #e63946;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero-suspension h1 {
    font-size: 2.5rem;
    color: #ffffff;
}

.hero-suspension p {
    font-size: 1.1rem;
    color: #cccccc;
}


.suspension-panels {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.expand-panel {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 30px;
    gap: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    
    
    transition: all 0.4s ease;
}

.final{
  display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url('godzilla.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #333;
}
  
  

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 12px;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border-left: 6px solid #e63946;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.contact-section h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

.contact-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
}

.contact-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 15px;
    margin-top: 10px;
}

.contact-list li {
    font-size: 1.1rem;
    color: #333;
}

.contact-list strong {
    color: #e63946;
}

@media (max-width: 768px) {

   
    .header {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        text-align: center;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .main-content {
        padding: 20px;
        gap: 30px;
    }

    .stage-row, 
    .stage-row.reverse {
        flex-direction: column !important;
    }

    .stage-level {
        min-width: 100%;
        padding: 20px;
    }

    .stage-level strong {
        font-size: 2.5rem;
    }

    .stage-details {
        padding: 25px;
    }

    .expand-panel {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .contact-section {
        padding: 25px;
    }
}


.video-section-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    gap: 20px;
    width: 100%;
}

.video-section-bottom h2 {
    font-size: 1.6rem;
    color: #1a1a1a;
    text-align: center;
}

.video-section-bottom .video-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
}

.video-section-bottom video {
    width: 100%;
    max-height: 450px;
    border-radius: 8px;
    object-fit: cover;
}