
.logo-container {
    width: 80px; /* Adjust based on logo size */
    height: 80px; /* Adjust based on logo size */
    border-radius: 50%; /* Makes it round */
    overflow: hidden; /* Ensures the image fits within the round shape */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Box shadow */
    display: inline-block; /* Allows inline placement */
    margin-right: 1rem; /* Spacing between logo and text */
}

.logo {
    width: 100%; /* Make image fill the container */
    height: auto; /* Maintain aspect ratio */
}

/* Fun, modern fonts */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f9;
    color: #333;
}

header {
    background-color: #ff5757;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5em;
    color: white;
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin-right: 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.1em;
    font-weight: 700;
}



.slider {
    display: flex;
    overflow: hidden;
    position: relative;
    height: 300px;
}

.slide {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: opacity 1s ease;
}

/* Main container styling */
.container {
    padding: 20px;
    background-color: #f0f4f8;
    border-radius: 10px;
}

/* Event section headers */
h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #ff7f50;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
h1:before {
    content: '✨';
    position: absolute;
    font-size: 2rem;
    top: 0;
    left: -40px;
    animation: float 3s infinite ease-in-out;
}
h1:after {
    content: '✨';
    position: absolute;
    font-size: 2rem;
    top: 0;
    right: -40px;
    animation: float 3s infinite ease-in-out reverse;
}

/* Event cards */
.events {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.event {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 250px;
    text-align: center;
}
.event:hover {
    transform: translateY(-10px);
}

/* Event details */
.event h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}
.event h3 {
    font-family: 'Baloo Tammudu 2', cursive;
    font-size: 1.2rem;
    color: #ff6347;
    margin-bottom: 10px;
}
.event p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

/* Buttons */
.register-button, .media-button {
    background-color: #ff4500;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.register-button:hover, .media-button:hover {
    background-color: #ff6347;
}

/* Keyframe animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.support-container {
    text-align: center;
    margin: 50px 0;
}

.support-container h2 {
    font-size: 2.5em;
    color: #ff6f61;
}

.support-button {
    background-color: #ff6f61;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.support-button:hover {
    background-color: #ff8f81;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 1em;
}


footer {
    background-color: #34495e;
    color: white;
    text-align: center;
    padding: 30px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    padding: 8px 0;
}

.footer-links h4 {
    color: #f39c12;
}
