/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Barlow Semi Condensed', sans-serif;
    color: white;
    scroll-behavior: smooth;
    box-sizing: border-box;
    overflow-x: hidden; /* Hide horizontal scrollbar */
    overflow-y: scroll; /* Enable vertical scrolling */
    scrollbar-width: none; /* Firefox: hide scrollbar */
}

body::-webkit-scrollbar {
    display: none; /* Hide scrollbar for WebKit browsers */
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* Background Section */
.background-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.coming-soon {
    text-align: center;
    z-index: 2;
}

.coming-soon h1 {
    font-size: 4rem; /* Larger size for "SPONSORS" */
    color: #00ffff; /* Light blue color */
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px; /* Space between heading and "COMING SOON" */
}

.coming-soon h2 {
    font-size: 2rem; /* Size for "COMING SOON" */
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
}



/* Program Flow Image Container */
.program-container {
    width: 100%;
    height: 100vh; /* Take full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 100px; /* To avoid overlap with the navbar */
    padding-bottom: 60px; /* Space for footer */
    background-color: transparent;
}

.program-image {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain; /* Ensures image keeps aspect ratio */
}

/* Footer and other styles remain unchanged from previous pp.css */


/* Responsive Design */
@media (max-width: 768px) {
    .navbar .nav-links a {
        font-size: 1rem;
        margin-left: 10px;
    }

    .coming-soon h1 {
        font-size: 3rem;
    }

    .coming-soon h2 {
        font-size: 1.5rem;
    }
}
