/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    padding: 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation Menu Styles */
.top-nav {
    background-color: #333;
    overflow: hidden;
    text-align: center;
}

.top-nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}

.top-nav ul li {
    display: inline;
}

.top-nav ul li a {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}

.top-nav ul li a:hover {
    background-color: #ddd;
    color: blue;
}

/* Header Image Styles */
.header-image {
    position: relative;
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.header-image img {
    width: 100%;
    height: auto;
}

/* Countdown Section Styles */
.countdown-section {
    margin: 20px 0;
}

.countdown-timer {
    font-size: 2em;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
}

/* Event Information Section Styles */
.event-info {
    background-color: #fff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.event-info ul {
    text-align: left;
    display: inline-block;
    padding-left: 0;
}

.event-info ul li {
    list-style-type: none;
    margin-bottom: 10px;
}

/* About Section Styles */
.about-section {
    padding: 20px;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 40px;
}

.about-text {
    flex: 1;
    padding: 20px;
    max-width: 600px;
    text-align: left;
}

.about-image {
    flex: 1;
    padding: 20px;
    max-width: 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Sponsors Section Styles */
.sponsors-section {
    padding: 20px;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sponsors-section h2 {
    margin-top: 40px;
    font-size: 1.8em;
    color: #333;
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.sponsor-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.sponsor {
    flex: 1 1 150px;
    margin: 10px;
    text-align: center;
}

.sponsor img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* Contact Form Section Styles */
.contact-section {
    padding: 20px;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
    text-align: left;
}

.contact-section h2 {
    margin-bottom: 20px;
    color: #333;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form input[type="submit"] {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form input[type="submit"]:hover {
    background-color: #555;
}

/* Success and Error Messages */
.success-message {
    color: green;
    font-weight: bold;
    margin-bottom: 20px;
}

.error-message {
    color: red;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .about-content, .sponsor-row {
        flex-direction: column;
        align-items: center;
    }

    .about-text, .about-image, .sponsor {
        max-width: 100%;
    }
}

/* Style for the "Register Now" and "Enter Waitlist" links */
.register-link, .waitlist-link {
    display: inline-block;
    font-size: 2em;
    color: white;
    background-color: #007BFF;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
    transition: background-color 0.3s ease;
}

.register-link:hover, .waitlist-link:hover {
    background-color: #0056b3;
}
