.molded-text {
    font-family: 'Bungee', cursive;
    text-shadow: 3px 3px 0 #FFD700, -1px -1px 0 #FFD700, 1px -1px 0 #FFD700, -1px 1px 0 #FFD700, 1px 1px 0 #FFD700;
}

.card-clip {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.card-clip-alt {
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
}

.hover-tilt:hover {
    transform: rotate(2deg) scale(1.03);
}

.hover-grow:hover {
    transform: scale(1.05);
    z-index: 10;
}

.scroll-faded {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-faded.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Smooth transitions for mobile menu */
#mobile-menu {
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Prevent scrolling when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

.sponsors-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sponsor-row {
    display: grid;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.sponsor-logo {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.sponsor-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #f59e0b;
}

.sponsor-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(10%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.sponsor-logo:hover .sponsor-img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 1024px) {
    .sponsor-logo {
        height: 100px;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .sponsor-logo {
        height: 90px;
    }
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.social-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.social-icon:hover .social-text {
    color: #f59e0b;
    /* Wima Fest yellow */
}

@media (max-width: 640px) {
    .icon-circle {
        width: 70px;
        height: 70px;
    }
}

/* Masonry Grid Layout */
.masonry-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.masonry-grid-row-2,
.masonry-grid-row-3,
.masonry-grid-row-4 {
    display: flex;
    gap: 15px;
    width: 100%;
}

.masonry-item-full {
    height: 450px;
    width: 100%;
}

.masonry-item-half {
    height: 350px;
    width: calc(50% - 8px);
}

.masonry-item-third {
    height: 300px;
    width: calc(33.33% - 10px);
}

.masonry-item-quarter {
    height: 250px;
    width: calc(25% - 12px);
}

/* Artist Card Styles */
.masonry-item-full,
.masonry-item-half,
.masonry-item-third,
.masonry-item-quarter {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.masonry-item-full:hover,
.masonry-item-half:hover,
.masonry-item-third:hover,
.masonry-item-quarter:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Artist Overlay */
.artist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.group:hover .artist-overlay {
    opacity: 1;
    transform: translateY(0);
}

.artist-name {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.artist-bio {
    color: white;
    font-size: 0.95rem;
}

.cta-button {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #000;
    color: #FFD700;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .masonry-grid-row-2,
    .masonry-grid-row-3,
    .masonry-grid-row-4 {
        flex-direction: column;
    }

    .masonry-item-half,
    .masonry-item-third,
    .masonry-item-quarter {
        width: 100%;
    }

    .masonry-item-full {
        height: 300px;
    }

    .masonry-item-half {
        height: 250px;
    }

    .masonry-item-third {
        height: 200px;
    }

    .masonry-item-quarter {
        height: 180px;
    }
}

/* Smooth transitions for mobile menu */
#mobile-menu {
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Prevent scrolling when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

.about-card {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f59e0b;
    border: 4px solid #000;
}

.culture-icon {
    width: 80px;
    height: 80px;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #000;
}

.masonry-grid {
    column-count: 4;
    column-gap: 1.5rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .masonry-grid {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        column-count: 1;
    }
}

.artist-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.artist-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.artist-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    padding: 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.artist-card:hover .artist-info {
    transform: translateY(0);
}

.artist-card:hover .artist-image {
    transform: scale(1.05);
}

.genre-tag {
    display: inline-block;
    background-color: #f59e0b;
    color: black;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-card {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.form-input:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.map-container {
    height: 100%;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
}