/* Hide Call Waiter and Login elements */
.call-waiter-hidden,
.login-hidden {
    display: none !important;
}

/* Hide Call Waiter buttons and links */
[data-target="#callWaiterModal"],
a[href*="callwaiter"],
button[form="callWaiterForm"] {
    display: none !important;
}

/* Hide Login buttons and links */
a[href*="user.login"],
a[href*="login"],
.login ul li a[href*="login"] {
    display: none !important;
}

/* Hide Call Waiter modal */
#callWaiterModal {
    display: none !important;
}

/* Hide specific Call Waiter items */
.item:has([data-target="#callWaiterModal"]) {
    display: none !important;
}

/* Hide Call Waiter in navigation */
.nav-item:has([data-target="#callWaiterModal"]) {
    display: none !important;
} 

/* Hide specific elements */
.call-waiter-btn,
.login-btn {
    display: none !important;
}

/* Enhanced Information Section Styles */
.enhanced-info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
    border: 1px solid #e9ecef;
}

.info-header {
    margin-bottom: 40px;
}

.info-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

.info-icon-wrapper:hover {
    transform: scale(1.05);
}

.info-icon-wrapper i {
    font-size: 32px;
    color: white;
}

.info-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 20px;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f8f9fa;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.info-card:hover .info-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-card-icon i {
    font-size: 24px;
    color: white;
}

.info-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.info-card p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.contact-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    color: white;
}

.contact-info-wrapper h5 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: scale(1.05);
}

.contact-method i {
    font-size: 24px;
    color: #ff6b35;
    margin-bottom: 5px;
}

.contact-method span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ecf0f1;
}

.contact-note {
    font-size: 0.95rem;
    color: #bdc3c7;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .enhanced-info-section {
        padding: 25px 20px;
        margin: 20px 0;
    }
    
    .info-title {
        font-size: 2rem;
    }
    
    .info-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .contact-methods {
        gap: 25px;
    }
    
    .contact-method {
        min-width: 100px;
    }
}

@media (max-width: 576px) {
    .info-title {
        font-size: 1.8rem;
    }
    
    .info-subtitle {
        font-size: 1rem;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-method {
        flex-direction: row;
        gap: 10px;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card {
    animation: fadeInUp 0.6s ease forwards;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }
.info-card:nth-child(5) { animation-delay: 0.5s; }
.info-card:nth-child(6) { animation-delay: 0.6s; } 