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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, rgb(165, 129, 218) 0%, rgb(132, 142, 222) 100%);
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    background: linear-gradient(135deg, rgb(165, 129, 218) 0%, rgb(132, 142, 222) 100%);
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 120px;
    padding: 0.2rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.1rem 0.5rem;
    width: 100%;
    box-sizing: border-box;
}

.nav-logo {
    flex: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.4rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 120px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, background-color 0.3s ease;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    white-space: nowrap;
    border: 2px solid transparent;
}

.nav-logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.4rem;
    row-gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255,255,255,0.1);
    color: rgb(247, 245, 144);
    border-color: rgb(247, 245, 144);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 90px;
}

.section {
    display: none;
    padding: 4rem 0;
    min-height: calc(100vh - 160px);
}

.section.active {
    display: block;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 0;
    background: white;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.hero-logo {
    height: 300px;
    width: auto;
    margin: 0 auto 2rem auto;
    display: block;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(165, 129, 218);
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 500;
    color: rgb(132, 142, 222);
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Content Sections */
.content-section {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.content-section h1 {
    font-size: 2.2rem;
    color: rgb(165, 129, 218);
    margin-bottom: 2rem;
    text-align: left;
}

.content-section h2 {
    font-size: 1.8rem;
    color: rgb(132, 142, 222);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgb(247, 245, 144);
    padding-bottom: 0.5rem;
}

.content-section h3 {
    font-size: 1.4rem;
    color: rgb(165, 129, 218);
    margin-bottom: 1rem;
}

/* Support Section */
.support-section {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    text-align: center;
}

.support-section h2 {
    color: rgb(165, 129, 218);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: left;
}

.support-organizations {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.support-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid rgb(132, 142, 222);
    max-width: 500px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.support-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.support-logo {
    flex-shrink: 0;
}

.support-logo-img {
    width: 220px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border: 2px solid rgb(132, 142, 222);
    background: white;
    padding: 10px;
}

.support-info {
    flex: 1;
    text-align: center;
}

.support-info h3 {
    color: rgb(132, 142, 222);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.support-info p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.content-section p {
    margin-bottom: 1rem;
    color: #555;
    text-align: justify;
}

/* Topics Grid */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.topic-category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid rgb(132, 142, 222);
}

.topic-category h3 {
    color: rgb(165, 129, 218);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.topic-category ul {
    list-style: none;
    padding: 0;
}

.topic-category li {
    padding: 0.3rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #555;
}

.topic-category li:before {
    content: "▸";
    color: rgb(132, 142, 222);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Committee Sections */
.committee-section {
    margin-top: 2rem;
}

.committee-group {
    margin-bottom: 2rem;
}

.committee-group h3 {
    color: rgb(165, 129, 218);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgb(132, 142, 222);
    padding-bottom: 0.5rem;
}

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

.member {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid rgb(132, 142, 222);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.member-photo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgb(132, 142, 222);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    flex: 1;
}

.member strong {
    color: rgb(165, 129, 218);
    font-size: 1.1rem;
}

/* Important Dates */
.dates-info {
    max-width: 800px;
    margin: 0 auto;
}

.dates-info p {
    text-align: center;
    font-size: 1.2rem;
    color: rgb(165, 129, 218);
    margin-bottom: 2rem;
}

.dates-list {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.date-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
}

.date-item:last-child {
    border-bottom: none;
}

.date-label {
    font-weight: 500;
    color: #555;
    font-size: 1.1rem;
}

.date-value {
    font-weight: 700;
    color: rgb(132, 142, 222);
    font-size: 1.1rem;
}

/* Submission Information */
.submission-info {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.submission-info h2 {
    color: rgb(165, 129, 218);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: left;
}

.submission-details {
    line-height: 1.6;
    color: #555;
}

.submission-details p {
    margin-bottom: 1.5rem;
}

.submission-details ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.submission-details li {
    margin-bottom: 0.8rem;
    color: #555;
}

.submission-details strong {
    color: rgb(132, 142, 222);
    font-weight: 600;
}

/* Venue Information */
.venue-info {
    max-width: 900px;
    margin: 0 auto;
}

.venue-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.venue-emblem {
    flex-shrink: 0;
}

.venue-emblem-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.15);
    border: 2px solid rgb(132, 142, 222);
}

.venue-title {
    flex: 1;
}

.venue-details {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.venue-details h3 {
    color: rgb(165, 129, 218);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.venue-details p {
    margin-bottom: 1rem;
}

.venue-description {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid rgb(132, 142, 222);
}

.location-highlights {
    margin-top: 2rem;
}

.location-highlights ul {
    list-style: none;
    padding: 0;
}

.location-highlights li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.location-highlights li:before {
    content: ">";
    color: rgb(132, 142, 222);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Venue Visuals */
.venue-visuals {
    margin-top: 3rem;
}

.venue-visuals h3 {
    color: rgb(165, 129, 218);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

/* Registration Section */
.registration-info {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.registration-info h2 {
    color: rgb(165, 129, 218);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: left;
}

.registration-status {
    text-align: center;
}

.status-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid rgb(132, 142, 222);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.status-item h3 {
    color: rgb(132, 142, 222);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.status-message {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgb(165, 129, 218);
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(233, 153, 203, 0.1);
    border-radius: 8px;
    border: 2px solid rgb(233, 153, 203);
}

.status-details {
    text-align: left;
}

.status-details p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Submission Section */
.submission-info {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.submission-info h2 {
    color: rgb(165, 129, 218);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: left;
}

.submission-system {
    text-align: center;
}

.system-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid rgb(132, 142, 222);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.system-item h3 {
    color: rgb(132, 142, 222);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.system-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.system-status {
    text-align: center;
}

.system-status .status-message {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgb(165, 129, 218);
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(233, 153, 203, 0.1);
    border-radius: 8px;
    border: 2px solid rgb(233, 153, 203);
}

.system-status .status-details {
    text-align: left;
}

.system-status .status-details p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

/* Contacts Section */
.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.contact-info h2 {
    color: rgb(165, 129, 218);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: left;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid rgb(132, 142, 222);
    max-width: 400px;
    margin: 0 auto 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item h3 {
    color: rgb(132, 142, 222);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: rgb(132, 142, 222);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: rgb(165, 129, 218);
}

.map-container,
.photo-container {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container h4,
.photo-container h4 {
    color: rgb(132, 142, 222);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.map-placeholder {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.map-placeholder iframe {
    border: none;
}

.venue-photo {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.location-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-photo:hover {
    transform: scale(1.05);
}

.map-container p,
.photo-container p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.map-container strong {
    color: rgb(165, 129, 218);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.carousel {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.carousel-caption h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.carousel-caption p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.9);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: white;
}

/* Footer */
.footer {
    background: rgb(165, 129, 218);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer a {
    color: rgb(247, 245, 144);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .navbar {
        height: auto;
        min-height: 70px;
    }

    .nav-container {
        flex-wrap: wrap;
        padding: 0.5rem 1rem;
    }

    .nav-menu {
        gap: 0.3rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .logo-img {
        height: 50px;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgb(165, 129, 218);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 1rem;
        gap: 0.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
        display: block;
        width: 100%;
        text-align: center;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .logo-img {
        height: 40px;
    }

    .nav-logo h1 {
        font-size: 1.4rem;
    }


    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        margin: 0.5rem 0;
        text-align: center;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .hero-logo {
        height: 200px;
        margin: 0 auto 1.5rem auto;
        display: block;
        max-width: 90%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .content-section {
        padding: 1.5rem;
    }

    .topics-grid {
        grid-template-columns: 1fr;
    }

    .committee-members {
        grid-template-columns: 1fr;
    }

    .member {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .member-photo {
        width: 70px;
        height: 70px;
    }

    .date-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .contact-logo {
        height: 60px;
        border: 3px solid rgb(165, 129, 218);
        padding: 8px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .visual-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .map-container,
    .photo-container {
        padding: 1rem;
    }

    .location-photo {
        height: 250px;
    }

    .carousel {
        height: 250px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .carousel-caption {
        padding: 1rem;
    }

    .carousel-caption h5 {
        font-size: 1rem;
    }

    .carousel-caption p {
        font-size: 0.8rem;
    }

    .venue-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .venue-emblem-img {
        width: 80px;
        height: 80px;
    }

    .support-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        max-width: 100%;
    }

    .support-logo-img {
        width: 180px;
        height: 80px;
    }

    .support-info {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .content-section {
        padding: 1rem;
    }

    .venue-details {
        padding: 1rem;
    }

    .navbar {
        height: auto;
        min-height: 70px;
    }

    .nav-container {
        padding: 0.3rem 0.5rem;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .logo-img {
        height: 35px;
    }

    .nav-logo h1 {
        font-size: 1.2rem;
    }

    .nav-menu.active {
        top: 60px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.section.active {
    opacity: 1;
    transform: translateY(0);
}

/* Past Events Styles */
.past-events-info {
    text-align: left;
}

.past-events-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.event-item {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid rgb(165, 129, 218);
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.event-item h3 {
    color: rgb(165, 129, 218);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-link {
    display: inline-block;
    background: linear-gradient(135deg, rgb(233,153,203), rgb(165,129,218));
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(165,129,218,0.3);
}

/* Mobile Responsiveness for Past Events */
@media screen and (max-width: 768px) {
    .past-events-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-item {
        padding: 1.5rem;
    }
    
    .event-item h3 {
        font-size: 1.3rem;
    }
}

/* Print Styles */
@media print {
    .header, .footer {
        display: none;
    }

    main {
        margin-top: 0;
    }

    .section {
        display: block !important;
        page-break-after: always;
    }
}