@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Oswald:wght@300;600&display=swap');
@font-face {
    font-family: 'CustomFont'; /* Name of the font */
    src: url('CryptoScamRegular-rgXvA.ttf') format('truetype');
         
    font-weight: normal;
    font-style: normal;
  }
  
.menu {
    display: flex;
    align-items: center; /* Vertically center all items */
    justify-content: space-between; /* Space out left, center, and right sections */
    background-color: rgba(0, 0, 0, 0.9); /* Semi-transparent black background */
    padding: 0 40px; /* Add padding on the sides */
    height: 80px; /* Fixed height */
    position: relative;
    color: #fff; /* Text color */
  }
  
  .racing-head {
    font-family: 'CustomFont', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    position: absolute; /* Absolutely position to center */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust for perfect centering */
    margin: 0; /* Remove any extra margin */
  }
  
  .nav-left,
  .nav-right {
    display: flex; /* Flexbox for horizontal alignment */
    gap: 20px; /* Add spacing between links */
  }
  
  .nav-left a,
  .nav-right a {
    text-decoration: none; /* Remove underline */
    color: white; /* Text color */
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s; /* Smooth hover effect */
  }
  
  .nav-left a:hover,
  .nav-right a:hover {
    color: #f1c40f; /* Change color on hover */
  }
  
  .nav-left {
    flex: 1; /* Push to the left */
  }
  
  .nav-right {
    flex: 1; /* Push to the right */
    justify-content: flex-end; /* Align items to the right */
  }
  










body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
   
}

.stunt-show {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

.stunt-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark tint */
    z-index: 5;
}

.text-overlay {
    position: absolute;
    top: 15%; /* Adjust position near the top */
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    z-index: 10;
    font-family: 'Oswald', sans-serif;
    animation: roll-in 1s ease-in-out;
}

.about-stunt {
    position: absolute;
    top: 45%; /* Positioned below the title */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%; /* Ensures text is contained nicely */
    color: white;
    font-size: 1.2rem;
    font-weight: normal;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    z-index: 10;
    font-family: 'Oswald', sans-serif;
}

.time-left {
    position: absolute;
    top: 95%; /* Positioned below the description */
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    gap: 20px;
    text-align: center;
    color: white;
    z-index: 10;
    font-family: 'Roboto', sans-serif;
}

.time-left div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-left p {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.time-left span {
    font-size: 1rem;
    font-weight: 400;
}

/* Animation for text */
@keyframes roll-in {
    from {
        transform: translate(-50%, -200%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}



.auto-exhibition {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

.exhibition-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark tint */
    z-index: 5;
}

.text-overlay2 {
    position: absolute;
    top: 15%; /* Adjust position near the top */
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    z-index: 10;
    font-family: 'Oswald', sans-serif;
    animation: roll-in 1s ease-in-out;
}

.about-exhibition {
    position: absolute;
    top: 45%; /* Positioned below the title */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%; /* Ensures text is contained nicely */
    color: white;
    font-size: 2.2rem;
    font-weight: normal;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    z-index: 10;
    font-family: 'Oswald', sans-serif;
}

.time-left2 {
    position: absolute;
    top: 65%; /* Positioned below the description */
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    gap: 20px;
    text-align: center;
    color: white;
    z-index: 10;
    font-family: 'Roboto', sans-serif;
}

.time-left div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-left p {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.time-left span {
    font-size: 1rem;
    font-weight: 400;
}

/* Animation for text */
@keyframes roll-in {
    from {
        transform: translate(-50%, -200%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}








.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100vh; /* Full viewport height for each section */
    position: relative;
    overflow: hidden;
}

.section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Black tint */
    z-index: 2;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 90%;
    margin: 0 auto;
    color: white;
}

.text {
    width: 50%; /* Left side for heading and description */
}

.text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    margin: 0 0 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.text p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.timer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    width: 20%; /* Right side for timer */
}

.timer div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer p {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

.timer span {
    font-size: 1rem;
}






.footer {
    background-color: #171A21;
    
    color: #ffffff;
    padding-top: 80px; /* Increased top padding */
    font-family: Arial, sans-serif;
    margin-top: 50px;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid layout */
    gap: 30px;
    padding-top: 40px;
  }
  
  .footer-section {
    padding: 20px; /* Extra padding for a clean look */
    text-align: left;
  }
  
  .footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #FFD700; /* Gold color for headings */
    text-transform: uppercase;
    border-bottom: 2px solid #FFD700; /* Underline style for headings */
    padding-bottom: 5px;
  }
  
  .footer-section p,
  .footer-section a,
  .footer-section ul {
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    color: #ffffff;
    text-decoration: none;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: #FFD700; /* Gold color for links */
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-section ul li a:hover {
    color: #FFD700; /* Bright orange on hover */
  }
  
  .social-links li {
    display: inline-block;
    margin-right: 10px;
  }
  
  .social-links li a {
    color: #FFD700;
  }
  
  .social-links li a:hover {
    color: #FFD700;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 30px;
    font-size: 12px;
    color: #ccc;
  }
  
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
    }
  
    .footer-section {
      text-align: center;
    }
  }
  
  