/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: #000; /* Dark background for universe effect */
    color: white;
}

/* Header Section */
header {
    background-color: #fff(0, 0, 0, 0.7);
    color: #0f0404;
    padding: 10px;
    text-align: center;
    position: relative;
}

/* Logos Section */
.logo-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.logo-container img {
    width: 80px;
    height: auto;
    animation: logoAnimation 2s infinite;
}

@keyframes logoAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* College Details */
.college-details h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.college-details p {
    font-size: 1.2rem;
}

/* Video Section */
.video-section {
    position: relative;
    margin-top: 20px;
}

video {
    width: auto;
    height: 50%;
    object-fit: cover;
    border-radius: 10px;
}

/* Main Content */
main {
    padding: 20px;
    text-align: center;
    position: relative;
}

/* Event Section */
.event-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.event-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 20px;
}

/* Events Section */
.events {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.technical-events, .non-technical-events {
    width: 45%;
}

.event-list .event-item {
    background: #5bcdd9;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
}

.event-item button {
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.event-item button:hover {
    background-color: #555;
}

/* About Stalls Section */
.about-stalls {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    margin-top: 40px;
    border-radius: 10px;
}

/* Footer Section */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.coordinators h4 {
    margin-bottom: 10px;
}

/* Universe Background Animation */
body {
    position: relative;
    background: url('universe-background.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
