* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0d0d0d;
    color: #e0e0e0;
    font-family: 'Cinzel', serif;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    background: black;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.5);
}

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Montserrat:wght@600&display=swap');

.logo {
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
}

.logo .vampire {
    font-family: 'Cinzel', serif;
    color: #b30000;
    background: linear-gradient(180deg, #e60000, #800000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.logo .pepe {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #01c101, #007d00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    top: -2px; /* adjust until aligned perfectly */
}


.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.navbar ul li a:hover {
    color: crimson;
}

.menu-btn {
    display: none;
    color: white;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .navbar ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: black;
        padding: 20px;
        border-radius: 5px;
    }

    .navbar ul.show {
        display: flex;
    }

    .menu-btn {
        display: block;
        cursor: pointer;
    }
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: white;
    text-shadow: 2px 2px 10px black;
    max-width: 500px;
}

.title {
    font-size: 4rem;
}

.subtitle {
    font-size: 1.3rem;
    margin: 20px 0;
}

.join-button {
    background: crimson;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
}

.join-button:hover {
    background: darkred;
}

.section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    color: crimson;
    margin-bottom: 20px;
}

.events, .leaders {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid crimson;
    padding: 20px;
    border-radius: 10px;
    width: calc(33% - 20px);
}

.card h3 {
    color: white;
    margin-bottom: 10px;
}

.card p {
    color: #ccc;
    font-size: 0.95rem;
}

.eclipse {
    position: relative;
    display: inline-block;
    width: 0.85em;
    height: 0.85em;
    margin: 0 0.05em;
    vertical-align: middle;
}

.eclipse::before {
    content: '';
    position: absolute;
    top: -0.05em;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    border-radius: 50%;
    box-shadow: 0 0 6px 3px red;
    animation: eclipse-glow 3s ease-in-out infinite alternate;
}


@keyframes eclipse-glow {
    from {
        box-shadow: 0 0 4px 2px crimson;
    }
    to {
        box-shadow: 0 0 8px 4px red;
    }
}


@media (max-width: 768px) {
    .card {
        width: 100%;
    }
    
    .hero .title {
        font-size: 2.2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }
}

footer {
    text-align: center;
    background: black;
    color: #aaa;
    padding: 20px;
    margin-top: 40px;
}
