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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #000;
    background: #fff;
    overflow-x: hidden;
}

/* Titles and Headings */
h1, h2, h3, h4, h5, h6,
.hero-title,
.artists-title,
.partners-title,
.detail-label,
.upcoming-label,
.footer-section h3,
.artist-name {
    font-family: 'Libre Franklin', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Header Styles */
header {
    background: #fff;
    padding: 20px 40px;
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.6;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    background: url('assets/images/bg.jpg') center center / cover no-repeat;
    overflow: hidden;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.upcoming-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 12px;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
}

.vertical-line {
    width: 2px;
    height: 20px;
    background: #fff;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.charity-badge {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    background: #fff;
    padding: 6px 12px;
    display: inline-block;
    width: fit-content;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    font-family: 'Libre Franklin', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Scroll Down Button */
.scroll-down-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.scroll-down-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(5px);
}

.scroll-down-btn .material-icons-outlined {
    font-size: 32px;
    color: #fff;
}


/* Event Info Section for Homepage */
.event-info-section {
    background: #fff;
    padding: 60px 40px;
}

.event-info-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;

    padding: 0 40px;
}

.event-info-left {
    display: flex;
    flex-direction: column;
}

.event-info-right {
    display: flex;
    flex-direction: column;
}

.event-info-right > p {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 40px;
}

/* Stats Section */
.stats-section {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 200px;
}

.stat-value {
    font-family: 'Libre Franklin', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    background: #000;
    padding: 15px 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.1;
    display: inline-block;
    width: fit-content;
}

.stat-value sup {
    font-size: 0.5em;
    vertical-align: super;
    line-height: 0;
}

.stat-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
    padding-left: 0;
}

.detail-item {
    margin-bottom: 50px;
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.detail-icon {
    font-size: 24px;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.detail-label {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.detail-value {
    font-size: 20px;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

.location-link {
    color: #000;
    text-decoration-color: rgba(0, 0, 0, 0.3);
    transition: text-decoration-color 0.3s ease, opacity 0.3s ease;
}

.location-link:hover {
    text-decoration-color: rgba(0, 0, 0, 0.8);
    opacity: 0.7;
}

.detail-separator {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin: 30px 0;
}

.artists-section {
    width: 100%;
    margin-top: 60px;
    padding: 60px 40px;
    border-top: 1px solid #e0e0e0;
}

.artists-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: #000;
    margin: 0 0 40px 0;
    letter-spacing: -1px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    box-sizing: border-box;
}

.artists-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* gap: 40px; */
    margin-top: 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    box-sizing: border-box;
    justify-items: center;
}

.artists-column {
    display: flex;
    flex-direction: column;
}

.artist-item {
    margin-bottom: 20px;
}

.artist-name {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    display: block;
    margin-bottom: 12px;
}

.artist-separator {
    width: 100%;
    height: 1px;
    background: #000;
}

/* Partners Section */
.partners-section {
    width: 100%;
    margin-top: 60px;
    padding: 60px 40px;
    border-top: 1px solid #e0e0e0;
}

.partners-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: #000;
    margin: 0 0 40px 0;
    letter-spacing: -1px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    box-sizing: border-box;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-top: 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    box-sizing: border-box;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 0.7;
}

.partner-logo .logo-img {
    max-width: 350px;
    max-height: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.partner-logo:hover .logo-img {
    filter: grayscale(0%);
}

/* Footer Styles */
footer {
    border-top: 1px solid #e0e0e0;
    background: #fff;
    color: #1a1a1a;
    padding: 60px 40px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    text-align: center;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
}

.footer-social {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    /* border: 1px solid rgba(255, 255, 255, 0.6); */
    /* border-radius: 999px; */
    color: #1a1a1a;
    text-decoration: none;
    font-size: 32px;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.social-btn .material-icons-outlined {
    font-size: 24px;
    margin: 0;
}

.social-btn:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #fff;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-content {
        padding: 60px 40px;
    }
    
    header {
        padding: 20px 40px;
    }
    
    nav {
        gap: 30px;
    }
    
    .event-info-container {
        grid-template-columns: 1fr;
        /* gap: 50px; */
    }
    
    .event-info-section {
        padding: 60px 40px;
    }
    
    .artists-section {
        padding: 60px 40px;
    }
    
    .partners-section {
        padding: 60px 40px;
    }
    
    footer {
        padding: 60px 40px 20px;
    }
    
    .partners-logos {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-content {
        padding: 40px 30px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav {
        gap: 25px;
    }
    
    .scroll-down-btn {
        bottom: 30px;
        right: 30px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-down-btn .material-icons-outlined {
        font-size: 28px;
    }
    
    header {
        padding: 20px 30px;
    }
    
    .event-info-section {
        padding: 60px 30px;
    }
    
    .artists-section {
        padding: 60px 30px;
    }
    
    .partners-section {
        padding: 60px 30px;
    }
    
    footer {
        padding: 60px 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .scroll-down-btn {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .scroll-down-btn .material-icons-outlined {
        font-size: 24px;
    }
    
    nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .artists-title {
        font-size: 36px;
    }
    
    .stat-value {
        font-size: 32px;
        padding: 14px 20px;
    }
    
    .stat-label {
        font-size: 18px;
    }
    
    .artists-list {
        grid-template-columns: 1fr;
    }
    
    .event-info-section {
        padding: 60px 20px;
    }
    
    .artists-section {
        padding: 60px 20px;
    }
    
    .partners-section {
        padding: 60px 20px;
    }
    
    footer {
        padding: 60px 20px 20px;
    }
    
    .partners-title {
        font-size: 36px;
    }
    
    .partners-logos {
        gap: 30px;
        flex-direction: column;
    }
    
    .partner-logo .logo-img {
        max-width: 150px;
        max-height: 60px;
    }
}

