/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Oswald', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Navigation Bar */
nav {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    z-index: 10;
}

.logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2DB1ED;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Content */
.hero-content {
    z-index: 1;
    text-align: center;
    width: 100%;
}

.hero-content h1 {
    font-family: 'Anton', sans-serif;
    font-size: 8vw;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.85;
    transform: scaleX(1.1);
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

/* Timer Section */
#timer-container {
    margin-top: 20px;
    font-size: 3vw;
    font-weight: bold;
    letter-spacing: 2px;
    color: #2DB1ED;
    text-shadow: 0 0 10px rgba(45, 177, 237, 0.8), 0 0 20px rgba(45, 177, 237, 0.6);
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0px 0px 20px rgba(45, 177, 237, 0.5);
    animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Legal Notice Section */
.contact {
    padding: 50px 20px;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: none;  /* Removed neon text-shadow */
}

.contact p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff; /* Regular text color without neon */
    text-shadow: none;  /* Removed neon text-shadow */
}

/* Social Media Section */
.social {
    padding: 50px 20px;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

.social h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: none;  /* Removed neon text-shadow */
}

.social a {
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    transition: color 0.3s;
    text-shadow: none;  /* Removed neon text-shadow */
}

.social a:hover {
    color: #2DB1ED;
}

/* Fade-In Animation for Sections */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Car4 Section */
.car4-section {
    position: relative;
    width: 100%;
    height: 500px; /* Same height as car1, car2, car3 */
    overflow: hidden;
    text-align: center;
}

.car4-image {
    width: 100%; /* Set to cover the full width */
    height: 100%; /* Set to full height */
    object-fit: cover; /* Ensures the image covers the container without stretching */
    display: block; /* Ensures no space below the image */
    filter: brightness(30%) blur(2px);
}

.car4-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff; /* Text color over image */
    z-index: 2; /* Ensures text is above the image */
}

.car4-text h2 {
    font-size: 36px;
    font-family: 'Anton', sans-serif;
}

.car4-text p {
    font-size: 18px;
    color: #fff;
    margin-top: 10px;
}

/* No hover effect or animation */

}

/* Text Container Styles */
.text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff; /* White background */
    padding: 20px;
    z-index: 1; /* Ensure text is above the images */
    border-radius: 10px; /* Optional: Rounded corners for a smoother design */
    height: 400px; /* Height for text block */
    width: 100%; /* Full width */
}

/* Text Styles */
.text-container h2, .text-container p {
    color: #000; /* Black text color */
    font-family: 'Anton', sans-serif;
    text-transform: uppercase; /* Similar to car4 text */
    letter-spacing: 2px;
}
