
@import url('https://fonts.googleapis.com/css2?family=SUSE:wght@100..800&family=Varela&display=swap');

/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: "Varela", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 50px;
    z-index: 10;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.nav-box {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px 20px;
    border-radius: 0.8rem;
}

.nav-links {
    list-style: none;
    display: flex;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    padding-left: 0;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 2ex;
    margin: 10px 0 30px;
    font-weight: 300;
    color: #ccc;
}


@keyframes moveGrid {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 2rem;
    left: 3rem;
    z-index: 100;
    background-color: #FFF;
    color: #101010;
    border-radius: 0.8rem;
    font-weight: bold;
    padding: 10px 20px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.floating-btn:hover {
    background-color: #333;
    transform: scale(1.1);
}

/* Hero Section Style */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

/* Add futuristic grid background animation */
.grid {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: gridAnimation 5s linear infinite;
    z-index: -1;
}

/* Text Animations for Techno Effect */
.animated-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    animation: technoGlow 2s linear infinite, slideUp 1.5s ease-out;
}

.animated-text:nth-child(2) {
    animation-delay: 0.5s;
}

/* Glowing Text Animation */
@keyframes technoGlow {
    0% {
        text-shadow: 0 0 5px rgba(248, 248, 248, 0.8), 0 0 10px rgba(255, 255, 255, 0.6), 0 0 15px rgba(255, 255, 255, 0.4);
    }
    50% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 1), 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.6);
    }
    100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.6), 0 0 15px rgba(255, 255, 255, 0.4);
    }
}

/* Slide Up Animation */
@keyframes slideUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Background Animation for the Grid */
@keyframes gridAnimation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .animated-text {
        font-size: 2rem;
    }
}


/* Responsive adjustments */
@media (max-width: 1200px) {
    .animated-text {
        font-size: 6vw; /* Slightly larger font size for medium screens */
    }
}

@media (max-width: 768px) {
    .animated-text {
        font-size: 8vw; /* Larger font size for smaller screens */
    }
}

@media (max-width: 480px) {
    .animated-text {
        font-size: 10vw; /* Even larger font size for very small screens */
    }
}

a .bot {
    z-index: 99;
    position: fixed;
    width: 300px;
    height: 140px;
    object-fit:scale-down;
    animation: botGlow 2s ease-in-out infinite, slideUp 1.5s ease-out;
    bottom: 0;
    right: -4rem;
    cursor: pointer;
}


@keyframes botGlow {
    0% {
        height: 140px;
    }
    50% {        
        height: 180px;
    }
}

.events {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-end;
    color: #101010;
    column-gap: 2rem;
    align-items: center;
    flex-wrap: nowrap;
}

.event-card {
    width: 30%;
    min-width:300px;
    max-width:400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    text-align: center;
    color: #101010;
    opacity: 0.4

}

.event-card:hover {
    opacity: 1;
    cursor: pointer;
}

.event-card:first-child {
    width: 40%;
    min-width:300px;
    max-width:400px;
    background-color: #fff;
    opacity: 1;
}

.event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
}
.event-details {
    padding: 15px;
}
.event-title {
    font-size: 1.2em;
    font-weight: bold;
    margin: 10px 0;
}
.event-date {
    font-size: 0.9em;
    color: #666;
}
.event-description {
    font-size: 0.9em;
    margin: 10px 0;
}

.event-button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    font-size: 0.9em;
    color: #fff;
    background-color: #101010;
    text-decoration: none;
    border-radius: 8px;
    transition: all ease-in-out 0.2s
}
.event-button:hover {
    background-color: #000;
    font-size: 0.98em;
}

.event-author {
    color: #47557b;
    font-weight: bold;
}

.inline {
    margin-top: 12px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
}


@media (max-width: 768px) {
    .events {
        margin-right: -300px;
    }
}