body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #141414;
    overflow-x: hidden;
    width: 100vw;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem;
    background: linear-gradient(90deg, #11178e 0%, #cafffc 100%);
    position: relative;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}



.logo {
    position: absolute; /* Add this */
    left: 2rem; /* Add this */
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    justify-content: center;
    width: 100%;
}


.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    text-decoration: none;
    color: #ff690b;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.3rem;
}

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

/* Navbar Mobile Style */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .logo {
        position: static; /* Remove absolute positioning */
        margin-bottom: 1rem;
    }

    .logo img {
        height: 70px; /* Slightly smaller logo for mobile */
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        color: #ff88c7;
    }
}

.heading-container {
    text-align: center;
    margin: 0 auto;
    max-width: 1200px;
    justify-content: center;
}

.main-heading {
    font-size: 9rem;
    color: #ffffff;
    text-transform: capitalize;
    line-height: 1.4;
    font-weight: 900;
    letter-spacing: 1.4px;
}

@media (max-width: 868px) {
    .main-heading {
        font-size: 4rem;
    }
}


.main-container1 {
    background-image: url(Images/Photo\ Apr\ 20\ 2025\,\ 3\ 29\ 39\ PM.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px;  /* Set a minimum height to see the background */
}

.main-container2 {
    background-image: url(Images/681944d9cc7f577a6ba18388_earl-wilcox-y3W0CzO063w-unsplash.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px;  /* Set a minimum height to see the background */
}

.main-container3 {
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.797),  /* This creates the dark overlay */
        rgba(0, 0, 0, 0.83)
    ), 
    url(Images/680a48b482345096f642cd11_Barclaycard-Arena.jpg);
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    min-height: 700px;  /* Set a minimum height to see the background */
}

.btn-container {
    display: flex;
    gap: 1rem;
}

.main-section {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    min-height: 700px;
    max-width: 600px;
}

.main-section h2 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.main-section p {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.main-section button {
    padding: 1.4rem 2rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 9px;
    background: linear-gradient(90deg, #ffb5dc 0%, #2ed2ff 100%);
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.main-section button:hover {
    transform: scale(1.05);
}

/* Footer Styles */
.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 19px;
    background: #0c0b0b;
    color: #fff;
    text-align: center;
    padding: 1em;
}

.footer-left {
    color: linear-gradient(90deg, #d8d8d8 0%, #ffffff 100%);
    font-size: .4em;
    max-width: 140px;
}

.footer-center {
    align-items: right;
}

#footer-date-time {
    color: #ff3c3c;
    font-size: .4em;
}

.left-footer {
    margin-bottom: 15px;
    margin-top: 10px;
}

.left-footer a {
    font-size: .4em;
    font-style: none;
    color: #bdbdbd;
    text-decoration: none;
    margin-left: 10px;
}