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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}


header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: ##274596;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #f2eee8;
    transition: color 0.3s;
}

.icon-btn:hover {
    color: #eba65e;
}

.login-btn {
    text-decoration: none;
    color: #f2eee8;
    font-weight: 500;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background:url('https://res.cloudinary.com/dbtuho5h0/image/upload/v1769158009/premium_photo-1725227304856-55c5c9036520_pxukgb.avif') center/cover;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #111827;
    font-weight: bold;
    text-shadow: 2px 1px 2px rgba(244, 201, 140, 0.315);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.call-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.button-general {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.button1 {
    background: rgba(103, 111, 148, 0.6);
    backdrop-filter: blur(10px);
    color: white;
    
}

.button1:hover {
    background: rgba(103, 111, 148, 0.6);
    backdrop-filter: blur(10px);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}


@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

                
.ev-title {
    font-weight: 800;
    font-size: 2.2rem;
    color: #1a1a1a;
    letter-spacing: -1px;
    margin-bottom: 0.2rem;
}

.ev-calendar-btn {
    text-decoration: none;
    color: rgba(103, 111, 148, 0.6);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}


.ev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}


.ev-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.ev-card:hover {
    transform: translateY(-8px);
}


.ev-img-wrapper {
    height: 280px; 
    position: relative;
    overflow: hidden;
}


.ev-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}


.ev-img-wrapper::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.02), rgba(0,0,0,0.2));
    z-index: 1;
}


.ev-badge {
    position: absolute; 
    top: 15px;
    left: 15px;
    z-index: 2;
    background: #ffffff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #333;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.ev-badge.workshop { color: #d63384; }
.ev-badge.mentorship { color: #6610f2; }


.ev-content {
    padding: 1.2rem 1.2rem 0.5rem 1.2rem;
    flex-grow: 1;
}

.ev-date {
    color: rgba(103, 111, 148, 0.6);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    display: block;
}

.ev-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #212529;
}

.ev-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}


.ev-footer {
    padding: 1rem 1.2rem; 
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f8f9fa;
    background-color: #fafafa;
}

.ev-location {
    font-size: 0.8rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ev-btn-register {
    background: rgba(103, 111, 148, 0.6);
    color: #ffffff;
    border: none;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: 0.2s;
}

.ev-btn-register:hover {
    background: #3E376C;
}

.ev-rss-link {
    color: #8c2bee; 
    font-weight: 700;
    text-decoration: none;
}

.ev-rss-link:hover {
    color: #d63384; 
    text-decoration: underline;
}


@media (max-width: 768px) {
    .ev-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px;
    }
    .ev-img-wrapper { height: 220px; }
}


footer {
    background: #3E376C;
    border-top: 1px solid #e5e7eb;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #a2adc2;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #eba65e;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: #a2adc2;
    font-size: 1.4rem;
    transition: color 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    color: #eba65e;
}

.copyright {
    color: #6b7280;
    font-size: 0.9rem;
}

@media (max-width: 640px) {
    footer {
        padding: 2rem 1.5rem;
    }

    .footer-links {
        gap: 1.5rem;
    }

    .social-links {
        gap: 1.2rem;
    }
}




