/* Index.php - Mobile ve Notification Stilleri */

/* Modern Bildirim Sistemi */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    width: 100%;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        text-align: center;
    }
}

/* Mobil Rezervasyon Butonu */
.mobile-reservation-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    display: none;
}

/* Mobil rezervasyon buton üstündeki yazılar beyaz */
.mobile-reservation-button::before,
.mobile-reservation-button::after,
.mobile-reservation-button + label,
.mobile-reservation-button + span,
.mobile-reservation-button + div {
    color: var(--white) !important;
}

.mobile-reservation-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.mobile-reservation-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-reservation-button {
        display: block;
        bottom: 15px;
        right: 15px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mobile-reservation-button {
        bottom: 10px;
        right: 10px;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}
