/*
 * File: page_styles/orangeLogin.css
 * Purpose: Orange guest login message styling for records.html
 * Version: 1.0 - PRODUCTION READY
 * Timestamp: 2025-09-27 15:48
 * Description: Beautiful orange gradient login message with mobile support
 */

/* Guest Message Container */
.guest-message {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
    color: white;
    position: relative;
    overflow: hidden;
}

.guest-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.1) 75%), 
                linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.1) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.3;
}

.guest-message h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.guest-message h3 i {
    margin-right: 0.5rem;
    font-size: 2rem;
    vertical-align: middle;
}

.guest-message p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

/* Guest Actions Container */
.guest-actions {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

/* Login and Signup Buttons */
.login-btn, .signup-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    margin: 0 0.75rem 0.5rem 0.75rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.login-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: 2px solid transparent;
}

.login-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f618d);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.signup-btn {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    border: 2px solid transparent;
}

.signup-btn:hover {
    background: linear-gradient(135deg, #229954, #1e8449);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.login-btn i, .signup-btn i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .guest-message {
        margin: 1rem;
        padding: 2rem 1.5rem;
        border-radius: 8px;
    }
    
    .guest-message h3 {
        font-size: 1.5rem;
    }
    
    .guest-message p {
        font-size: 1rem;
    }
    
    .login-btn, .signup-btn {
        display: block;
        width: 80%;
        margin: 0.5rem auto;
        text-align: center;
        padding: 1rem 2rem;
    }
    
    .guest-actions {
        margin-top: 1.5rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .guest-message {
        margin: 0.5rem;
        padding: 1.5rem 1rem;
    }
    
    .guest-message h3 {
        font-size: 1.3rem;
    }
    
    .guest-message h3 i {
        font-size: 1.5rem;
    }
    
    .login-btn, .signup-btn {
        width: 90%;
        font-size: 0.9rem;
        padding: 0.875rem 1.5rem;
    }
}

/* Animation for when message appears */
.guest-message {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus states for accessibility */
.login-btn:focus, .signup-btn:focus {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .guest-message {
        background: #f39c12;
        border: 2px solid #000;
    }
    
    .login-btn, .signup-btn {
        border: 2px solid #000;
    }
}