/* Reception Info Modal - Important Notice */

.reception-info-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.reception-info-overlay.show {
    opacity: 1;
    visibility: visible;
}

.reception-info-modal {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.reception-info-header {
    background: linear-gradient(135deg, #86bc42 0%, #6fa032 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.reception-info-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.reception-info-header i {
    font-size: 28px;
}

.reception-info-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.reception-info-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.reception-info-body {
    padding: 30px;
    color: #333;
    line-height: 1.8;
}

.reception-info-body p {
    margin: 0 0 20px 0;
    font-size: 16px;
}

.reception-info-body p:last-child {
    margin-bottom: 0;
}

.reception-info-highlight {
    background: #f8f9fa;
    border-left: 4px solid #86bc42;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.reception-info-highlight strong {
    color: #86bc42;
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
}

.reception-info-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.reception-info-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.reception-info-contact-item i {
    color: #86bc42;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.reception-info-contact-item a {
    color: #86bc42;
    text-decoration: none;
    font-weight: 600;
}

.reception-info-contact-item a:hover {
    text-decoration: underline;
}

.reception-info-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
    text-align: center;
}

.reception-info-button {
    background: linear-gradient(135deg, #86bc42 0%, #6fa032 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(134, 188, 66, 0.3);
}

.reception-info-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(134, 188, 66, 0.5);
}

.reception-info-signature {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-style: italic;
    color: #666;
    font-size: 15px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .reception-info-modal {
        width: 95%;
        max-height: 95vh;
    }
    
    .reception-info-header {
        padding: 20px;
    }
    
    .reception-info-header h2 {
        font-size: 20px;
    }
    
    .reception-info-body {
        padding: 20px;
    }
    
    .reception-info-body p {
        font-size: 15px;
    }
    
    .reception-info-footer {
        padding: 15px 20px;
    }
    
    .reception-info-button {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .reception-info-header h2 {
        font-size: 18px;
    }
    
    .reception-info-header i {
        font-size: 24px;
    }
    
    .reception-info-close {
        width: 32px;
        height: 32px;
        font-size: 20px;
        top: 15px;
        right: 15px;
    }
    
    .reception-info-body {
        padding: 15px;
    }
    
    .reception-info-body p {
        font-size: 14px;
    }
    
    .reception-info-contact-item {
        font-size: 14px;
    }
}
