* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.7;
}

/* Combined Header with Navigation */
header {
    background: white;
    border-bottom: 1px solid #e5e5e5;
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.header-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sc_logo {
    height: 8vh;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.sc_logo:hover {
    opacity: 1;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
}

nav a {
    color: #666;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #333;
    transition: all 0.3s;
    transform: translateX(-50%);
}

nav a:hover {
    color: #333;
}

nav a:hover::after {
    width: 100%;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

/* Larger, Cleaner Carousel */
.carousel-container {
    position: relative;
    background: white;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.slide-image {
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

.slide-image.slide-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.slide-image.slide-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.slide-image.slide-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.slide-content {
    padding: 3rem 4rem 2.5rem;
    flex: 1;
}

.slide-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.event-meta {
    display: flex;
    gap: 2.5rem;
    color: #888;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.slide-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.btn-group {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    background: #333;
    color: white;
    padding: 0.85rem 2.5rem;
    border-radius: 1px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-detail {
    display: inline-block;
    background: transparent;
    color: #333;
    padding: 0.85rem 2.5rem;
    border-radius: 1px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: 1px solid #ddd;
    cursor: pointer;
}

.btn-detail:hover {
    border-color: #333;
    background: #fafafa;
}

/* Minimalist Carousel Controls - Outside content area */
.carousel-nav {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: white;
    width: 24px;
    border-radius: 3px;
}

.carousel-arrow {
    position: absolute;
    top: 200px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    color: #333;
    opacity: 0;
}

.carousel-container:hover .carousel-arrow {
    opacity: 1;
}

.carousel-arrow:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.carousel-arrow.prev {
    left: 2rem;
}

.carousel-arrow.next {
    right: 2rem;
}

/* Compact Horizontal Scrolling Past Events */
.past-events {
    margin-top: 5rem;
}

.past-events h2 {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.gallery-wrapper {
    position: relative;
    overflow: hidden;
}

.gallery {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

.gallery::-webkit-scrollbar {
    height: 6px;
}

.gallery::-webkit-scrollbar-track {
    background: transparent;
}

.gallery::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.gallery::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.gallery-item {
    background: white;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: all 0.3s;
    cursor: pointer;
    flex: 0 0 280px;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.gallery-image {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-image.past-1 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.gallery-image.past-2 {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.gallery-image.past-3 {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.gallery-image.past-4 {
    background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
}

.gallery-caption {
    padding: 1.25rem;
}

.gallery-caption h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: #1a1a1a;
}

.gallery-caption span {
    font-size: 0.8rem;
    color: #888;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    nav ul {
        gap: 1.5rem;
    }

    .container {
        padding: 2rem 1rem 3rem;
    }

    .carousel-wrapper {
        height: 600px;
    }

    .slide-image {
        height: 280px;
    }

    .slide-content {
        padding: 2rem 1.5rem;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .event-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: 140px;
    }

    .carousel-arrow.prev {
        left: 1rem;
    }

    .carousel-arrow.next {
        right: 1rem;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn, .btn-detail {
        text-align: center;
    }

    .gallery-item {
        flex: 0 0 240px;
    }
}