/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff0080;       /* Hot pink */
    --secondary: #8a2be2;     /* Blue violet */
    --accent: #00ff00;        /* Lime */
    --dark: #0a0a0a;          /* Almost black */
    --light: #f8f9fa;         /* Off white */
    --gray: #222;
    --light-gray: #444;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background: var(--dark);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 0.9rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 128, 0.3);
}

/* Header - Updated for larger logo */
header {
    background: rgba(10, 10, 10, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 10px 0; /* Reduced padding to accommodate larger logo */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Larger logo size */
.logo img {
    height: 80px; /* Increased from 40px to 80px */
    width: auto;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05); /* Hover effect for logo */
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

nav a:hover {
    color: var(--primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero - Adjusted for larger header */
.hero {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 100px; /* Increased from 70px to accommodate larger header */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(10,10,10,0.95));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    z-index: 1;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Events Section */
.events {
    padding: 80px 0;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

h2 i {
    margin-right: 10px;
    color: var(--accent);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 40px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--gray);
    color: #ddd;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
}

.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.event-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #333;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 0, 128, 0.2);
    border-color: var(--primary);
}

/* Event image - now clickable */
.event-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    cursor: pointer; /* Shows it's clickable */
    transition: transform 0.3s;
}

.event-img:hover {
    transform: scale(1.02); /* Slight zoom on hover */
}

.event-info {
    padding: 20px;
}

.event-date {
    display: inline-block;
    background: var(--gray);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.event-date i {
    margin-right: 5px;
}

.event-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: white;
}

.event-venue {
    color: #aaa;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.event-venue i {
    color: var(--primary);
    margin-right: 5px;
}

.event-description {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.5;
}

.event-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(138, 43, 226, 0.2);
    color: var(--accent);
    border-radius: 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid var(--secondary);
}

.update-note {
    background: rgba(0, 212, 255, 0.1);
    border-left: 4px solid var(--accent);
    padding: 15px;
    border-radius: 0 8px 8px 0;
    margin-top: 20px;
}

.update-note a {
    color: var(--accent);
    font-weight: 500;
}

.update-note a:hover {
    text-decoration: underline;
}

/* Submit Section */
.submit {
    padding: 80px 0;
    background: #111;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: white;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--gray);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-help {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #aaa;
}

.form-help a {
    color: var(--accent);
}

.form-help a:hover {
    text-decoration: underline;
}

.form-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
    text-align: center;
}

/* Lightbox Modal (New Addition) */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 85%;
    margin: auto;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary);
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: -10px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    background: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close-lightbox:hover {
    color: var(--accent);
    background: var(--secondary);
}

#lightbox-caption {
    color: white;
    padding: 20px 0;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

#lightbox-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--accent);
}

#lightbox-details {
    color: #ccc;
    font-size: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Footer */
footer {
    background: #050505;
    padding: 60px 0 20px;
    border-top: 1px solid #222;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    color: white;
}

.footer-col h4 {
    font-size: 1.2rem;
    color: var(--accent);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--accent);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #777;
    font-size: 0.9rem;
}

.no-events {
    text-align: center;
    padding: 40px;
    background: var(--gray);
    border-radius: 10px;
    color: #aaa;
    font-size: 1.1rem;
    grid-column: 1 / -1;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 90px; /* Increased to accommodate larger header */
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        padding: 20px;
        gap: 15px;
        z-index: 1000;
    }
    nav ul.show {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .hero {
        margin-top: 120px; /* Adjusted for mobile */
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .events-container {
        grid-template-columns: 1fr;
    }
    h2 {
        font-size: 2rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .contact-info li {
        justify-content: center;
    }
    /* Lightbox mobile adjustments */
    .lightbox-content {
        max-width: 95%;
    }
    .lightbox-content img {
        max-height: 60vh;
    }
    .close-lightbox {
        top: -50px;
        right: 5px;
    }
    #lightbox-title {
        font-size: 1.4rem;
    }
    /* Logo mobile adjustment */
    .logo img {
        height: 65px; /* Slightly smaller on mobile */
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .filter-buttons {
        justify-content: center;
    }
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    .hero {
        margin-top: 110px;
    }
}

