/* ------ WELCOME SECTION ------ */
		.welcome-section {
			padding: 0 24px;
			position: relative;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
		}

		.welcome-container {
			padding: 5rem 0;
			max-width: 1400px;
			width: 100%;
			display: grid;
			grid-template-columns: 300px 1fr;
			gap: 4rem;

		}

		/* Info Box */
		.welcome-info {
			padding: 0;
			display: flex;
			flex-direction: column;
			gap: 0.75rem;
		}

		.welcome-info-title {
			color: var(--jr-black);
			font-size: 1.125rem;
			font-weight: 600;
			margin-bottom: 0;
			line-height: 1.4;
			text-shadow: 
				0 0 15px rgba(255, 255, 255, 0.9),
				0 0 25px rgba(255, 255, 255, 1),
				0 0 35px rgba(255, 255, 255, 0.9);
		}

		.welcome-info-hours {
			color: var(--jr-black);
			font-size: 1rem;
			line-height: 1.8;
			margin-bottom: 0.75rem;
			font-family: var(--font-family-1);
			text-shadow: 
				0 0 15px rgba(255, 255, 255, 0.9),
				0 0 25px rgba(255, 255, 255, 1),
				0 0 35px rgba(255, 255, 255, 0.9);
		}

		.welcome-info-hours p {
			margin-bottom: 0.25rem;
			color: var(--jr-black);
			text-shadow: 
				0 0 15px rgba(255, 255, 255, 0.9),
				0 0 25px rgba(255, 255, 255, 1),
				0 0 35px rgba(255, 255, 255, 0.9);
		}



		.welcome-cta {
			display: flex;
			gap: 12px;
			flex-wrap: wrap;
		}

		.welcome-btn {
			padding: 1rem;
			font-size: 1rem;
			font-weight: 600;
			border: 1px solid var(--jr-black);
			cursor: pointer;
			display: flex;
			align-items: center;
			gap: 10px;
			transition: all 0.3s ease;
			text-decoration: none;
			font-family: var(--font-family-1);
		}

		.welcome-btn:hover {
			transform: translateY(-2px);
		}

		.cta-primary {
			background: var(--jr-black);
			color: var(--jr-white);
		}

		/* Heading */
		.welcome-heading {
			padding: 0;
		}

		.welcome-heading-text {
			color: var(--jr-black);
			font-size: 2.75rem;
			line-height: 1.3;
			font-weight: 500;
			text-shadow: 
				0 0 15px rgba(255, 255, 255, 0.9),
				0 0 25px rgba(255, 255, 255, 1),
				0 0 35px rgba(255, 255, 255, 0.9);
		}

		.welcome-heading-highlight {
			background: var(--jr-red-1);
			color: var(--jr-white);
			text-shadow: none !important;
		}


		/* Responsive Design */
		@media (max-width: 1024px) {
			.welcome-container {
				grid-template-columns: 1fr !important;
			}

			/* Reverse the order on mobile */
			.welcome-heading {
				order: -1; /* now the heading goes FIRST */
			}

			.welcome-info {
				order: 1; /* info box goes SECOND */
			}

			.welcome-heading-text {
				font-size: 2.25rem;
			}
		}

		@media (max-width: 768px) {
			.welcome-section {
				padding: 2rem 24px;
			}

			.welcome-container {
				gap: 2.5rem;
				padding: 3rem 0;
			}

			.welcome-heading-text {
				font-size: 2rem;
			}
		}

		@media (max-width: 480px) {
			.welcome-section {
				padding: 1.5rem 24px;
			}

			.welcome-container {
				padding: 2rem 0;
			}

			.welcome-heading-text {
				font-size: 1.5rem;
			}

			.welcome-info-title {
				font-size: 1rem;
			}

			.welcome-info-hours {
				font-size: 0.9375rem;
			}

			.welcome-info-badge {
				padding: .3rem .75rem;
			}

			.welcome-info-badge-text {
				font-size: 0.9rem;
			}

			.welcome-container {
				gap: 2rem;
			}
		}
		
		
		
		
		
		
		
		/* EXHIBITION SECTION */
        .exhibition-section {
            padding: 5rem 24px;
            background: var(--jr-white, #ffffff);
        }

        .exhibition-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .exhibition-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .exhibition-title {
            font-size: 3rem;
            font-weight: 600;
            color: var(--jr-black, #000000);
            margin-bottom: 1rem;
            text-shadow: 
                0 0 15px rgba(255, 255, 255, 0.9),
                0 0 25px rgba(255, 255, 255, 1),
                0 0 35px rgba(255, 255, 255, 0.9);
        }

        .exhibition-subtitle {
            font-size: 1.2rem;
            color: var(--jr-gray-1, #666666);
            font-weight: 400;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
            text-shadow: 
                0 0 15px rgba(255, 255, 255, 0.9),
                0 0 25px rgba(255, 255, 255, 1),
                0 0 35px rgba(255, 255, 255, 0.9);
        }

        /* Category Section */
        .exhibition-category-section {
            margin-bottom: 5rem;
        }

        .exhibition-category-section:last-child {
            margin-bottom: 0;
        }

        .exhibition-category-header {
            margin-bottom: 2.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--jr-red-1, #d32f2f);
        }

        .exhibition-category-title {
            font-size: 2rem;
            font-weight: 600;
            color: var(--jr-black, #000000);
            text-shadow: 
                0 0 15px rgba(255, 255, 255, 0.9),
                0 0 25px rgba(255, 255, 255, 1),
                0 0 35px rgba(255, 255, 255, 0.9);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .exhibition-section {
                padding: 4rem 24px;
            }

            .exhibition-title {
                font-size: 2.5rem;
            }

            .exhibition-subtitle {
                font-size: 1.125rem;
            }

            .exhibition-category-title {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 640px) {
            .exhibition-section {
                padding: 3rem 24px;
            }

            .exhibition-header {
                margin-bottom: 3rem;
            }

            .exhibition-title {
                font-size: 2rem;
            }

            .exhibition-subtitle {
                font-size: 1rem;
            }

            .exhibition-category-section {
                margin-bottom: 3.5rem;
            }

            .exhibition-category-header {
                margin-bottom: 2rem;
            }

            .exhibition-category-title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .exhibition-section {
                padding: 2rem 16px;
            }

            .exhibition-title {
                font-size: 1.75rem;
            }

            .exhibition-subtitle {
                font-size: 0.95rem;
            }

            .exhibition-category-title {
                font-size: 1.25rem;
            }
        }
        
        
        
        
        /* SPONSORS SECTION */
		.sponsors-section {
			padding: 5rem 24px;
			background: var(--jr-white);
		}

		.sponsors-container {
			max-width: 1400px;
			margin: 0 auto;
		}

		.sponsors-header {
			text-align: center;
			margin-bottom: 4rem;
		}

		.sponsors-title {
			font-size: 3rem;
			font-weight: 600;
			color: var(--jr-black);
			margin-bottom: 1rem;
		}

		.sponsors-subtitle {
			font-size: 1.2rem;
			color: var(--jr-gray-1);
			font-weight: 400;
			max-width: 700px;
			margin: 0 auto;
			line-height: 1.8;
			text-shadow: 
				0 0 15px rgba(255, 255, 255, 0.9), 
				0 0 25px rgba(255, 255, 255, 1), 
				0 0 35px rgba(255, 255, 255, 0.9);
		}

		.sponsors-cta-wrapper {
			display: flex;
			justify-content: center;
			margin-top: 2rem;
		}

		/* Sponsor Tiers */
		.sponsor-tier {
			margin-bottom: 4rem;
		}

		.sponsor-tier:last-child {
			margin-bottom: 0;
		}

		.tier-header {
			text-align: center;
			margin-bottom: 2.5rem;
		}

		.tier-badge {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			padding: 0.5rem 1.25rem;
			background: var(--jr-black);
			color: var(--jr-white);
			font-size: 0.875rem;
			font-weight: 600;
			text-transform: uppercase;
			letter-spacing: 1px;
			margin-bottom: 1rem;
		}

		.tier-badge.platinum {
			background: linear-gradient(135deg, #E5E4E2 0%, #BCC6CC 100%);
			color: var(--jr-black);
		}

		.tier-badge.gold {
			background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
			color: var(--jr-black);
		}

		.tier-badge.silver {
			background: linear-gradient(135deg, #C0C0C0 0%, #A9A9A9 100%);
			color: var(--jr-black);
		}

		.tier-badge.bronze {
			background: linear-gradient(135deg, #CD7F32 0%, #8B4513 100%);
			color: var(--jr-white);
		}

		.tier-title {
			font-size: 2rem;
			font-weight: 600;
			color: var(--jr-black);
			margin-bottom: 0.5rem;
		}

		.tier-description {
			font-size: 1rem;
			color: var(--jr-gray-1);
			max-width: 600px;
			margin: 0 auto;
		}

		/* Sponsors Grid */
		.sponsors-grid {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
			gap: 2rem;
		}

		.sponsors-grid.platinum {
			grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
		}

		/* Sponsor Card */
		.sponsor-card {
			background: var(--jr-white);
			padding: 2rem;
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			text-align: center;
			min-height: 200px;
			transition: transform 0.3s ease, box-shadow 0.3s ease;
		}

		.sponsor-logo {
			width: 100%;
			max-width: 200px !important;
			height: auto;
			object-fit: contain;
			margin-bottom: 1rem;
			transition: filter 0.3s ease;
		}

		.sponsor-name {
			font-size: 1.25rem;
			font-weight: 600;
			color: var(--jr-black);
			margin-bottom: 0.5rem;
		}

		.sponsor-description {
			font-size: 0.95rem;
			color: var(--jr-gray-1);
			line-height: 1.5;
		}

		/* CTA Section */
		.sponsors-cta {
			text-align: center;
			padding: 3rem;
			background: var(--jr-black);
			color: var(--jr-white);
			margin-top: 4rem;
		}

		.cta-title {
			font-size: 2rem;
			font-weight: 600;
			margin-bottom: 1rem;
		}

		.cta-text {
			font-size: 1.125rem;
			color: var(--jr-white);
			opacity: 0.9;
			margin-bottom: 2rem;
			max-width: 700px;
			margin-left: auto;
			margin-right: auto;
		}

		/* Button Styles */
		.btn-terciary-black {
			position: relative;
			padding: 1rem 1.5rem;
			text-decoration: none;
			font-family: var(--font-family-1);
			font-size: 1.1rem;
			font-weight: 600;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 10px;
			white-space: nowrap;
			overflow: hidden;
			background: var(--jr-black);
			color: var(--jr-white);
			border: none;
			cursor: pointer;
			transition: transform 0.3s ease;
		}

		.btn-terciary-black:hover {
			transform: translateY(-2px);
		}

		.btn-terciary-black .button-content {
			position: relative;
			display: flex;
			align-items: center;
			gap: 6px;
			z-index: 2;
			color: var(--jr-white);
			transition: color 0.5s ease;
		}

		.btn-terciary-black:hover .button-content {
			color: var(--jr-white);
		}

		.btn-terciary-black .mask-layer {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: var(--jr-red-1);
			-webkit-mask: url('https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png');
			mask: url('https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png');
			-webkit-mask-size: 3000% 100%;
			mask-size: 3000% 100%;
			-webkit-mask-position: 0 0;
			mask-position: 0 0;
			z-index: 1;
		}

		.btn-terciary-black:hover .mask-layer {
			animation: mask-hide 0.7s steps(29) forwards;
		}

		.btn-terciary-black:not(:hover) .mask-layer {
			animation: mask-reveal 0.7s steps(29) forwards;
		}

		.btn-terciary {
			position: relative;
			padding: 1rem 1.5rem;
			text-decoration: none;
			font-family: var(--font-family-1);
			font-size: 1.1rem;
			font-weight: 600;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 10px;
			white-space: nowrap;
			overflow: hidden;
			background: var(--jr-red-1);
			color: var(--jr-white);
			border: none;
			cursor: pointer;
			transition: transform 0.3s ease;
		}

		.btn-terciary:hover {
			transform: translateY(-2px);
		}

		.btn-terciary .button-content {
			position: relative;
			display: flex;
			align-items: center;
			gap: 6px;
			z-index: 2;
			color: var(--jr-white);
			transition: color 0.5s ease;
		}

		.btn-terciary:hover .button-content {
			color: var(--jr-black);
		}

		.btn-terciary .mask-layer {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: var(--jr-white);
			-webkit-mask: url('https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png');
			mask: url('https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png');
			-webkit-mask-size: 3000% 100%;
			mask-size: 3000% 100%;
			-webkit-mask-position: 0 0;
			mask-position: 0 0;
			z-index: 1;
		}

		.btn-terciary:hover .mask-layer {
			animation: mask-hide 0.7s steps(29) forwards;
		}

		.btn-terciary:not(:hover) .mask-layer {
			animation: mask-reveal 0.7s steps(29) forwards;
		}

		@keyframes mask-reveal {
			from {
				mask-position: 0 0;
			}
			to {
				mask-position: 100% 0;
			}
		}

		@keyframes mask-hide {
			from {
				mask-position: 100% 0;
			}
			to {
				mask-position: 0 0;
			}
		}

		/* Responsive */
		@media (max-width: 968px) {
			.sponsors-section {
				padding: 4rem 24px;
			}

			.sponsors-title {
				font-size: 2.5rem;
			}

			.sponsors-subtitle {
				font-size: 1.125rem;
			}

			.tier-title {
				font-size: 1.75rem;
			}

			.sponsors-grid.platinum {
				grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
			}

			.cta-title {
				font-size: 1.75rem;
			}

			.cta-text {
				font-size: 1rem;
			}
		}

		@media (max-width: 640px) {
			.sponsors-section {
				padding: 3rem 24px;
			}

			.sponsors-header {
				margin-bottom: 3rem;
			}

			.sponsors-title {
				font-size: 2rem;
			}

			.sponsors-subtitle {
				font-size: 1rem;
			}

			.sponsor-tier {
				margin-bottom: 3rem;
			}

			.tier-header {
				margin-bottom: 2rem;
			}

			.tier-title {
				font-size: 1.5rem;
			}

			.tier-badge {
				font-size: 0.8rem;
				padding: 0.4rem 1rem;
			}

			.sponsors-grid {
				grid-template-columns: 1fr;
				gap: 1.5rem;
			}

			.sponsor-card {
				padding: 1.5rem;
				min-height: 180px;
			}

			.sponsor-name {
				font-size: 1.125rem;
			}

			.sponsor-description {
				font-size: 0.875rem;
			}

			.sponsors-cta {
				padding: 2rem 1.5rem;
				margin-top: 3rem;
			}

			.cta-title {
				font-size: 1.5rem;
			}

			.cta-text {
				font-size: 0.95rem;
				margin-bottom: 1.5rem;
			}

			.btn-terciary, .btn-terciary-black {
				padding: 0.875rem 1.25rem;
				font-size: 1rem;
			}
		}

		@media (max-width: 480px) {
			.sponsors-section {
				padding: 2rem 16px;
			}

			.sponsors-title {
				font-size: 1.75rem;
			}

			.sponsors-subtitle {
				font-size: 0.95rem;
			}

			.tier-title {
				font-size: 1.25rem;
			}

			.sponsor-card {
				padding: 1.25rem;
				min-height: 160px;
			}

			.sponsor-logo {
				max-width: 150px;
			}

			.cta-title {
				font-size: 1.25rem;
			}

			.cta-text {
				font-size: 0.875rem;
			}

			.btn-terciary, .btn-terciary-black {
				padding: 0.75rem 1rem;
				font-size: 0.95rem;
			}
		}
		
		
		
		
		