/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.8; /* Increased line height for better readability */
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333333;
}

/* Container for the content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px; /* Added padding to provide more breathing room */
    background-color: #fff; /* White background for the content */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for separation */
    border-radius: 10px; /* Rounded corners for a modern look */
}

/* Header and Nav Styling */
header {
    background-color: #9292fa;
    color: #ffffff;
    padding: 40px; /* Increased padding for more space around the header */
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0; /* Added margin to create space above the nav */
    text-align: center;
    background-color: #9292fa;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    display: inline-block;
    margin: 10px 20px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    background-color: #CCCCFF;
    color: #333333;
}

/* Sign-up button styles to make it stand out */
.sign-up {
    background-color: #ff6347;
    color: white;
    border-radius: 50px;
    padding: 15px 30px; /* Increased padding for a more prominent button */
    font-weight: bold;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.sign-up:hover {
    background-color: #ff4500;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Main Content Styling */
main {
    padding: 40px 30px; /* Increased padding for more space inside the main content */
    margin: 30px auto; /* Added more margin around the main content */
    max-width: 1200px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
footer {
    width: 100vw; /* Make sure the footer fills the viewport width */
    margin: 0; /* Remove any default margins */
    padding: 20px; /* Keep padding for space inside the footer */
    box-sizing: border-box; /* Ensure padding is included in the element's width */
}


footer {
    background-color: #9292fa;
    color: #ffffff;
    text-align: center;
    padding: 20px; /* Increased padding for a more spacious footer */
    width: 100%;
    margin-top: 40px; /* Added more margin between the footer and content */
}

footer p {
    color: #ffffff; /* Ensure the paragraph text inside the footer is white */
}

/* Responsive Layout Adjustments */
@media screen and (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }

    main {
        padding: 20px;
        margin: 20px auto;
    }

    footer {
        padding: 15px;
    }

    /* Smaller font sizes on smaller screens */
    h2 {
        font-size: 1.8em;
    }
    
    h3 {
        font-size: 1.6em;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6; /* Slightly reduced line-height on mobile for balance */
    }
    
    .cta-button {
        padding: 10px 15px;
    }

    .sign-up {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    header h1 {
        font-size: 1.6em; /* Reduce header size on smaller screens */
    }

    nav ul li a {
        padding: 8px 10px;
        font-size: 0.9rem; /* Smaller font size for mobile */
    }

    .sign-up {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.sponsorship-level{
    text-align:center;
    list-style-position: inside;
    border:3px solid #CCCCFF;

}
.sponsorship-level ul{
    display:inline-block;
    text-align:left;
}

.sponsorship-level li{
    vertical-align: top;
}


/* Make the image round and scale with the page */
header img {
    border-radius: 1%; /* Make the image circular */
    width: 100%; /* Let the image take 100% of its container's width */
    max-width: 900px; /* Limit the maximum width of the image */
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin: 0 auto; /* Center the image */
    background-color: #f4f4f4;
}
/* General Text Styling */
h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #333333;
    text-align: center;
}

h3 {
    font-size: 1.8em;
    color: #555555;
    margin-top: 30px;
    margin-bottom: 15px;
}

p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 20px;
}

/* Add spacing between sections */
.spacer {
    margin: 40px 0;
}

/* Call-to-Action Button Styling */
.cta-button {
    display: inline-block;
    background-color: #ff6347;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff4500;
}

/* Tribute Section Styling */
.tribute-section, .legacy-section {
    background-color: #f8f8f8;
    padding: 30px; /* Increased padding to add more space */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.intro-text {
    text-align: center;
    padding: 10px 0;
    font-size: 1.2em;
}

/* General Styles for Gallery */
.gallery-container {
    overflow-x: auto; /* Enables horizontal scrolling */
    white-space: nowrap; /* Prevents images from wrapping to the next line */
    padding: 20px;
    background-color: #f8f8f8;
    scroll-snap-type: x mandatory; /* Enables scroll snapping */
}

.gallery {
    display: flex; /* Enables horizontal layout with flexbox */
}

.gallery-item {
    flex: 0 0 auto; /* Prevents flex items from shrinking */
    scroll-snap-align: center; /* Snaps items to the center */
    margin-right: 15px; /* Space between images */
}

.gallery-item img {
    max-width: 300px; /* Adjust to your preferred image width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow around images */
    transition: transform 0.3s ease-in-out;
}

.gallery-item img:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

/* Make the gallery responsive */
@media (max-width: 768px) {
    .gallery-item img {
        max-width: 200px;
    }
}

.sponsorship-banner {
    background-color: #CCCCFF;
    text-align: center;
    padding: 30px 0;
    margin-bottom: 30px;
    font-size:1.5rem;
}

.sponsorship-level {
    margin-bottom: 40px;
}

.sponsorship-details ul {
    padding-left: 20px;
    list-style-type: disc;
}

.sponsorship-contact {
    background-color: #f8f8f8;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
    border-radius: 8px;
}

.sponsorship-contact a {
    color: #ff6347;
    text-decoration: none;
    font-weight: bold;
}

.sponsorship-contact a:hover {
    text-decoration: underline;
}


/* 2025 Addition */

.super{
    font-size: 1rem !important;
    vertical-align: super;
    display: inline;
}

/* Styles for the stacked random gallery */
.stacked-gallery-container {
    padding: 20px;
    background-color: #f8f8f8;
}

.stacked-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.stacked-gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.stacked-gallery-item img:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stacked-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

.stacked-gallery-button{
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: bold;
    border: 0px;
    background-color: #9292fa;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    
}

.stacked-gallery-button:hover{
    background-color: #CCCCFF;
}

.stacked-gallery-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 20px;
    background-color: #f8f8f8;
}
