@font-face {
    font-family: "Geist";
    src: url(/assets/Geist-VariableFont_wght.ttf)
}

/* colors : white - C3D2D5 // 195 210 213
dark blue - 032C4C // 3 44 76
light blue - 06476F // 6 71 111 */


html, body {
    margin: 0;
    padding: 0;
    height:100%;
    background-color: rgb(24,24,27);
}

body {
    padding-top:60px;
        font-family: "Geist";
}


#home {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 80%;
}

.homelogo {
    width: 40px;
    height: 40px;
}

nav {
    background-color: black;
    border-bottom: 2px solid rgb(3, 44, 76);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 60px;
    position: fixed;
    z-index:1000;
    top:0;
    left:0;
    right:0;
    background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(8px);
}

.navtext a {
    color: rgb(195 210 213);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;

}

.navtext a:hover {
    color: rgb(8, 102, 160);
}

.intro-section {
    padding: 5rem 1rem;
    background: rgb(27,27,31);
    text-align:center;
}

.intro-container {
    max-width: 66%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.intro-box {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(3, 44, 76,0.2);
    border: 1px solid rgba(8, 102, 160,0.5);
    margin-top: -2rem;
    align-self: center;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    transition: box-shadow 0.3s;
}

.intro-box:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
    cursor: default;
}

.intro-box p {
    color: rgb(208, 243, 248);
    letter-spacing: 2px;
    margin:0;
    font-size: 1.5em
}

.intro-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-top:1rem;
    font-weight: 200;
}

.intro-section p {
    margin:0;
    line-height: 1.6;
}

.intro-section .intro-subtext {
    font-size: 1.25rem;
    color: rgb(101, 110, 122);
    margin-top: 1rem;
}

.intro-section .introduction {
    font-size: 1.125rem;
    color:rgb(181, 197, 218);
    margin-top: 0.5rem
}

#cars h3 {
    color:rgb(208, 217, 228);
    font-size:2em;
    text-align: center;
    font-weight: 300;
}

.h-line {
        border-bottom: 2px solid rgb(224, 224, 224);
        width:450px;
        display: block;
        margin: 0 auto;
}

.car-row {
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    justify-content: center;
    align-items: stretch;
    margin-left: 15%;
    margin-right: 15%;
}

.car-card {
        border-radius: 1px;
        padding: 5px;
        width: 300px;
        flex: 0 0 calc(25% - 16px);
        max-width: calc(25% - 16);
        text-align: center;
        background-color: rgb(18, 19, 20);
        box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
        transition: all 0.4s ease;
        border: 2px solid rgb(36, 36, 36);
        margin-bottom: 3px;
        border-radius: 8px;
        color: white;
}

.car-card:hover {
        background-color: #000000;
            transform: scale(1.01);
            box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
            border-color: rgb(3, 44, 76);
}

.song-row {
    display: flex;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
        align-items: stretch;
        margin-left: 15%;
        margin-right: 15%;
}

.song-card {
        border-radius: 1px;
            padding: 5px;
            width: 300px;
            flex: 0 0 calc(25% - 16px);
            max-width: calc(25% - 16);
            text-align: center;
            background-color: rgb(12, 12, 13);
            box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
            border: 2px solid rgb(36, 36, 36);
            margin-bottom: 3px;
            border-radius: 8px;
            color: white;
}

.song-card p.title {
    font-weight: bold;
        font-size: 1.2em;
        margin-bottom: 5px;
}

.song-card:hover{
            background-color: rgb(27, 27, 31);
            transform: scale(1.01);
                box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
                border-color: rgb(111, 158, 194);
}

#soundtrack h4 {
        color: rgb(208, 217, 228);
            font-size: 2em;
            text-align: center;
            font-weight: 300;
}

#soundtrackbg {
    background-color: rgb(20, 20, 20);
}

#carbg {
    background-color: rgb(24, 24, 27);
}

#about h5 {
            color: rgb(255, 255, 255);
                font-size: 2em;
                text-align: center;
                font-weight: 300;
}

#about p {
    color: rgb(231, 231, 231);
    font-weight: 200;
    font-size: 1.5em;
    width: 30%;
    margin-left: 15%;
    margin-right: 0;
    text-align: right;
    display:block;
}

.about {
    display:flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.about img {
    width: 30%;
    height: auto;
    margin-right: 25%;
    object-fit: contain;
    border: 2px solid rgb(80, 119, 151);
}

#development h6 {
        color: rgb(255, 255, 255);
            font-size: 2em;
            text-align: center;
            font-weight: 300;
}

#development p {
        color: rgb(231, 231, 231);
            font-weight: 200;
            font-size: 1.5em;
            width: 50%;
            margin: auto;
            text-align: center;
            display: block;
}

#footer {
    background-color: rgb(29, 27, 27);
}

            .f-line {
            border-bottom: 2px solid rgb(53, 84, 104);
                width: 100%;
                display: block;
                margin: 0 auto;
            }

            p.nfs {
                color: rgb(163, 190, 211);
                font-weight: 400;
                font-size:2em;
            }

            p.tribute {
                color:rgb(180, 180, 180);
                font-weight: 300;
                font-size: 1.25em;
            }

            #footer p {
                margin-left: 10%;
            }

            .f-line2 {
                border-bottom: 2px solid rgb(94, 103, 109);
                width: 80%;
                display: block;
                margin: 0 auto;
                }

            .TM {
                color: #474444;
            }
            .disclaimerend {
                color: rgb(110, 110, 110) ;
                text-align: center;
                padding-top: 15px;
                padding-bottom: 30px;
                font-size: 0.75em;
            }

            .mid-footer {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                width: 80%;
                margin-left: 10%;
                margin-top:10%;
            }

            .quick-links {
                text-align: right;
                color: rgb(180,180,180);
                margin-right: 10%;

            }

            .quick-links h4 {
                color: rgb(163, 190, 211);
                margin-bottom: 8px;
                font-size: 1.1em;
            }

            .quick-links ul {
                list-style:none;
                padding: 0;
                margin: 0;
            }

            .quick-links li {
                margin-bottom:5px;
            }

            .quick-links a {
                color: rgb(150,150,150);
                text-decoration: none;
                transition: color 0.2s ease;
            }

            .quick-links a:hover {
                color: rgb(53,84,104);
            }