/* /Styles/pwa-install.css */

.pwa-install-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    
    /* NEW: Gold color theme for high visibility */
    background: linear-gradient(145deg, #ffd700, #fca311);
    color: #333; /* Dark text for better contrast on gold */
    
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1000;
    
    /* display: none; will be controlled by JS */
    display: flex; 
    align-items: center;
    gap: 8px;
    
    transform: translateY(100px); /* Start off-screen */
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pwa-install-button.visible {
    transform: translateY(0); /* Animate into view */
}

.pwa-install-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Responsive adjustment for smaller screens */
@media (max-width: 480px) {
    .pwa-install-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* In Styles/pwa-install.css, add these styles */

.ios-install-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px 20px;
    z-index: 1001; /* Make sure it's on top */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.ios-install-banner p {
    margin: 0;
    font-size: 0.9rem;
    flex-grow: 1;
}

.ios-install-banner .fa-share-square {
    /* You may need to adjust the icon depending on the Font Awesome version */
    /* For FA6, this might be fas fa-arrow-up-from-square */
    display: inline-block;
    vertical-align: middle;
    margin: 0 4px;
    font-size: 1.2em;
}

.ios-banner-close {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    margin-left: 15px;
}

.ios-banner-close:hover {
    color: white;
}