/*===========================================*/
/*	DESKTOP LAYOUT 
/*===========================================*/


/*@media (min-width: 1200px) {
	

}
@media (min-width: 992px) and (max-width: 1199px) {
	
}

@media (min-width: 992px) {
		
}*/

/*===========================================*/
/*	MOBILE & TABLET COMMON
/*===========================================*/
/*@media (min-width: 200px) and (max-width: 991px) {
	
}*/


/*===========================================*/
/*	TABLET
/*===========================================*/
/*@media (min-width: 768px) and (max-width: 991px) {

}*/


/*===========================================*/
/*	MOBILE
/*===========================================*/
/*@media (min-width: 200px) and (max-width: 767px) {
	
}
@media (min-width: 600px) and (max-width: 767px) {
}
@media (min-width: 480px) and (max-width: 599px) {

}
@media (min-width: 200px) and (max-width: 479px) {

}*/

/* POPUP STYLES */
.intro-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 999999; /* Higher than everything else */
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.intro-popup.show {
    visibility: visible;
    opacity: 1;
}

.intro-popup .popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    text-align: center;
}

.intro-popup .popup-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.intro-popup .popup-content img:hover {
    transform: scale(1.02);
}

.intro-popup .close-popup {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    transition: color 0.2s ease;
    z-index: 1000000;
}

.intro-popup .close-popup:hover {
    color: #ffd700; /* Gold color */
}