/*
Theme Name: ramgyprototype
Theme URI: https://ramgy.com/
Author: Ramgy Solutions Group
Description: Functional Prototype for Ramgy Platform.
Version: 1.1
*/

body {
    background: rgba(0, 0, 0, 8) !important;
    backdrop-filter: blur(10px); 
      font-family: Tahoma;
      color: #FAF8F1; 
      height: 100vh;
      margin: 0;
	   font-family: Tahoma;
        color: #FAF8F1; 
        height: 100vh;
        margin: 0;
    }
	
nav {
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2) !important; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
    position: fixed !important; 
    width: 100% !important;
    top: 0 !important;
    z-index: 999 !important; 
    padding: 0px 0 !important;
}

.logo em {
    color: #00FFFF !important;
    font-weight: 700 !important;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5) !important;
}

.scroll-icon {
    margin-top: 5px !important;
    display: inline-block !important;
    animation: bounce 2s infinite; 
}

.scroll-icon img {
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.7)) !important; 
    transition: transform 0.3s ease !important;
}

.scroll-icon:hover img {
    transform: scale(1.1) !important;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px); 
    }
}

.countdown-item {
            background: rgba(0, 123, 255, 0.05);
            border: 1px solid rgba(0, 123, 255, 0.2);
            border-radius: 12px;
            padding: 20px;
            min-width: 110px;
            margin: 5px;
        }
		
.countdown-title {
            color: var(--electric-blue);
            font-family: 'Unbounded', sans-serif;
            text-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
			color: #007bff; 
        font-family: 'Kanit', sans-serif;
        font-weight: 500;
        margin: 0;
        font-size: 2.5rem;
        text-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
        }
		
.countdown-item span {
        display: block;
        margin-top: 5px;
        letter-spacing: 2px;
        font-weight: light;
    }
	
ul.list-unstyled.d-flex {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 !important;
        list-style: none !important;
    }
	
.countdown-title {
        color: #EDDCC6; 
        font-family: 'Kanit', sans-serif;
        font-weight: 400;
        align-items: center !important;
        margin: 0;
        font-size: 2.5rem;
        text-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
    }
	
.select-language-form select {
			width: 100%;
            max-width: 318px;
            padding: 10px;
            border: 1px solid #00FFFF;
            border-radius: 5px;
            background-color: #000;
            color: gray;
            font-size: 16px;
            appearance: none; 
            -webkit-appearance: none;
            -moz-appearance: none;
            cursor: pointer;
            box-shadow: inset 0 0 8px rgba(0, 255, 255, 0.4);
        }
		
.select-language-form select:focus {
            outline: none;
            border-color: #00FFCC;
            box-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
        }
        
        .popup-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10001 !important; /* Por encima de todo */
}

.modal {
    z-index: 10002 !important;
}

.menu-icon {
    cursor: pointer;
    z-index: 10000 !important;
}
		
@media (max-width: 768px) {
    ul.list-unstyled.d-flex {
        justify-content: space-evenly !important; 
    }
	
.countdown-item {
        min-width: 80px !important; 
        padding: 10px !important;
        margin: 5px !important;
        flex: 0 1 calc(45% - 10px);  
    }
	
.countdown-title {
        font-size: 1.8rem !important; 
    }
	
.countdown-item span {
        font-size: 8px !important; 
}

.overlay-menu {
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    position: fixed;
    z-index: 10000; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.overlay-menu.open {
    opacity: 1;
    visibility: visible;
}

