.Text h3{
    font-family: 'Playfair Display', sans-serif;
}
.Text p{
    font-family: 'Orbitron', sans-serif;
}
.Text_2 p{
    font-family: 'Playfair Display', sans-serif;
}
.Text_2 a{
    font-family: 'Orbitron', sans-serif;
}



body, html {
    margin: 0;
    padding: 0;
    height: auto;
    overflow-x: hidden;
    overflow-y: allowed;
}
#page_0{
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
    justify-content: center;
    top: 0;
    left: 0;
}

@keyframes futuristicEffect {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translateY(0) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.Text, .Text_2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 10vh 0 0 0;
    padding: 20px;
    width: fit-content;
    opacity: 0; /* Start with the element hidden */
    transform: translateY(30px); /* Start with the element below its normal position */
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.Text.visible {
    animation: futuristicEffect 1s forwards; /* Apply animation when the class is added */
    transform: scale(1); /* Ensure final scale after animation */
}
.Text_2.visible {
    animation: futuristicEffect 1s forwards; /* Apply animation when the class is added */
    transform: scale(1); /* Ensure final scale after animation */
}

.Text h1, .Text h3, .Text p{
    margin: 1vh 10vw;
    padding: 2vh 2vw;
    border-radius: 15px;
}
.Text_2 h1, .Text_2 p{
    margin: 1vh 10vw;
    padding: 2vh 2vw;
    border-radius: 15px;
}

.Text h1, .Text_2 h1{
    font-size: 3em;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.Text h3 {
    font-size: 1.7em; /* Adjust font size as needed */
    color: #cccaea; /* Adjust color as needed */
    margin-top: 10px; /* Space between h1 and h3 */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
    background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.Text p, .Text_2 p{
    font-size: 1.4em; /* Adjust font size as needed */
    color: white; /* Adjust color as needed */
    margin-top: 20px; /* Space above p */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.Text_2 a {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    color: #ffffff; /* Text color */
    background: linear-gradient(45deg, #000000, #434343); /* Black to dark gray gradient */
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Dark shadow for depth */
    transition: all 0.3s ease; /* Smooth transition */
    cursor: pointer;
    margin-top: 20px;
}
.Text_2 a:hover {
    background: linear-gradient(45deg, #434343, #000000); /* Reverse gradient on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7); /* Enhanced shadow */
    transform: translateY(-2px); /* Slight lift effect */
}
.Text_2 a:active  {
    background: linear-gradient(45deg, #434343, #000000); /* Consistent gradient on click */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Reduced shadow */
    transform: translateY(0); /* Reset lift effect */
}


#page_0 img{
    height: auto;
    width: 30vw;
    position: absolute;
    top: 30vh;
    left: 35vw;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -5;
}


.minimized {
    position: fixed;
    width: 200px;
    height: 112px;
    bottom: 20px;
    right: 20px;
    transition: width 0.5s, height 0.5s;
    z-index: 1000;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.content-section {
    position: relative;
    background: #fff;
    padding: 20px;
    min-height: 100vh;
    z-index: 10;
}

h1, p {
    margin: 0 0 20px;
}



#page_1{
    top: 100vh;
    left: 0;
    height: auto;
    width: 70vw;
    overflow: hidden;
    background: white;
    padding: 10vh 15vw 0;
    display: flex;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0);
}

.brands{
    height: auto;
    width: auto;
    overflow: hidden;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.brand{
    height: 270px;
    width: 300px;
    border-radius: 15px;
    margin: 2vh 2vw;
    color: black;
    text-decoration: none;
    background: linear-gradient(to right, rgba(255,255,255,0.7), rgba(200,200,200,0.4));
    transition: background 0.5s ease;
}
.brand-Name{
    height: 50px;
    width: 300px;
    margin: 0;
    text-align: center;
    align-content: center;
}
.brand-Img{
    height: 150px;
    object-fit: contain;
    width: 200px;
    margin: 0;
    text-align: center;
    align-content: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: transform 2.6s;
    transform-style: preserve-3d;
}

.brand:hover .brand-Img {
    transform: rotateY(360deg); /* Rotate the image by 360 degrees */
}
.brand .brand-Img.rotated {
    transform: rotateY(360deg);
}


.brand-Text{
    height: 50px;
    width: 300px;
    margin: 0;
    text-align: center;
    align-content: center;
}

.footer{
    height: 330px;
    width: 100vw;
    margin: 10vh 0 0 0;
    text-align: center;
    align-content: center;
    background-color: #333;
    display: flex;
}
.logo{
    height: 300px;
    width: 25vw;
    margin: 0;
    text-align: center;
    align-content: center;
    color: white;
}
.about{
    height: 300px;
    width: 25vw;
    margin: 0 0 0 2vw;
    text-align: center;
    align-content: center;
    color: white;
}
.menu{
    height: 300px;
    width: 25vw;
    margin: 0;
    text-align: center;
    align-content: center;
    color: white;
}
.menu a{
    display: block;
    margin: 20px 0 0px;
    color: white;
    text-decoration: none;
}
.cars{
    height: 300px;
    width: 25vw;
    margin: 0 2vw 0 0;
    text-align: center;
    align-content: center;
    color: white;
}
.footer-brands{
    margin: 0 3vw;
    width: 19vw;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    align-content: center;
}
.footer button{
    margin: 1vh 0 0 0;
    width: 10vw;
}
.copyright{
    height: 5vh;
    width: 100vw;
    background-color: #222;
    display: flex;
    text-align: center;
    align-content: center;
}
.cp-first{
    height: 5vh;
    width: 50vw;
    text-align: center;
    align-content: center;
}
.cp-first p{
    height: 5vh;
    color: white;
    text-align: center;
    align-content: center;
}
.cp-secound{
    height: 5vh;
    width: 50vw;
    display: flex;
}
.cp-secound a{
    height: 5vh;
    color: white;
    text-decoration: none;
    padding: 0 10px;
    text-align: center;
    align-content: center;
}

@
