/* Google Fonts - Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Mobile Warning */
.mobile-warning {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF6B6B, #FFD93D);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.mobile-warning.active {
    display: flex;
}

.warning-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 500px;
    margin: 20px;
}

.warning-content h2 {
    color: #E63946;
    font-size: 28px;
    margin-bottom: 20px;
}

.warning-content p {
    color: #333;
    font-size: 18px;
    line-height: 1.6;
}

/* Responsive - Show warning on mobile/small tablets */
/* Responsive - Show warning on mobile/small tablets - DISABLED for testing responsive layout */
/* 
@media (max-width: 1024px) {
    .mobile-warning {
        display: flex;
    }
}

@media (orientation: portrait) and (max-width: 1024px) {
    .mobile-warning {
        display: flex;
    }
}
*/

/* Common Button Styles */
.nav-button {
    display: inline-block;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    text-decoration: none;
}

.nav-button img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
}

.nav-button:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 10px 25px rgba(255, 107, 107, 0.5));
}

.nav-button:active {
    transform: scale(0.98);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #E63946;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
