@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Roboto&display=swap');

:root {
    --bg: #0e0e0e;
    --accent: #00e0ff;
    --text: #f1f1f1;
    --muted: #888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header img {
    height: 50px;
}


nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: var(--accent);
    transition: 0.3s;
    font-weight: 600;
}

nav a:hover {
    color: var(--accent);
    text-shadow: 0 0 8px var(--accent);
}

a {
color: var(--accent);
text-decoration: none; /* This is optional, but common for styling links */
transition: 0.3s;
}

a:hover {
    color: #02b9d6;
    text-shadow: 0 0 6px var(--accent);
}

section {
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: auto;
}

h1, h2 {
    color: var(--accent);
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px var(--accent);
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 6rem 2rem;
}

.hero img {
    max-width: 220px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--accent));
}

.hero p {
    max-width: 600px;
    font-size: 1.1rem;
    color: var(--muted);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 224, 255, 0.2);
}

.card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.card h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    color: var(--bg);
    background: var(--accent);
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #02b9d6;
    box-shadow: 0 0 10px var(--accent);
}

.events {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.event-card {
    background: #151515;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.event-card h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--muted);
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

footer a:hover {
    text-shadow: 0 0 6px var(--accent);
}

@media (max-width: 700px) {
    header {
    flex-direction: column;
    gap: 0.5rem;
    }
    nav a {
    margin: 0 0.5rem;
    }
}
